diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm index ab233e9cf82c..e76768a82b46 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm @@ -50,6 +50,10 @@ /// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner) #define COMSIG_XENO_ACTION_USED "xeno_action_used" +/// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner) +#define COMSIG_XENO_PRE_ACTION_USED "xeno_pre_action_used" +/// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner) +#define COMSIG_XENO_FAILED_ACTION_USED "xeno_failed_action_used" /// From /mob/living/carbon/xenomorph/proc/check_blood_splash() #define COMSIG_XENO_DEAL_ACID_DAMAGE "xeno_deal_acid_damage" /// From /mob/living/carbon/xenomorph/proc/recalculate_speed() diff --git a/code/__DEFINES/dcs/signals/atom/signals_item.dm b/code/__DEFINES/dcs/signals/atom/signals_item.dm index 5ba79960657b..88f99bbff578 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_item.dm +++ b/code/__DEFINES/dcs/signals/atom/signals_item.dm @@ -83,3 +83,5 @@ #define COMSIG_CAMERA_SET_AREA "camera_manager_set_area" #define COMSIG_CAMERA_CLEAR "camera_manager_clear_target" #define COMSIG_CAMERA_REFRESH "camera_manager_refresh" + +#define COMSIG_PRED_BRACER_DECLOAKED "pred_bracer_decloaked" diff --git a/code/__DEFINES/dcs/signals/atom/signals_movable.dm b/code/__DEFINES/dcs/signals/atom/signals_movable.dm index ba889d0b5212..ad4be2b1dc9f 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_movable.dm +++ b/code/__DEFINES/dcs/signals/atom/signals_movable.dm @@ -11,6 +11,9 @@ #define COMPONENT_CANCEL_MOVE (1<<0) /// From /turf/open/gm/river/Entered(): (turf/open/gm/river/river, covered) #define COMSIG_MOVABLE_ENTERED_RIVER "movable_entered_river" +/// From /atom/movable/proc/doMove: I think it only works with forceMove so watch out +#define COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED "movable_forcemove_pre_crossed" + #define COMPONENT_IGNORE_CROSS (1<<0) ///from /mob/living/carbon/xenomorph/start_pulling(): (mob/living/carbon/xenomorph/X) #define COMSIG_MOVABLE_XENO_START_PULLING "movable_xeno_start_pulling" diff --git a/code/__DEFINES/dcs/signals/signals_datum.dm b/code/__DEFINES/dcs/signals/signals_datum.dm index b798d510763e..c35038fcf3e9 100644 --- a/code/__DEFINES/dcs/signals/signals_datum.dm +++ b/code/__DEFINES/dcs/signals/signals_datum.dm @@ -34,6 +34,8 @@ #define COMSIG_ACTION_HIDDEN "action_hidden" /// From base of /datum/action/proc/unhide_from(): (mob/owner) #define COMSIG_ACTION_UNHIDDEN "action_unhidden" +/// From base of /datum/action/proc/action_activate() : () +#define COMSIG_ACTION_ACTIVATED "action_activated" ///from /datum/component/bonus_damage_stack #define COMSIG_BONUS_DAMAGE "bonus_damage" diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm index 964e77402655..e6b9c4c4b9ee 100644 --- a/code/__DEFINES/traits.dm +++ b/code/__DEFINES/traits.dm @@ -161,6 +161,8 @@ #define TRAIT_MERGED_WITH_WEEDS "merged_with_weeds" /// Apply this to identify a mob as temporarily muted #define TRAIT_TEMPORARILY_MUTED "temporarily_muted" +/// Mob wont get hit by stray projectiles +#define TRAIT_NO_STRAY "trait_no_stray" // SPECIES TRAITS /// Knowledge of Yautja technology diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index 5bf36f785746..094f8205c80e 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -235,7 +235,7 @@ * * hive - The hive we're filling a slot for to check if the player is banished * * sorted - Whether to sort by larva_queue_time (default TRUE) or leave unsorted */ -/proc/get_alien_candidates(datum/hive_status/hive = null, sorted = TRUE) +/proc/get_alien_candidates(datum/hive_status/hive = null, sorted = TRUE, abomination = FALSE) var/list/candidates = list() for(var/mob/dead/observer/cur_obs as anything in GLOB.observer_list) @@ -275,6 +275,11 @@ if(banished) continue + if(abomination) + if(!(/datum/tutorial/xenomorph/abomination::tutorial_id in cur_obs.client.prefs.completed_tutorials)) + to_chat(cur_obs, SPAN_BOLDNOTICE("You were passed over for playing as an Abomination because you have not completed its tutorial.")) + continue + candidates += cur_obs // Optionally sort by larva_queue_time diff --git a/code/_macros.dm b/code/_macros.dm index abfa83df7d36..9b92dc8730c3 100644 --- a/code/_macros.dm +++ b/code/_macros.dm @@ -95,6 +95,9 @@ #define GENERATE_DEBUG_ID "[rand(0, 9)][rand(0, 9)][rand(0, 9)][rand(0, 9)][pick(alphabet_lowercase)][pick(alphabet_lowercase)][pick(alphabet_lowercase)][pick(alphabet_lowercase)]" #define RECT new /datum/shape/rectangle +#define SQUARE new /datum/shape/rectangle/square +#define ELLIPSE new /datum/shape/ellipse +#define CIRCLE new /datum/shape/ellipse/circle #define QTREE new /datum/quadtree #define SEARCH_QTREE(qtree, shape_range, flags) qtree.query_range(shape_range, null, flags) diff --git a/code/_onclick/xeno.dm b/code/_onclick/xeno.dm index 3bb69fe05419..15dc1c39f495 100644 --- a/code/_onclick/xeno.dm +++ b/code/_onclick/xeno.dm @@ -3,7 +3,7 @@ */ /mob/living/carbon/xenomorph/UnarmedAttack(atom/target, proximity, click_parameters, tile_attack = FALSE, ignores_resin = FALSE) - if(body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) //No attacks while laying down + if(body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED) || cannot_slash) //No attacks while laying down return FALSE var/mob/alt diff --git a/code/controllers/subsystem/sound.dm b/code/controllers/subsystem/sound.dm index 024df7cc45ad..13dd6a0dddf1 100644 --- a/code/controllers/subsystem/sound.dm +++ b/code/controllers/subsystem/sound.dm @@ -19,8 +19,7 @@ SUBSYSTEM_DEF(sound) if(!run_hearers) // Initialize for handling next template run_hearers = run_queue[run_template] // get base hearers if(run_template.range) // ranging - var/datum/shape/rectangle/zone = RECT(run_template.x, run_template.y, run_template.range * 2, run_template.range * 2) - run_hearers |= SSquadtree.players_in_range(zone, run_template.z) + run_hearers |= SSquadtree.players_in_range(SQUARE(run_template.x, run_template.y, run_template.range), run_template.z) if(MC_TICK_CHECK) return while(length(run_hearers)) // Output sound to hearers diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 85e2a57cc6d6..25f522753543 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -414,6 +414,7 @@ SUBSYSTEM_DEF(vote) qdel(src) /datum/action/innate/vote/action_activate() + . = ..() owner.vote() /datum/action/innate/vote/proc/remove_from_client() diff --git a/code/datums/action.dm b/code/datums/action.dm index d1768655a2da..8dbf6c9df5a5 100644 --- a/code/datums/action.dm +++ b/code/datums/action.dm @@ -43,7 +43,9 @@ return /datum/action/proc/action_activate() - return + SHOULD_CALL_PARENT(TRUE) + + SEND_SIGNAL(src, COMSIG_ACTION_ACTIVATED) /// handler for when a keybind signal is received by the action, calls the action_activate proc asynchronous /datum/action/proc/keybind_activation() @@ -158,6 +160,10 @@ hidden = FALSE L.update_action_buttons() +/proc/get_action(mob/action_mob, action_path) + for(var/datum/action/action in action_mob.actions) + if(istype(action, action_path)) + return action /datum/action/item_action name = "Use item" @@ -182,6 +188,7 @@ return ..() /datum/action/item_action/action_activate() + . = ..() if(target) var/obj/item/I = target I.ui_action_click(owner, holder_item) diff --git a/code/datums/ammo/bullet/lever_action.dm b/code/datums/ammo/bullet/lever_action.dm index 2770231b6811..e1475146b21f 100644 --- a/code/datums/ammo/bullet/lever_action.dm +++ b/code/datums/ammo/bullet/lever_action.dm @@ -52,7 +52,7 @@ /datum/ammo/bullet/lever_action/xm88 name = ".458 SOCOM round" - damage = 80 + damage = 104 penetration = ARMOR_PENETRATION_TIER_2 accuracy = HIT_ACCURACY_TIER_1 shell_speed = AMMO_SPEED_TIER_6 diff --git a/code/datums/components/bad_leg.dm b/code/datums/components/bad_leg.dm index 4a8678c4da76..8793271803dc 100644 --- a/code/datums/components/bad_leg.dm +++ b/code/datums/components/bad_leg.dm @@ -149,6 +149,7 @@ CRASH("No bound wound to link action") /datum/action/human_action/rest_legs/action_activate() + . = ..() var/mob/living/carbon/human/homan = owner if(in_use) to_chat(homan, SPAN_WARNING("You're already doing that!")) diff --git a/code/datums/quadtree.dm b/code/datums/quadtree.dm index 5e5b27d57330..200a51b358a0 100644 --- a/code/datums/quadtree.dm +++ b/code/datums/quadtree.dm @@ -49,43 +49,124 @@ ..() return QDEL_HINT_IWILLGC -/datum/shape //Leaving rectangles as a subtype if anyone decides to add circles later +/// A simple geometric shape for testing collisions and intersections. This one is a single point. +/datum/shape + /// Horizontal position of the shape's center point. var/center_x = 0 + /// Vertical position of the shape's center point. var/center_y = 0 + /// Distance from the shape's leftmost to rightmost extent. + var/bounds_x = 0 + /// Distance from the shape's topmost to bottommost extent. + var/bounds_y = 0 -/datum/shape/proc/intersects() - return -/datum/shape/proc/contains() - return +/datum/shape/New(center_x, center_y) + set_shape(center_x, center_y) +/// Assign shape variables. +/datum/shape/proc/set_shape(center_x, center_y) + src.center_x = center_x + src.center_y = center_y + +/// Returns TRUE if the coordinates x, y are in or on the shape, otherwise FALSE. +/datum/shape/proc/contains_xy(x, y) + return center_x == x && center_y == y + +/// Returns TRUE if the coord datum is in or on the shape, otherwise FALSE. +/datum/shape/proc/contains_coords(datum/coords/coords) + return contains_xy(coords.x_pos, coords.y_pos) + +/// Returns TRUE if the atom is in or on the shape, otherwise FALSE. +/datum/shape/proc/contains_atom(atom/atom) + return contains_xy(atom.x, atom.y) + +/// Returns TRUE if this shape's bounding box intersects the provided shape's bounding box, otherwise FALSE. Generally faster than a full intersection test. +/datum/shape/proc/intersects_aabb(datum/shape/aabb) + return (abs(src.center_x - aabb.center_x) <= (src.bounds_x + aabb.bounds_x) * 0.5) && (abs(src.center_y - aabb.center_y) <= (src.bounds_x + aabb.bounds_x) * 0.5) + +/// Returns TRUE if this shape intersects the provided rectangle shape, otherwise FALSE. +/datum/shape/proc/intersects_rect(datum/shape/rectangle/rect) + return rect.contains_xy(src.center_x, src.center_y) + +/// A simple geometric shape for testing collisions and intersections. This one is an axis-aligned rectangle. /datum/shape/rectangle + /// Distance from the shape's leftmost to rightmost extent. + var/width = 0 + /// Distance from the shape's topmost to bottommost extent. + var/height = 0 + +/datum/shape/rectangle/New(center_x, center_y, width, height) + set_shape(center_x, center_y, width, height) + +/datum/shape/rectangle/set_shape(center_x, center_y, width, height) + ..() + src.bounds_x = width + src.bounds_y = height + src.width = width + src.height = height + +/datum/shape/rectangle/contains_xy(x, y) + return (abs(center_x - x) <= width * 0.5) && (abs(center_y - y) <= height * 0.5) + +/datum/shape/rectangle/intersects_rect(datum/shape/rectangle/rect) + return intersects_aabb(rect) + +/// A simple geometric shape for testing collisions and intersections. This one is an axis-aligned square. +/datum/shape/rectangle/square + /// Distance between the shape's opposing extents. + var/length = 0 + +/datum/shape/rectangle/square/New(center_x, center_y, length) + set_shape(center_x, center_y, length) + +/datum/shape/rectangle/square/set_shape(center_x, center_y, length) + ..(center_x, center_y, length, length) + src.length = length + +/// A simple geometric shape for testing collisions and intersections. This one is an axis-aligned ellipse. +/datum/shape/ellipse + /// Distance from the shape's leftmost to rightmost extent. var/width = 0 + /// Distance from the shape's topmost to bottommost extent. var/height = 0 + VAR_PROTECTED/_axis_x_sq = 0 + VAR_PROTECTED/_axis_y_sq = 0 + +/datum/shape/ellipse/New(center_x, center_y, width, height) + set_shape(center_x, center_y, width, height) -/datum/shape/rectangle/New(x, y, w, h) +/datum/shape/ellipse/set_shape(center_x, center_y, width, height) ..() - center_x = x - center_y = y - width = w - height = h - -/datum/shape/rectangle/intersects(datum/shape/rectangle/range) - return !(range.center_x + range.width/2 < center_x - width / 2|| \ - range.center_x - range.width/2 > center_x + width / 2|| \ - range.center_y + range.height/2 < center_y - height / 2|| \ - range.center_y - range.height/2 > center_y + height / 2) - -/datum/shape/rectangle/contains(datum/coords/coords) - return (coords.x_pos >= center_x - width / 2 \ - && coords.x_pos <= center_x + width / 2 \ - && coords.y_pos >= center_y - height /2 \ - && coords.y_pos <= center_y + height / 2) - -/datum/shape/rectangle/proc/contains_atom(atom/A) - return (A.x >= center_x - width / 2 \ - && A.x <= center_x + width / 2 \ - && A.y >= center_y - height /2 \ - && A.y <= center_y + height / 2) + src.bounds_x = width + src.bounds_y = height + src.width = width + src.height = height + src._axis_x_sq = (width * 0.5)**2 + src._axis_y_sq = (height * 0.5)**2 + +/datum/shape/ellipse/contains_xy(x, y) + return ((center_x - x)**2 / _axis_x_sq + (center_y - y)**2 / _axis_y_sq <= 1) + +/datum/shape/ellipse/intersects_rect(datum/shape/rectangle/rect) + if(..()) + return TRUE + + var/nearest_x = clamp(src.center_x, rect.center_x - rect.width * 0.5, rect.center_x + rect.width * 0.5) + var/nearest_y = clamp(src.center_y, rect.center_y - rect.height * 0.5, rect.center_y + rect.height * 0.5) + + return src.contains_xy(nearest_x, nearest_y) + +/// A simple geometric shape for testing collisions and intersections. This one is a circle. +/datum/shape/ellipse/circle + /// Distance from the shape's center to edge. + var/radius = 0 + +/datum/shape/ellipse/circle/New(center_x, center_y, radius) + set_shape(center_x, center_y, radius) + +/datum/shape/ellipse/circle/set_shape(center_x, center_y, radius) + ..(center_x, center_y, radius * 2, radius * 2) + src.radius = radius /datum/quadtree/proc/subdivide() //Warning: this might give you eye cancer @@ -96,7 +177,7 @@ is_divided = TRUE /datum/quadtree/proc/insert_player(datum/coords/qtplayer/p_coords) - if(!boundary.contains(p_coords)) + if(!boundary.contains_coords(p_coords)) return FALSE if(!player_coords) @@ -118,11 +199,11 @@ player_coords.Add(p_coords) return TRUE -/datum/quadtree/proc/query_range(datum/shape/rectangle/range, list/found_players, flags = 0) +/datum/quadtree/proc/query_range(datum/shape/range, list/found_players, flags = 0) if(!found_players) found_players = list() . = found_players - if(!range?.intersects(boundary)) + if(!range?.intersects_rect(boundary)) return if(is_divided) nw_branch.query_range(range, found_players, flags) @@ -136,7 +217,7 @@ continue if((flags & QTREE_EXCLUDE_OBSERVER) && P.is_observer) continue - if(range.contains(P)) + if(range.contains_coords(P)) if(flags & QTREE_SCAN_MOBS) found_players.Add(P.player.mob) else diff --git a/code/datums/statistics/entities/round_stats.dm b/code/datums/statistics/entities/round_stats.dm index 10ec04c6da0e..79493ca87ef0 100644 --- a/code/datums/statistics/entities/round_stats.dm +++ b/code/datums/statistics/entities/round_stats.dm @@ -393,6 +393,7 @@ return TRUE /datum/action/show_round_statistics/action_activate() + . = ..() if(!can_use_action()) return diff --git a/code/datums/tutorial/_tutorial.dm b/code/datums/tutorial/_tutorial.dm index ddeddddd0407..b7403da3c0a9 100644 --- a/code/datums/tutorial/_tutorial.dm +++ b/code/datums/tutorial/_tutorial.dm @@ -4,7 +4,7 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial) /datum/tutorial /// What the tutorial is called, is player facing var/name = "Base" - /// Internal ID of the tutorial, kept for save files + /// Internal ID of the tutorial, kept for save files. Format is "tutorialtype_specifictutorial_number". So, the first basic xeno tutorial would be "xeno_basic_1", and the 2nd marine medical tutorial would be "marine_medical_2" var/tutorial_id = "base" /// A short 1-2 sentence description of the tutorial itself var/desc = "" @@ -144,6 +144,8 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial) /// Ends the tutorial after a certain amount of time. /datum/tutorial/proc/tutorial_end_in(time = 5 SECONDS, completed = TRUE) + if(completed) + mark_completed() // This is done because if you're calling this proc with completed == TRUE, then the tutorial's a done deal. We shouldn't penalize the player if they exit a few seconds before it actually completes. tutorial_ending = TRUE addtimer(CALLBACK(src, PROC_REF(end_tutorial), completed), time) @@ -221,6 +223,7 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial) tutorial = WEAKREF(selected_tutorial) /datum/action/tutorial_end/action_activate() + . = ..() if(!tutorial) return diff --git a/code/datums/tutorial/xenomorph/abomination.dm b/code/datums/tutorial/xenomorph/abomination.dm new file mode 100644 index 000000000000..db9b77cf2e75 --- /dev/null +++ b/code/datums/tutorial/xenomorph/abomination.dm @@ -0,0 +1,247 @@ +/datum/tutorial/xenomorph/abomination + name = "Xenomorph - Predalien" + desc = "A tutorial to teach you how to play the \"Predalien\", also known as Abomination, xenomorph caste. Completing this is required to be able to play an Abomination." + icon_state = "predalien" + tutorial_id = "xeno_abom_1" + tutorial_template = /datum/map_template/tutorial/s7x7 + starting_xenomorph_type = /mob/living/carbon/xenomorph/predalien/tutorial + /// How many marines in the kill_marines stage have been killed + var/ending_marines_killed = 0 + +// START OF SCRITPING + +/datum/tutorial/xenomorph/abomination/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + init_mob() + xeno.lock_evolve = TRUE + + message_to_player("Welcome to the tutorial for the Abomination xenomorph. As an Abomination, you are a frontline powerhouse whose damage scales with your kill count.") + message_to_player("Your kill count scales when you kill humans with your slash attack, up to 10 kills. Ability kills do not count towards this.") + + addtimer(CALLBACK(src, PROC_REF(how_to_be_abom)), 12 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/how_to_be_abom() + message_to_player("Be aware that you are kill-on-sight to all Predators forever, and will very likely need to defend yourself against multiple.") + message_to_player("Be sure to stick close to other xenomorphs or over-extend. While you may be stronger than many, you don't have enough health or armor to go out on your own.") + addtimer(CALLBACK(src, PROC_REF(feral_rush_tutorial)), 10.5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/feral_rush_tutorial() + var/datum/action/rush = give_action(xeno, /datum/action/xeno_action/onclick/feralrush) + message_to_player("Your first unique ability is Feral Rush, an ability that temporarily increases your speed and your armor. Use Feral Rush to continue.") + update_objective("Use your Feral Rush ability.") + add_highlight(rush.button) + RegisterSignal(rush, COMSIG_XENO_ACTION_USED, PROC_REF(on_rush_used)) + +/datum/tutorial/xenomorph/abomination/proc/on_rush_used(datum/action/source, mob/owner) + SIGNAL_HANDLER + + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + remove_highlight(source.button) + addtimer(CALLBACK(src, PROC_REF(predalien_roar_tutorial_1)), 5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/predalien_roar_tutorial_1() + hide_action(xeno, /datum/action/xeno_action/onclick/feralrush) + xeno.cannot_slash = TRUE + message_to_player("Your next ability is Roar, a versatile ability that disables any motion detectors or cloaks in a medium radius around you.") + message_to_player("Additionally, it gives a slash and speed bonus to any friendly xenomorphs in range.") + addtimer(CALLBACK(src, PROC_REF(predalien_roar_tutorial_2)), 8 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/predalien_roar_tutorial_2() + var/datum/action/roar = give_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + message_to_player("One of Roar's most useful abilities is uncloaking nearby Predators. Use Roar to uncloak the newly spawned Predator.") + update_objective("Use your Roar ability to uncloak the nearby predator.") + add_highlight(roar.button) + var/mob/living/carbon/human/pred = new(loc_from_corner(3, 3)) + add_to_tracking_atoms(pred) + pred.create_hud() + arm_equipment(pred, /datum/equipment_preset/yautja/blooded) + var/obj/item/clothing/gloves/yautja/hunter/bracers = locate() in pred + if(!bracers) + message_to_player("Something has gone wrong. Please make a bug report.") + CRASH("predator spawned without bracers in tutorial") + + bracers.cloaker_internal(pred, TRUE, TRUE, TRUE) + RegisterSignal(bracers, COMSIG_PRED_BRACER_DECLOAKED, PROC_REF(smash_tutorial_1)) + +/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_1(datum/source) + SIGNAL_HANDLER + + var/datum/action/roar = get_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + remove_highlight(roar.button) + update_objective("") + + UnregisterSignal(source, COMSIG_PRED_BRACER_DECLOAKED) + addtimer(CALLBACK(src, PROC_REF(smash_tutorial_2)), 2.5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_2() + hide_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + message_to_player("Good. Roar will be one of your primary tools for defending against Predators. Your next ability is Feral Smash.") + xeno.cannot_slash = FALSE + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, pred) + remove_from_tracking_atoms(pred) + qdel(pred) + + addtimer(CALLBACK(src, PROC_REF(smash_tutorial_3)), 5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_3() + var/datum/action/smash = give_action(xeno, /datum/action/xeno_action/activable/feral_smash) + RegisterSignal(smash, COMSIG_XENO_PRE_ACTION_USED, PROC_REF(frenzy_tutorial_1)) + add_highlight(smash.button) + + message_to_player("Feral Smash is a strong lunge with a range of five tiles. It deals decent damage that scales with your kill count.") + message_to_player("Use Feral Smash on the marine to continue.") + update_objective("Use your Feral Smash ability on the marine.") + + xeno.forceMove(loc_from_corner(0, 2)) + xeno.anchored = TRUE + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + + var/mob/living/carbon/human/marine = new(loc_from_corner(4, 2)) + add_to_tracking_atoms(marine) + arm_equipment(marine, /datum/equipment_preset/uscm/private_equipped) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_1(datum/action/source, mob/owner) + SIGNAL_HANDLER + + xeno.anchored = FALSE + REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + RegisterSignal(source, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_2)) + RegisterSignal(source, COMSIG_XENO_FAILED_ACTION_USED, PROC_REF(frenzy_tutorial_1_fail)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_1_fail(datum/action/source, mob/owner) + SIGNAL_HANDLER + + xeno.anchored = TRUE + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + UnregisterSignal(source, list(COMSIG_XENO_FAILED_ACTION_USED, COMSIG_XENO_ACTION_USED)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_2(datum/action/source, mob/owner) + SIGNAL_HANDLER + + if(get_turf(xeno) == loc_from_corner(0, 2)) // xeno didn't lunge at the mob + xeno.anchored = TRUE + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + return + + update_objective("") + var/datum/action/smash = get_action(xeno, /datum/action/xeno_action/activable/feral_smash) + remove_highlight(smash.button) + UnregisterSignal(source, list(COMSIG_XENO_ACTION_USED, COMSIG_XENO_PRE_ACTION_USED)) + addtimer(CALLBACK(src, PROC_REF(frenzy_tutorial_3)), 2 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_3() + remove_action(xeno, /datum/action/xeno_action/activable/feral_smash) + message_to_player("Good. Your final ability is Feral Frenzy, a strong ability that can alternate between hitting a single target or all within a large radius. However, it locks you in place while it winds up.") + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + remove_from_tracking_atoms(marine) + qdel(marine) + + addtimer(CALLBACK(src, PROC_REF(frenzy_tutorial_4)), 6 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_4() + var/mob/living/carbon/human/marine = new(loc_from_corner(4, 2)) + add_to_tracking_atoms(marine) + arm_equipment(marine, /datum/equipment_preset/uscm/private_equipped) + + var/datum/action/frenzy = give_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + add_highlight(frenzy.button) + message_to_player("By default, Feral Frenzy is on single-target mode. Use Feral Frenzy on the newly spawned marine.") + update_objective("Use Feral Frenzy on the marine.") + + RegisterSignal(frenzy, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_5)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_5(datum/action/xeno_action/source, mob/owner) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + if(get_dist(marine, xeno) > 1) + return + + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + var/datum/action/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + remove_highlight(frenzy.button) + var/datum/action/frenzy_toggle = give_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting) + add_highlight(frenzy_toggle.button) + message_to_player("Good, now toggle Feral Frenzy's AOE mode with the newly available Toggle Gutting Type ability.") + update_objective("Use the Toggle Gutting Type ability to change your frenzy mode.") + + RegisterSignal(frenzy_toggle, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_6)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_6(datum/action/xeno_action/source, mob/owner) + SIGNAL_HANDLER + + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + remove_highlight(source.button) + source.plasma_cost = INFINITY // slightly scuffed way of disabling the switch button + source.update_button_icon() + + message_to_player("Feral Frenzy has now been changed into AOE mode. Use Feral Frenzy again anywhere within 2 tiles of the marine.") + update_objective("Use Feral Frenzy within 2 tiles of the marine.") + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + marine.rejuvenate() + var/datum/action/xeno_action/activable/feralfrenzy/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + frenzy.targeting = AOETARGETGUT + frenzy.reduce_cooldown(frenzy.xeno_cooldown) + add_highlight(frenzy.button) + + RegisterSignal(frenzy, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_7)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_7(datum/action/source) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + var/datum/action/xeno_action/activable/feralfrenzy/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + if(get_dist(xeno, marine) > frenzy.range) + // Not close enough to actually hit the marine + return + + UnregisterSignal(frenzy, COMSIG_XENO_ACTION_USED) + remove_highlight(frenzy.button) + message_to_player("Good. As you may have noticed, the AOE version of Feral Frenzy takes longer to wind up, in addition to doing less overall damage.") + addtimer(CALLBACK(src, PROC_REF(kill_marines)), 6 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/kill_marines() + message_to_player("To finish the tutorial, kill the three newly-spawned marines using any of your attacks or abilities.") + + // Spawn/rejuv the dummies + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) // we can reuse this one though + marine.rejuvenate() + marine.forceMove(loc_from_corner(4, 2)) + RegisterSignal(marine, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2)) + + var/mob/living/carbon/human/marine_2 = new(loc_from_corner(2, 2)) + arm_equipment(marine_2, /datum/equipment_preset/uscm/private_equipped) + RegisterSignal(marine_2, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2)) + + var/mob/living/carbon/human/marine_3 = new(loc_from_corner(0, 2)) + arm_equipment(marine_3, /datum/equipment_preset/uscm/private_equipped) + RegisterSignal(marine_3, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2)) + + // Arrange the actions about how they'd be in an actual game + remove_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + remove_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting) + + give_action(xeno, /datum/action/xeno_action/activable/tail_stab) + give_action(xeno, /datum/action/xeno_action/onclick/feralrush) + give_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + give_action(xeno, /datum/action/xeno_action/activable/feral_smash) + give_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + give_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting) + +/datum/tutorial/xenomorph/abomination/proc/kill_marines_2(datum/source) + SIGNAL_HANDLER + + if(ending_marines_killed < 2) + ending_marines_killed++ + return + + message_to_player("Good work. The tutorial will end shortly.") + tutorial_end_in(7 SECONDS, TRUE) + +// END OF SCRIPTING diff --git a/code/datums/xeno_shields/shield_types/vanguard_shield.dm b/code/datums/xeno_shields/shield_types/vanguard_shield.dm index 21d9fb12cfd7..cd9e4534e778 100644 --- a/code/datums/xeno_shields/shield_types/vanguard_shield.dm +++ b/code/datums/xeno_shields/shield_types/vanguard_shield.dm @@ -42,7 +42,7 @@ return linked_xeno.overlay_shields() - var/datum/action/xeno_action/activable/cleave/cAction = get_xeno_action_by_type(linked_xeno, /datum/action/xeno_action/activable/cleave) + var/datum/action/xeno_action/activable/cleave/cAction = get_action(linked_xeno, /datum/action/xeno_action/activable/cleave) if (istype(cAction)) addtimer(CALLBACK(cAction, TYPE_PROC_REF(/datum/action/xeno_action/activable/cleave, remove_buff)), 7, TIMER_UNIQUE) diff --git a/code/game/camera_manager/camera_manager.dm b/code/game/camera_manager/camera_manager.dm index 9f111b0f8ec6..90e80ec7037e 100644 --- a/code/game/camera_manager/camera_manager.dm +++ b/code/game/camera_manager/camera_manager.dm @@ -6,7 +6,7 @@ /datum/component/camera_manager var/map_name var/obj/structure/machinery/camera/current - var/datum/shape/rectangle/current_area + var/datum/shape/current_area var/atom/movable/screen/map_view/cam_screen var/atom/movable/screen/background/cam_background var/list/range_turfs = list() @@ -86,7 +86,7 @@ RegisterSignal(parent, COMSIG_CAMERA_UNREGISTER_UI, PROC_REF(unregister)) RegisterSignal(parent, COMSIG_CAMERA_SET_NVG, PROC_REF(enable_nvg)) RegisterSignal(parent, COMSIG_CAMERA_CLEAR_NVG, PROC_REF(disable_nvg)) - RegisterSignal(parent, COMSIG_CAMERA_SET_AREA, PROC_REF(set_camera_rect)) + RegisterSignal(parent, COMSIG_CAMERA_SET_AREA, PROC_REF(set_camera_area)) RegisterSignal(parent, COMSIG_CAMERA_SET_TARGET, PROC_REF(set_camera)) RegisterSignal(parent, COMSIG_CAMERA_CLEAR, PROC_REF(clear_camera)) RegisterSignal(parent, COMSIG_CAMERA_REFRESH, PROC_REF(refresh_camera)) @@ -133,18 +133,18 @@ RegisterSignal(current, COMSIG_PARENT_QDELETING, PROC_REF(show_camera_static)) update_target_camera() -/datum/component/camera_manager/proc/set_camera_rect(source, x, y, z, w, h) +/datum/component/camera_manager/proc/set_camera_area(source, datum/shape/new_area, z) SIGNAL_HANDLER render_mode = RENDER_MODE_AREA if(current) UnregisterSignal(current, COMSIG_PARENT_QDELETING) current = null - current_area = RECT(x, y, w, h) - target_x = x - target_y = y + current_area = new_area + target_x = current_area.center_x + target_y = current_area.center_y target_z = z - target_width = w - target_height = h + target_width = current_area.bounds_x + target_height = current_area.bounds_y update_area_camera() /datum/component/camera_manager/proc/enable_nvg(source, power, matrixcol) @@ -221,8 +221,8 @@ // Cameras that get here are moving, and are likely attached to some moving atom such as cyborgs. last_camera_turf = new_location - var/x_size = current_area.width - var/y_size = current_area.height + var/x_size = current_area.bounds_x + var/y_size = current_area.bounds_y var/turf/target = locate(current_area.center_x, current_area.center_y, target_z) var/list/visible_things = isXRay ? range("[x_size]x[y_size]", target) : view("[x_size]x[y_size]", target) diff --git a/code/game/machinery/computer/dropship_weapons.dm b/code/game/machinery/computer/dropship_weapons.dm index e07b415ed233..7f8f4f2b3850 100644 --- a/code/game/machinery/computer/dropship_weapons.dm +++ b/code/game/machinery/computer/dropship_weapons.dm @@ -313,9 +313,8 @@ var/obj/structure/machinery/defenses/sentry/defense = sentry.deployed_turret if(defense.has_camera) defense.set_range() - var/datum/shape/rectangle/current_bb = defense.range_bounds camera_area_equipment = sentry - SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, current_bb.center_x, current_bb.center_y, defense.loc.z, current_bb.width, current_bb.height) + SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, defense.range_bounds, defense.loc.z) return TRUE if("clear-camera") diff --git a/code/game/machinery/vending/vendor_types/crew/synthetic.dm b/code/game/machinery/vending/vendor_types/crew/synthetic.dm index 7fbe39480999..3f8eff44d052 100644 --- a/code/game/machinery/vending/vendor_types/crew/synthetic.dm +++ b/code/game/machinery/vending/vendor_types/crew/synthetic.dm @@ -349,6 +349,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("Purple Armband", 6, /obj/item/clothing/accessory/armband/science, null, VENDOR_ITEM_REGULAR), list("Yellow Armband", 6, /obj/item/clothing/accessory/armband/engine, null, VENDOR_ITEM_REGULAR), list("Green Armband", 6, /obj/item/clothing/accessory/armband/medgreen, null, VENDOR_ITEM_REGULAR), + list("Blue Tie", 6, /obj/item/clothing/accessory/blue, null, VENDOR_ITEM_REGULAR), + list("Green Tie", 6, /obj/item/clothing/accessory/green, null, VENDOR_ITEM_REGULAR), + list("Black Tie", 6, /obj/item/clothing/accessory/black, null, VENDOR_ITEM_REGULAR), + list("Gold Tie", 6, /obj/item/clothing/accessory/gold, null, VENDOR_ITEM_REGULAR), + list("Red Tie", 6, /obj/item/clothing/accessory/red, null, VENDOR_ITEM_REGULAR), + list("Purple Tie", 6, /obj/item/clothing/accessory/purple, null, VENDOR_ITEM_REGULAR), + list("Stethoscope", 6, /obj/item/clothing/accessory/stethoscope, null, VENDOR_ITEM_REGULAR), list("Dress Gloves", 6, /obj/item/clothing/gloves/marine/dress, null, VENDOR_ITEM_REGULAR), )) diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index 10d4e8d098fb..34da5e3d2623 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -597,7 +597,7 @@ total_hits++ - var/datum/action/xeno_action/activable/boiler_trap/trap = get_xeno_action_by_type(linked_xeno, /datum/action/xeno_action/activable/boiler_trap) + var/datum/action/xeno_action/activable/boiler_trap/trap = get_action(linked_xeno, /datum/action/xeno_action/activable/boiler_trap) trap.reduce_cooldown(total_hits*4 SECONDS) diff --git a/code/game/objects/items/devices/binoculars.dm b/code/game/objects/items/devices/binoculars.dm index 5da4704e0e78..3248115adfa8 100644 --- a/code/game/objects/items/devices/binoculars.dm +++ b/code/game/objects/items/devices/binoculars.dm @@ -403,6 +403,7 @@ COOLDOWN_START(designator, spotting_cooldown, 0) /datum/action/item_action/specialist/spotter_target/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/human = owner diff --git a/code/game/objects/items/devices/helmet_visors.dm b/code/game/objects/items/devices/helmet_visors.dm index 8f921a62f3f5..e2005a841bc3 100644 --- a/code/game/objects/items/devices/helmet_visors.dm +++ b/code/game/objects/items/devices/helmet_visors.dm @@ -146,6 +146,7 @@ return /datum/action/item_action/view_publications/helmet_visor/action_activate() + . = ..() var/obj/item/device/helmet_visor/medical/advanced/medical_visor = locate() in holder_item if(!medical_visor) diff --git a/code/game/objects/items/devices/motion_detector.dm b/code/game/objects/items/devices/motion_detector.dm index 3551e3a02bef..dcbcc0dd8bc7 100644 --- a/code/game/objects/items/devices/motion_detector.dm +++ b/code/game/objects/items/devices/motion_detector.dm @@ -35,7 +35,7 @@ var/iff_signal = FACTION_MARINE actions_types = list(/datum/action/item_action) var/scanning = FALSE // controls if MD is in process of scan - var/datum/shape/rectangle/range_bounds + var/datum/shape/rectangle/square/range_bounds var/long_range_locked = FALSE //only long-range MD var/ping_overlay @@ -48,7 +48,7 @@ /obj/item/device/motiondetector/Initialize() . = ..() - range_bounds = new //Just creating a rectangle datum + range_bounds = new //Just creating a square datum update_icon() /obj/item/device/motiondetector/Destroy() @@ -215,12 +215,7 @@ if(!istype(cur_turf)) return - if(!range_bounds) - range_bounds = new/datum/shape/rectangle - range_bounds.center_x = cur_turf.x - range_bounds.center_y = cur_turf.y - range_bounds.width = detector_range * 2 - range_bounds.height = detector_range * 2 + range_bounds.set_shape(cur_turf.x, cur_turf.y, detector_range * 2) var/list/ping_candidates = SSquadtree.players_in_range(range_bounds, cur_turf.z, QTREE_EXCLUDE_OBSERVER | QTREE_SCAN_MOBS) diff --git a/code/game/objects/items/devices/walkman.dm b/code/game/objects/items/devices/walkman.dm index 42c03d757dbd..bef8e8f5ff79 100644 --- a/code/game/objects/items/devices/walkman.dm +++ b/code/game/objects/items/devices/walkman.dm @@ -269,6 +269,7 @@ button.name = name /datum/action/item_action/walkman/play_pause/action_activate() + . = ..() if(target) var/obj/item/device/walkman/WM = target WM.attack_self(owner) @@ -282,6 +283,7 @@ button.name = name /datum/action/item_action/walkman/next_song/action_activate() + . = ..() if(target) var/obj/item/device/walkman/WM = target WM.next_song(owner) @@ -295,6 +297,7 @@ button.name = name /datum/action/item_action/walkman/restart_song/action_activate() + . = ..() if(target) var/obj/item/device/walkman/WM = target WM.restart_song(owner) diff --git a/code/game/objects/items/hoverpack.dm b/code/game/objects/items/hoverpack.dm index 02a2d4be779a..65406eb15dc6 100644 --- a/code/game/objects/items/hoverpack.dm +++ b/code/game/objects/items/hoverpack.dm @@ -208,6 +208,7 @@ return TRUE /datum/action/item_action/hover/action_activate() + . = ..() var/mob/living/carbon/human/H = owner if(H.selected_ability == src) to_chat(H, "You will no longer use [name] with \ diff --git a/code/game/objects/items/reagent_containers/reagent_container.dm b/code/game/objects/items/reagent_containers/reagent_container.dm index 5207df4ca7bb..37029ff247d6 100644 --- a/code/game/objects/items/reagent_containers/reagent_container.dm +++ b/code/game/objects/items/reagent_containers/reagent_container.dm @@ -109,5 +109,6 @@ button.overlays += IMG /datum/action/item_action/reagent_container/set_transfer_amount/action_activate() + . = ..() var/obj/item/reagent_container/cont = holder_item cont.set_APTFT() diff --git a/code/game/objects/items/stacks/flags.dm b/code/game/objects/items/stacks/flags.dm index 484d2779f5f8..e032e2c80157 100644 --- a/code/game/objects/items/stacks/flags.dm +++ b/code/game/objects/items/stacks/flags.dm @@ -76,3 +76,206 @@ newflag.icon_state = "[newflag.base_state]_open" newflag.visible_message("[user] plants [newflag] firmly in the ground.") src.use(1) + + +/// PLANTABLE FLAG + +/obj/structure/flag/plantable + name = "flag" + desc = "A flag of something. This one looks like you could dismantle it." + icon = 'icons/obj/structures/plantable_flag.dmi' + pixel_x = 9 // All flags need to be offset to the right by 9 to be centered. + layer = ABOVE_XENO_LAYER + health = 150 + unacidable = TRUE + + /// The typepath for the flag item that gets spawned when the flag is taken down. + var/flag_type = /obj/item/flag/plantable + /// Used to limit the spam of the warcry_extra_sound + COOLDOWN_DECLARE(warcry_cooldown_struc) + +/obj/structure/flag/plantable/attack_hand(mob/user) + ..() + disassemble(user, flag_type) + +/// Proc for dismantling the flag into an item that can be picked up. +/obj/structure/flag/plantable/proc/disassemble(mob/user, flag_type) + if(user.action_busy) + return + + user.visible_message(SPAN_NOTICE("[user] starts taking [src] down..."), SPAN_NOTICE("You start taking [src] down...")) + + playsound(loc, 'sound/effects/flag_raising.ogg', 30) + if(!do_after(user, 6 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + return + + playsound(loc, 'sound/effects/flag_raised.ogg', 30) + user.visible_message(SPAN_NOTICE("[user] starts takes [src] down!"), SPAN_NOTICE("You take [src] down!")) + var/obj/item/flag/plantable/flag_item = new flag_type(loc) + user.put_in_hands(flag_item) + COOLDOWN_START(flag_item, warcry_cooldown_item, COOLDOWN_TIMELEFT(src, warcry_cooldown_struc)) + qdel(src) + +/// Proc for when the flag gets forcefully dismantled (due to general damage, explosions, etc.) +/obj/structure/flag/plantable/proc/demolish(flag_type) + playsound(loc, 'sound/effects/flag_raised.ogg', 30) + visible_message(SPAN_WARNING("[src] crumples to the ground!")) + var/obj/item/flag/plantable/flag_item = new flag_type(loc) + COOLDOWN_START(flag_item, warcry_cooldown_item, COOLDOWN_TIMELEFT(src, warcry_cooldown_struc)) + qdel(src) + +// Procs for handling damage. +/obj/structure/flag/plantable/update_health(damage) + if(damage) + health -= damage + if(health <= 0) + demolish(flag_type) + +/obj/structure/flag/plantable/ex_act(severity) + if(health <= 0) + return + update_health(severity) + +/obj/structure/flag/plantable/attack_alien(mob/living/carbon/xenomorph/xeno) + if(xeno.a_intent == INTENT_HARM) + if(unslashable) + return + xeno.animation_attack_on(src) + playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] slashes [src]!"), SPAN_DANGER("We slash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(xeno.melee_damage_lower, xeno.melee_damage_upper)) + return XENO_ATTACK_ACTION + else + to_chat(xeno, SPAN_WARNING("We stare at [src] cluelessly.")) + return XENO_NONCOMBAT_ACTION + +/obj/structure/flag/plantable/bullet_act(obj/projectile/bullet) + bullet_ping(bullet) + visible_message(SPAN_DANGER("[src] is hit by [bullet]!"), null, 4, CHAT_TYPE_TAKING_HIT) + update_health(bullet.damage) + return TRUE + +/obj/structure/flag/plantable/attackby(obj/item/weapon, mob/living/user) + if(!indestructible) + visible_message(SPAN_DANGER("[src] has been hit by [user] with [weapon]!"), null, 5, CHAT_TYPE_MELEE_HIT) + user.animation_attack_on(src) + playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) + update_health(weapon.force * weapon.demolition_mod) + +/obj/item/flag/plantable + name = "plantable flag" + desc = "A flag of something. This one looks ready to be planted into the ground." + w_class = SIZE_LARGE + throw_range = 2 + icon = 'icons/obj/structures/plantable_flag.dmi' + inhand_x_dimension = 64 + inhand_y_dimension = 64 + unacidable = TRUE + item_icons = list( + WEAR_L_HAND = 'icons/mob/humans/onmob/items_lefthand_64.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/items_righthand_64.dmi' + ) + + /// The typepath of the flag structure that gets spawned when the flag is planted. + var/flag_type = /obj/structure/flag/plantable + /// Used to check if nearby mobs belong to a faction when calculating for the stronger warcry. + var/faction + /// Does the flag play a unique warcry when planted? (Only while on harm intent.) + var/play_warcry = FALSE + /// The warcry's sound path. + var/warcry_sound + /// When there are more than 14 allies nearby, play this stronger warcry. + var/warcry_extra_sound + /// How many nearby allies do we need for the stronger warcry to be played? + var/allies_required = 14 + /// Used to limit the spam of the warcry_extra_sound + COOLDOWN_DECLARE(warcry_cooldown_item) + +/obj/item/flag/plantable/get_examine_text(mob/user) + . = ..() + if(play_warcry && user.faction == faction) + . += SPAN_NOTICE("Planting the flag while in HARM intent will cause you to bellow out a rallying warcry!") + +/// Proc for turning the flag item into a structure. +/obj/item/flag/plantable/proc/plant_flag(mob/living/user, play_warcry = FALSE, warcry_sound, warcry_extra_sound, faction) + if(user.action_busy) + return + + if(SSinterior.in_interior(user)) + to_chat(usr, SPAN_WARNING("There's no way to plant [src] in here!")) + return + + var/turf/turf_to_plant = get_step(user, user.dir) + if(istype(turf_to_plant, /turf/open)) + var/turf/open/floor = turf_to_plant + if(!floor.allow_construction || istype(floor, /turf/open/space)) + to_chat(user, SPAN_WARNING("You cannot deploy [src] here, find a more secure surface!")) + return + else + to_chat(user, SPAN_WARNING("[turf_to_plant] is blocking you from deploying [src]!")) + return + + for(var/obj/object in turf_to_plant) + if(object.density) + to_chat(usr, SPAN_WARNING("You need a clear, open area to plant [src], something is blocking the way in front of you!")) + return + + user.visible_message(SPAN_NOTICE("[user] starts planting [src] into the ground..."), SPAN_NOTICE("You start planting [src] into the ground...")) + playsound(user, 'sound/effects/flag_raising.ogg', 30) + if(!do_after(user, 6 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + return + + user.visible_message(SPAN_NOTICE("[user] plants [src] into the ground!"), SPAN_NOTICE("You plant [src] into the ground!")) + var/obj/structure/flag/plantable/planted_flag = new flag_type(turf_to_plant) + + // If there are more than 14 allies nearby, play a stronger rallying cry. + // Otherwise, play the default warcry sound if there is one. If not, play a generic flag raising sfx. + if(play_warcry && user.faction == faction && user.a_intent == INTENT_HARM) + var/allies_nearby = 0 + if(COOLDOWN_FINISHED(src, warcry_cooldown_item)) + for (var/mob/living/carbon/human in orange(planted_flag, 7)) + if (human.is_dead() || human.faction != faction) + continue + allies_nearby++ + if (prob(40) && human != user) + human.emote("warcry") + + user.show_speech_bubble("warcry") + if(allies_nearby >= allies_required) + playsound(user, warcry_extra_sound, 40) + // Start a cooldown on the flag structure. This way we can keep track of the cooldown when the flag is hoisted and taken down. + COOLDOWN_START(planted_flag, warcry_cooldown_struc, 90 SECONDS) + user.manual_emote("shouts an invigorating rallying cry!") + else + playsound(user, warcry_sound, 30) + user.manual_emote("shouts an inspiring cry!") + // Ditto. If the cooldown isn't finished we have to transfer the leftover time to the structure. + COOLDOWN_START(planted_flag, warcry_cooldown_struc, COOLDOWN_TIMELEFT(src, warcry_cooldown_item)) + else + playsound(loc, 'sound/effects/flag_raised.ogg', 30) + + qdel(src) + +/obj/item/flag/plantable/attack_self(mob/user) + ..() + plant_flag(user, play_warcry, warcry_sound, warcry_extra_sound, faction) + +// UNITED AMERICAS FLAG // +////////////////////////// + +/obj/item/flag/plantable/ua + name = "\improper United Americas flag" + desc = "The flag of the United Americas. This one looks ready to be planted into the ground." + icon = 'icons/obj/structures/plantable_flag.dmi' + icon_state = "flag_ua" + flag_type = /obj/structure/flag/plantable/ua + faction = FACTION_MARINE + play_warcry = TRUE + warcry_sound = 'sound/effects/flag_warcry_ua.ogg' + warcry_extra_sound = 'sound/effects/flag_warcry_ua_extra.ogg' + +/obj/structure/flag/plantable/ua + name = "\improper United Americas flag" + desc = "The flag of the United Americas. Semper fi." + icon_state = "flag_ua_planted" + flag_type = /obj/item/flag/plantable/ua diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index baa91db19396..06636d2c3f76 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -268,6 +268,7 @@ return TRUE /datum/action/item_action/specialist/santabag/action_activate() + . = ..() var/obj/item/storage/backpack/santabag/santa_bag = holder_item santa_bag.refill_santa_bag(owner) update_button_icon() @@ -537,6 +538,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r button.overlays += IMG /datum/action/item_action/rto_pack/use_phone/action_activate() + . = ..() for(var/obj/item/storage/backpack/marine/satchel/rto/radio_backpack in owner) radio_backpack.use_phone(owner) return @@ -870,6 +872,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r return TRUE /datum/action/item_action/specialist/toggle_cloak/action_activate() + . = ..() var/obj/item/storage/backpack/marine/satchel/scout_cloak/SC = holder_item SC.camouflage() diff --git a/code/game/objects/items/storage/large_holster.dm b/code/game/objects/items/storage/large_holster.dm index 02983e1552ed..d8e1ee51d0d8 100644 --- a/code/game/objects/items/storage/large_holster.dm +++ b/code/game/objects/items/storage/large_holster.dm @@ -375,6 +375,7 @@ return TRUE /datum/action/item_action/specialist/toggle_fuel/action_activate() + . = ..() var/obj/item/storage/large_holster/fuelpack/FP = holder_item if (!istype(FP)) return diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm index f93f2dab0984..2dc064aa86d4 100644 --- a/code/game/objects/objs.dm +++ b/code/game/objects/objs.dm @@ -416,7 +416,7 @@ var/offset_x = worn_x_dimension var/offset_y = worn_y_dimension - if(inhands) + if(inhands == 1 || inhands == 0) offset_x = inhand_x_dimension offset_y = inhand_y_dimension diff --git a/code/game/objects/structures/roof.dm b/code/game/objects/structures/roof.dm new file mode 100644 index 000000000000..e302133f0c9a --- /dev/null +++ b/code/game/objects/structures/roof.dm @@ -0,0 +1,165 @@ +/obj/structure/roof + name = "roof" + desc = "A roof" + icon = 'icons/turf/almayer.dmi' + icon_state = "plating_catwalk" + density = FALSE + layer = ABOVE_XENO_LAYER + health = 6000 + var/image/under_image //immage that is used when there is mob on connected node, displayed only to mobs under it not others + var/image/normal_image + var/datum/roof_master_node/linked_master + var/lazy_nodes = TRUE //if roof should create nodes that watch around it on spawn + + +/obj/structure/roof/Initialize() + . = ..() + under_image = image(icon, src, icon_state, layer = layer) + under_image.alpha = 127 + + normal_image = image(icon, src, icon_state, layer = layer) + + icon_state = null + + RegisterSignal(SSdcs, COMSIG_GLOB_MOB_LOGGED_IN, PROC_REF(add_default_image)) + + for(var/icon in GLOB.player_list) + add_default_image(SSdcs, icon) + if(lazy_nodes) //creates new node on each surounding tile if there is not one already + var/obj/effect/roof_node/neighbor = locate() in loc + if(!neighbor) + neighbor = new(loc) + for(var/direction in CARDINAL_ALL_DIRS) + var/adjacent_loc = get_step(src, direction) + neighbor = locate() in adjacent_loc + if(!neighbor) + neighbor = new(adjacent_loc) + return INITIALIZE_HINT_LATELOAD + +/obj/structure/roof/LateInitialize() //we use late init to allow for lazy nodes to spawn first on mapload + . = ..() + if(linked_master) + return + for(var/direction in CARDINAL_ALL_DIRS) //this searches if there is lattice with master already, to work with runtime creation + for(var/obj/structure/roof/roof in get_step(src,direction)) + if(roof.linked_master) + roof.linked_master.connect(loc) + return + var/datum/roof_master_node/roof_master_node = new(loc) //no master and no lattice to connect to, create new master + roof_master_node.connect(loc) + +/obj/structure/roof/Destroy(force, ...) + if(linked_master) + linked_master.remove_roof(src) + for(var/icon in GLOB.player_list) + var/mob/mob = icon + mob.client.images -= normal_image + return ..() + +/obj/structure/roof/proc/add_default_image(subsystem, mob/mob) + SIGNAL_HANDLER + mob.client.images += normal_image + +/obj/structure/roof/proc/link_master(datum/roof_master_node/master) //performs bfs and connects to master + if(linked_master != null) + return + master.connected_roof += src + linked_master = master + for(var/direction in CARDINAL_ALL_DIRS) + for(var/obj/structure/roof/roof in get_step(src,direction)) + roof.link_master(master) + + +/obj/effect/roof_node //used for observing if mob is near the roof + name = "roof_node" + anchored = TRUE + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + invisibility = 101 + unacidable = TRUE + var/datum/roof_master_node/linked_master + +/obj/effect/roof_node/Crossed(atom/movable/mover, target_dir) + if(!linked_master) + return + if(isliving(mover)) + var/mob/living/mob = mover + linked_master.add_under_roof(mob) + +/obj/effect/roof_node/Destroy(force, ...) + if(linked_master) + if(linked_master.connected_nodes) + linked_master.connected_nodes -= src + return ..() + +/obj/effect/roof_node/proc/link_master(datum/roof_master_node/master) //performs bfs and connects to master + if(linked_master) + return + master.connected_nodes += src + linked_master = master + for(var/direction in CARDINAL_ALL_DIRS) + for(var/obj/effect/roof_node/node in get_step(src,direction)) + node.link_master(master) + + +/datum/roof_master_node //maintains one block of roof + var/list/connected_nodes = list() + var/list/connected_roof = list() + var/list/mobs_under = list() + var/location + +/datum/roof_master_node/Destroy(force, ...) + if(connected_nodes) + for(var/obj/effect/roof_node/roof_node in connected_nodes) + qdel(roof_node) + if(connected_nodes) + for(var/obj/structure/roof/roof in connected_roof) + qdel(roof) + return ..() + +/datum/roof_master_node/proc/add_under_roof(mob/living/living) //mob crossed connected node + if(living in mobs_under) + return + mobs_under += living + RegisterSignal(living, COMSIG_PARENT_QDELETING, PROC_REF(remove_under_roof)) + RegisterSignal(living, COMSIG_MOB_LOGGED_IN, PROC_REF(add_client)) + RegisterSignal(living, COMSIG_MOVABLE_MOVED, PROC_REF(check_under_roof)) + + if(living.client) + add_client(living) + +/datum/roof_master_node/proc/add_client(mob/living/mob) + SIGNAL_HANDLER + for(var/obj/structure/roof/roof in connected_roof) + mob.client.images -= roof.normal_image + mob.client.images += roof.under_image + +/datum/roof_master_node/proc/remove_under_roof(mob/living/living) //mob is no longer under roof + SIGNAL_HANDLER + if(living.client) + for(var/obj/structure/roof/roof in connected_roof) + living.client.images -= roof.under_image + roof.add_default_image(SSdcs, living) + mobs_under -= living + UnregisterSignal(living, list( + COMSIG_PARENT_QDELETING, + COMSIG_MOB_LOGGED_IN, + COMSIG_MOVABLE_MOVED, + )) + +/datum/roof_master_node/proc/check_under_roof(mob/living/living) //check if the mob is under connected roof + SIGNAL_HANDLER + for(var/obj/effect/roof_node/roof in connected_nodes) + if(living.loc == roof.loc) + return + remove_under_roof(living) + +/datum/roof_master_node/proc/connect(location) + for(var/obj/effect/roof_node/node in location) + node.link_master(src) + for(var/obj/structure/roof/roof in location) + roof.link_master(src) + +/datum/roof_master_node/proc/remove_roof(obj/structure/roof/roof) //roof tile got removed + connected_roof -= roof + if(!length(connected_roof)) + qdel(src) diff --git a/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm b/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm index c3f0b97e509a..68b899f78f15 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm @@ -245,6 +245,7 @@ do_buckle(mob, user) ADD_TRAIT(mob, TRAIT_NESTED, TRAIT_SOURCE_BUCKLE) + ADD_TRAIT(mob, TRAIT_NO_STRAY, TRAIT_SOURCE_BUCKLE) SEND_SIGNAL(mob, COMSIG_MOB_NESTED, user) if(!human) @@ -275,6 +276,7 @@ buckled_mob.pixel_y = 0 buckled_mob.old_y = 0 REMOVE_TRAIT(buckled_mob, TRAIT_NESTED, TRAIT_SOURCE_BUCKLE) + REMOVE_TRAIT(buckled_mob, TRAIT_NO_STRAY, TRAIT_SOURCE_BUCKLE) var/mob/living/carbon/human/buckled_human = buckled_mob var/mob/dead/observer/G = ghost_of_buckled_mob diff --git a/code/game/objects/structures/vulture_spotter.dm b/code/game/objects/structures/vulture_spotter.dm index dc341edf0446..dcbfd88c9c08 100644 --- a/code/game/objects/structures/vulture_spotter.dm +++ b/code/game/objects/structures/vulture_spotter.dm @@ -313,6 +313,7 @@ tripod = WEAKREF(spotting_tripod) /datum/action/vulture_tripod_unscope/action_activate() + . = ..() if(!tripod) return diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index c5a675b531d2..53b64cbedfad 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -1115,7 +1115,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new()) else if (href_list["rreq"]) var/ordernum = text2num(href_list["rreq"]) temp = "Invalid Request.
" - for(var/i=1, length(i<=GLOB.supply_controller.requestlist), i++) + for(var/i=1, i<=length(GLOB.supply_controller.requestlist), i++) var/datum/supply_order/SO = GLOB.supply_controller.requestlist[i] if(SO.ordernum == ordernum) GLOB.supply_controller.requestlist.Cut(i,i+1) diff --git a/code/game/turfs/transit.dm b/code/game/turfs/transit.dm index 00175ac5e365..5b4645805d3b 100644 --- a/code/game/turfs/transit.dm +++ b/code/game/turfs/transit.dm @@ -138,6 +138,12 @@ clear_active_explosives() ADD_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_SOURCE_DROPSHIP_INTERACTION) ADD_TRAIT(src, TRAIT_UNDENSE, TRAIT_SOURCE_DROPSHIP_INTERACTION) + ADD_TRAIT(src, TRAIT_NO_STRAY, TRAIT_SOURCE_DROPSHIP_INTERACTION) + RegisterSignal(src, COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED, PROC_REF(cancel_cross)) + RegisterSignal(src, list( + COMSIG_LIVING_FLAMER_FLAMED, + COMSIG_LIVING_PREIGNITION + ), PROC_REF(cancel_fire)) var/image/cables = image('icons/obj/structures/droppod_32x64.dmi', src, "chute_cables_static") overlays += cables var/image/chute = image('icons/obj/structures/droppod_64x64.dmi', src, "chute_static") @@ -163,8 +169,18 @@ return REMOVE_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_SOURCE_DROPSHIP_INTERACTION) REMOVE_TRAIT(src, TRAIT_UNDENSE, TRAIT_SOURCE_DROPSHIP_INTERACTION) + REMOVE_TRAIT(src, TRAIT_NO_STRAY, TRAIT_SOURCE_DROPSHIP_INTERACTION) + UnregisterSignal(src, list( + COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED, + COMSIG_LIVING_FLAMER_FLAMED, + COMSIG_LIVING_PREIGNITION + )) overlays -= cables overlays -= chute + for(var/atom/movable/atom in loc) + if(atom == src) + continue + atom.Cross(src) /atom/movable/proc/clear_active_explosives() for(var/obj/item/explosive/explosive in contents) @@ -232,6 +248,13 @@ death(last_damage_data) status_flags |= PERMANENTLY_DEAD +/atom/movable/proc/cancel_cross() + SIGNAL_HANDLER + return COMPONENT_IGNORE_CROSS + +/atom/movable/proc/cancel_fire() + SIGNAL_HANDLER + return COMPONENT_NO_BURN /turf/open/space/transit/dropship/alamo shuttle_tag = DROPSHIP_ALAMO diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index 0b27cf268a12..e826b0b64767 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -367,6 +367,10 @@ retrieved_icon.Scale(128, 128) Insert("intents", retrieved_icon) + retrieved_icon = icon('icons/mob/xenos/predalien.dmi', "Normal Predalien Walking") + retrieved_icon.Scale(128, 128) + Insert("predalien", retrieved_icon) + return ..() diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index 7406e6baa754..6e086e651a10 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -40,6 +40,7 @@ return TRUE /datum/action/item_action/view_publications/action_activate() + . = ..() var/obj/item/clothing/glasses/hud/health/hud = holder_item hud.tgui_interact(owner) diff --git a/code/modules/clothing/glasses/night.dm b/code/modules/clothing/glasses/night.dm index b2b6f8406dcc..984a906eabed 100644 --- a/code/modules/clothing/glasses/night.dm +++ b/code/modules/clothing/glasses/night.dm @@ -184,6 +184,7 @@ button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) /datum/action/item_action/m56_goggles/far_sight/action_activate() + . = ..() if(target) var/obj/item/clothing/glasses/night/m56_goggles/G = target G.set_far_sight(owner, !G.far_sight) diff --git a/code/modules/clothing/suits/marine_armor/ghillie.dm b/code/modules/clothing/suits/marine_armor/ghillie.dm index 1f1b71227655..44729ac16b2f 100644 --- a/code/modules/clothing/suits/marine_armor/ghillie.dm +++ b/code/modules/clothing/suits/marine_armor/ghillie.dm @@ -150,6 +150,7 @@ return TRUE /datum/action/item_action/specialist/prepare_position/action_activate() + . = ..() var/obj/item/clothing/suit/storage/marine/ghillie/GS = holder_item GS.camouflage() diff --git a/code/modules/clothing/suits/marine_armor/intel.dm b/code/modules/clothing/suits/marine_armor/intel.dm index b3f0f93e004d..12aa824648d1 100644 --- a/code/modules/clothing/suits/marine_armor/intel.dm +++ b/code/modules/clothing/suits/marine_armor/intel.dm @@ -18,6 +18,7 @@ update_icon() /datum/action/item_action/intel/action_activate() + . = ..() if(!ishuman(owner)) return diff --git a/code/modules/clothing/suits/marine_armor/spec_fire.dm b/code/modules/clothing/suits/marine_armor/spec_fire.dm index 52343a204f68..c3f2863b3545 100644 --- a/code/modules/clothing/suits/marine_armor/spec_fire.dm +++ b/code/modules/clothing/suits/marine_armor/spec_fire.dm @@ -145,6 +145,7 @@ return TRUE /datum/action/item_action/specialist/fire_shield/action_activate() + . = ..() var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item if (!istype(armor)) return diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index c7353840d439..74cb5ea552ee 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -1210,6 +1210,7 @@ button.overlays += button_overlay /datum/action/item_action/specialist/toggle_cbrn_hood/action_activate() + . = ..() var/obj/item/clothing/under/marine/cbrn/armor = holder_item if(!istype(armor)) return diff --git a/code/modules/cm_aliens/structures/fruit.dm b/code/modules/cm_aliens/structures/fruit.dm index f555cac64b8c..b2a0fd27d65b 100644 --- a/code/modules/cm_aliens/structures/fruit.dm +++ b/code/modules/cm_aliens/structures/fruit.dm @@ -185,7 +185,7 @@ bound_xeno.current_fruits.Remove(src) var/number_of_fruit = length(bound_xeno.current_fruits) - var/datum/action/xeno_action/onclick/plant_resin_fruit/plant_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) + var/datum/action/xeno_action/onclick/plant_resin_fruit/plant_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) plant_action.button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) plant_action.update_button_icon() @@ -377,7 +377,7 @@ /obj/item/reagent_container/food/snacks/resin_fruit/proc/delete_fruit() if(bound_xeno) bound_xeno.current_fruits.Remove(src) - var/datum/action/xeno_action/onclick/plant_resin_fruit/prf = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) + var/datum/action/xeno_action/onclick/plant_resin_fruit/prf = get_action(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) var/number_of_fruit = length(bound_xeno.current_fruits) prf.button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) prf.update_button_icon() diff --git a/code/modules/cm_aliens/structures/special/egg_morpher.dm b/code/modules/cm_aliens/structures/special/egg_morpher.dm index c4fb5c0a900c..ac501bb5c970 100644 --- a/code/modules/cm_aliens/structures/special/egg_morpher.dm +++ b/code/modules/cm_aliens/structures/special/egg_morpher.dm @@ -14,14 +14,14 @@ var/huggers_to_grow_max = 12 var/huggers_reserved = 0 var/mob/captured_mob - var/datum/shape/rectangle/range_bounds + var/datum/shape/range_bounds appearance_flags = KEEP_TOGETHER layer = FACEHUGGER_LAYER /obj/effect/alien/resin/special/eggmorph/Initialize(mapload, hive_ref) . = ..() - range_bounds = RECT(x, y, EGGMORPG_RANGE, EGGMORPG_RANGE) + range_bounds = SQUARE(x, y, EGGMORPG_RANGE) /obj/effect/alien/resin/special/eggmorph/Destroy() if (stored_huggers && linked_hive) @@ -158,7 +158,7 @@ /obj/effect/alien/resin/special/eggmorph/proc/check_facehugger_target() if(!range_bounds) - range_bounds = RECT(x, y, EGGMORPG_RANGE, EGGMORPG_RANGE) + range_bounds = SQUARE(x, y, EGGMORPG_RANGE) var/list/targets = SSquadtree.players_in_range(range_bounds, z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) if(isnull(targets) || !length(targets)) diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm index 5ba670d89bc1..951cd30f84ff 100644 --- a/code/modules/cm_marines/equipment/kit_boxes.dm +++ b/code/modules/cm_marines/equipment/kit_boxes.dm @@ -248,12 +248,9 @@ return TRUE /obj/item/spec_kit/proc/select_and_spawn(mob/living/carbon/human/user) - var/selection = tgui_input_list(user, "Pick your specialist equipment type.", "Specialist Kit Selection", GLOB.available_specialist_kit_boxes) + var/selection = tgui_input_list(user, "Pick your specialist equipment type.", "Specialist Kit Selection", GLOB.available_specialist_kit_boxes, 10 SECONDS) if(!selection || QDELETED(src)) return FALSE - if(!skillcheckexplicit(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_TRAINED) && !skillcheckexplicit(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL)) - to_chat(user, SPAN_WARNING("You already unwrapped your [name], give this one to someone else!")) - return if(!GLOB.available_specialist_kit_boxes[selection] || GLOB.available_specialist_kit_boxes[selection] <= 0) to_chat(user, SPAN_WARNING("No more kits of this type may be chosen!")) return FALSE @@ -299,6 +296,7 @@ user.put_in_hands(spec_box) card.set_assignment((user.assigned_squad && squad_assignment_update ? (user.assigned_squad.name + " ") : "") + card.assignment + " ([specialist_assignment])") GLOB.data_core.manifest_modify(user.real_name, WEAKREF(user), card.assignment) + GLOB.available_specialist_kit_boxes[selection]-- return TRUE return FALSE diff --git a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm index dae0910cc9b4..1cb93c6a809e 100644 --- a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm +++ b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm @@ -167,23 +167,43 @@ return ..() /obj/item/mortar_shell/flamer_fire_act(dam, datum/cause_data/flame_cause_data) + addtimer(VARSET_CALLBACK(src, burning, FALSE), 5 SECONDS, TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_DELETE_ME) + if(burning) return burning = TRUE cause_data = create_cause_data("Burning Mortar Shell", flame_cause_data.resolve_mob(), src) - handle_fire() + handle_fire(cause_data) -/obj/item/mortar_shell/proc/handle_fire() - visible_message(SPAN_WARNING("[src] catches on fire and starts cooking off! It's gonna blow!")) - anchored = TRUE // don't want other explosions launching it elsewhere +/obj/item/mortar_shell/proc/can_explode() + return TRUE - var/datum/effect_system/spark_spread/sparks = new() - sparks.set_up(n = 10, loca = loc) - sparks.start() - new /obj/effect/warning/explosive(loc, 5 SECONDS) +/obj/item/mortar_shell/custom/can_explode() + for(var/obj/item/reagent_container/glass/container in warhead?.containers) + for(var/datum/reagent/reagent in container?.reagents?.reagent_list) + if(reagent.explosive) + return TRUE - addtimer(CALLBACK(src, PROC_REF(detonate), loc), 5 SECONDS) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), (src)), 5.5 SECONDS) + return FALSE + +/obj/item/mortar_shell/flare/can_explode() + return FALSE + +/obj/item/mortar_shell/proc/handle_fire(cause_data) + if(can_explode()) + visible_message(SPAN_WARNING("[src] catches on fire and starts cooking off! It's gonna blow!")) + anchored = TRUE // don't want other explosions launching it elsewhere + var/datum/effect_system/spark_spread/sparks = new() + sparks.set_up(n = 10, loca = loc) + sparks.start() + new /obj/effect/warning/explosive(loc, 5 SECONDS) + + addtimer(CALLBACK(src, PROC_REF(explode), cause_data), 5 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), (src)), 5.5 SECONDS) + + +/obj/item/mortar_shell/proc/explode(flame_cause_data) + cell_explosion(src, 100, 25, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, flame_cause_data) /obj/structure/closet/crate/secure/mortar_ammo name = "\improper M402 mortar ammo crate" diff --git a/code/modules/cm_preds/yaut_actions.dm b/code/modules/cm_preds/yaut_actions.dm index f55f58e0a557..0d260363ab15 100644 --- a/code/modules/cm_preds/yaut_actions.dm +++ b/code/modules/cm_preds/yaut_actions.dm @@ -49,6 +49,7 @@ return TRUE /datum/action/predator_action/action_activate() + . = ..() if(!can_use_action()) return FALSE @@ -248,6 +249,7 @@ action_icon_state = "looc_toggle" /datum/action/yautja_emote_panel/action_activate() + . = ..() var/mob/living/carbon/human/human_owner = owner var/datum/species/yautja/yautja_species = human_owner.species yautja_species.open_emote_panel() diff --git a/code/modules/cm_preds/yaut_bracers.dm b/code/modules/cm_preds/yaut_bracers.dm index 5577691d64c2..77efbb7ad4ef 100644 --- a/code/modules/cm_preds/yaut_bracers.dm +++ b/code/modules/cm_preds/yaut_bracers.dm @@ -556,7 +556,7 @@ set src in usr . = cloaker_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/cloaker_internal(mob/caller, forced = FALSE) +/obj/item/clothing/gloves/yautja/hunter/proc/cloaker_internal(mob/caller, forced = FALSE, silent = FALSE, instant = FALSE) . = check_random_function(caller, forced) if(.) return @@ -600,15 +600,21 @@ M.see_invisible = SEE_INVISIBLE_LEVEL_ONE log_game("[key_name_admin(usr)] has enabled their cloaking device.") - M.visible_message(SPAN_WARNING("[M] vanishes into thin air!"), SPAN_NOTICE("You are now invisible to normal detection.")) - playsound(M.loc,'sound/effects/pred_cloakon.ogg', 15, 1) - animate(M, alpha = new_alpha, time = 1.5 SECONDS, easing = SINE_EASING|EASE_OUT) + if(!silent) + M.visible_message(SPAN_WARNING("[M] vanishes into thin air!"), SPAN_NOTICE("You are now invisible to normal detection.")) + playsound(M.loc,'sound/effects/pred_cloakon.ogg', 15, 1) + + if(!instant) + animate(M, alpha = new_alpha, time = 1.5 SECONDS, easing = SINE_EASING|EASE_OUT) + else + M.alpha = new_alpha var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] SA.remove_from_hud(M) var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] XI.remove_from_hud(M) - anim(M.loc,M,'icons/mob/mob.dmi',,"cloak",,M.dir) + if(!instant) + anim(M.loc,M,'icons/mob/mob.dmi',,"cloak",,M.dir) var/datum/action/predator_action/bracer/cloak/cloak_action for(cloak_action as anything in M.actions) @@ -634,6 +640,8 @@ if(!user) return + SEND_SIGNAL(src, COMSIG_PRED_BRACER_DECLOAKED) + UnregisterSignal(user, COMSIG_HUMAN_EXTINGUISH) UnregisterSignal(user, COMSIG_HUMAN_PRE_BULLET_ACT) UnregisterSignal(user, COMSIG_MOB_EFFECT_CLOAK_CANCEL) diff --git a/code/modules/cm_tech/hologram.dm b/code/modules/cm_tech/hologram.dm index 1fcba71a4560..1d85df9e49ad 100644 --- a/code/modules/cm_tech/hologram.dm +++ b/code/modules/cm_tech/hologram.dm @@ -102,6 +102,7 @@ GLOBAL_LIST_EMPTY_TYPED(hologram_list, /mob/hologram) var/mob/hologram/linked_hologram /datum/action/leave_hologram/action_activate() + . = ..() qdel(src) /datum/action/leave_hologram/Destroy() diff --git a/code/modules/cm_tech/implements/adv_weapon.dm b/code/modules/cm_tech/implements/adv_weapon.dm index 3cc8f1ceb4d6..f7b1008e0882 100644 --- a/code/modules/cm_tech/implements/adv_weapon.dm +++ b/code/modules/cm_tech/implements/adv_weapon.dm @@ -130,6 +130,7 @@ name = "Start Charging" /datum/action/item_action/techweb_railgun_start_charge/action_activate() + . = ..() if (target) var/obj/item/weapon/gun/rifle/techweb_railgun/TR = target TR.start_charging(owner) @@ -138,6 +139,7 @@ name = "Abort Charge" /datum/action/item_action/techweb_railgun_abort_charge/action_activate() + . = ..() if (target) var/obj/item/weapon/gun/rifle/techweb_railgun/TR = target TR.abort_charge(owner) diff --git a/code/modules/defenses/bell_tower.dm b/code/modules/defenses/bell_tower.dm index 68d58f02b481..7ce252b3f4d7 100644 --- a/code/modules/defenses/bell_tower.dm +++ b/code/modules/defenses/bell_tower.dm @@ -257,7 +257,7 @@ STOP_PROCESSING(SSobj, src) return - var/list/targets = SSquadtree.players_in_range(RECT(M.x, M.y, area_range, area_range), M.z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) + var/list/targets = SSquadtree.players_in_range(SQUARE(M.x, M.y, area_range), M.z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) if(!targets) return diff --git a/code/modules/defenses/planted_flag.dm b/code/modules/defenses/planted_flag.dm index d2b9b23e8f3b..d44f22f38b68 100644 --- a/code/modules/defenses/planted_flag.dm +++ b/code/modules/defenses/planted_flag.dm @@ -7,7 +7,7 @@ desc = "A planted flag with the iconic USCM flag plastered all over it, you feel a burst of energy by its mere sight." handheld_type = /obj/item/defenses/handheld/planted_flag disassemble_time = 10 - var/datum/shape/rectangle/range_bounds + var/datum/shape/range_bounds var/area_range = PLANTED_FLAG_RANGE var/buff_intensity = PLANTED_FLAG_BUFF health = 200 @@ -33,7 +33,7 @@ apply_area_effect() start_processing() - range_bounds = RECT(x, y, PLANTED_FLAG_RANGE, PLANTED_FLAG_RANGE) + range_bounds = SQUARE(x, y, PLANTED_FLAG_RANGE) update_icon() /obj/structure/machinery/defenses/planted_flag/Destroy() @@ -70,9 +70,9 @@ /obj/structure/machinery/defenses/planted_flag/proc/apply_area_effect() if(!range_bounds) - range_bounds = RECT(x, y, area_range, area_range) + range_bounds = SQUARE(x, y, area_range) - var/list/targets = SSquadtree.players_in_range(RECT(x, y, area_range, area_range), z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) + var/list/targets = SSquadtree.players_in_range(SQUARE(x, y, area_range), z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) if(!targets) return @@ -180,7 +180,7 @@ if(!M.x && !M.y && !M.z) return - var/list/targets = SSquadtree.players_in_range(RECT(M.x, M.y, area_range, area_range), M.z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) + var/list/targets = SSquadtree.players_in_range(SQUARE(M.x, M.y, area_range), M.z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) targets |= M for(var/mob/living/carbon/human/H in targets) diff --git a/code/modules/defenses/sentry.dm b/code/modules/defenses/sentry.dm index 695b3387d909..8ad4cd407e75 100644 --- a/code/modules/defenses/sentry.dm +++ b/code/modules/defenses/sentry.dm @@ -12,7 +12,7 @@ var/list/targets = list() // Lists of current potential targets var/list/other_targets = list() //List of special target types to shoot at, if needed. var/atom/movable/target = null - var/datum/shape/rectangle/range_bounds + var/datum/shape/range_bounds var/datum/effect_system/spark_spread/spark_system //The spark system, used for generating... sparks? var/last_fired = 0 var/fire_delay = 4 @@ -93,17 +93,17 @@ /obj/structure/machinery/defenses/sentry/proc/set_range() if(omni_directional) - range_bounds = RECT(x, y, 8, 8) + range_bounds = SQUARE(x, y, 8) return switch(dir) if(EAST) - range_bounds = RECT(x + 4, y, 7, 7) + range_bounds = SQUARE(x + 4, y, 7) if(WEST) - range_bounds = RECT(x - 4, y, 7, 7) + range_bounds = SQUARE(x - 4, y, 7) if(NORTH) - range_bounds = RECT(x, y + 4, 7, 7) + range_bounds = SQUARE(x, y + 4, 7) if(SOUTH) - range_bounds = RECT(x, y - 4, 7, 7) + range_bounds = SQUARE(x, y - 4, 7) /obj/structure/machinery/defenses/sentry/proc/unset_range() SIGNAL_HANDLER @@ -614,17 +614,17 @@ var/dbl_range = range * 2 if(omni_directional) - range_bounds = RECT(x, y, dbl_range, dbl_range) + range_bounds = SQUARE(x, y, dbl_range) return switch(dir) if(EAST) - range_bounds = RECT(x+range, y, dbl_range, dbl_range) + range_bounds = SQUARE(x+range, y, dbl_range) if(WEST) - range_bounds = RECT(x-range, y, dbl_range, dbl_range) + range_bounds = SQUARE(x-range, y, dbl_range) if(NORTH) - range_bounds = RECT(x, y+range, dbl_range, dbl_range) + range_bounds = SQUARE(x, y+range, dbl_range) if(SOUTH) - range_bounds = RECT(x, y-range, dbl_range, dbl_range) + range_bounds = SQUARE(x, y-range, dbl_range) //the turret inside the shuttle sentry deployment system /obj/structure/machinery/defenses/sentry/premade/dropship @@ -672,13 +672,13 @@ /obj/structure/machinery/defenses/sentry/dmr/set_range() switch(dir) if(EAST) - range_bounds = RECT(x + (SENTRY_SNIPER_RANGE/2), y, SENTRY_SNIPER_RANGE, SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x + (SENTRY_SNIPER_RANGE/2), y, SENTRY_SNIPER_RANGE) if(WEST) - range_bounds = RECT(x - (SENTRY_SNIPER_RANGE/2), y, SENTRY_SNIPER_RANGE, SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x - (SENTRY_SNIPER_RANGE/2), y, SENTRY_SNIPER_RANGE) if(NORTH) - range_bounds = RECT(x, y + (SENTRY_SNIPER_RANGE/2), SENTRY_SNIPER_RANGE, SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x, y + (SENTRY_SNIPER_RANGE/2), SENTRY_SNIPER_RANGE) if(SOUTH) - range_bounds = RECT(x, y - (SENTRY_SNIPER_RANGE/2), SENTRY_SNIPER_RANGE, SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x, y - (SENTRY_SNIPER_RANGE/2), SENTRY_SNIPER_RANGE) #undef SENTRY_SNIPER_RANGE /obj/structure/machinery/defenses/sentry/shotgun diff --git a/code/modules/defenses/sentry_computer.dm b/code/modules/defenses/sentry_computer.dm index 59c6409d552c..639a74e6ba30 100644 --- a/code/modules/defenses/sentry_computer.dm +++ b/code/modules/defenses/sentry_computer.dm @@ -402,8 +402,7 @@ var/obj/structure/machinery/defenses/sentry/defense = sentry if (defense.has_camera) defense.set_range() - var/datum/shape/rectangle/current_bb = defense.range_bounds - SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, current_bb.center_x, current_bb.center_y, defense.loc.z, current_bb.width, current_bb.height) + SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, defense.range_bounds, defense.loc.z) return TRUE if("ping") diff --git a/code/modules/defenses/sentry_flamer.dm b/code/modules/defenses/sentry_flamer.dm index 979d18eb41d1..2c5e9ae62677 100644 --- a/code/modules/defenses/sentry_flamer.dm +++ b/code/modules/defenses/sentry_flamer.dm @@ -90,13 +90,13 @@ /obj/structure/machinery/defenses/sentry/flamer/plasma/set_range() switch(dir) if(EAST) - range_bounds = RECT(x + (FLAMER_SENTRY_SNIPER_RANGE/2), y, FLAMER_SENTRY_SNIPER_RANGE, FLAMER_SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x + (FLAMER_SENTRY_SNIPER_RANGE/2), y, FLAMER_SENTRY_SNIPER_RANGE) if(WEST) - range_bounds = RECT(x - (FLAMER_SENTRY_SNIPER_RANGE/2), y, FLAMER_SENTRY_SNIPER_RANGE, FLAMER_SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x - (FLAMER_SENTRY_SNIPER_RANGE/2), y, FLAMER_SENTRY_SNIPER_RANGE) if(NORTH) - range_bounds = RECT(x, y + (FLAMER_SENTRY_SNIPER_RANGE/2), FLAMER_SENTRY_SNIPER_RANGE, FLAMER_SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x, y + (FLAMER_SENTRY_SNIPER_RANGE/2), FLAMER_SENTRY_SNIPER_RANGE) if(SOUTH) - range_bounds = RECT(x, y - (FLAMER_SENTRY_SNIPER_RANGE/2), FLAMER_SENTRY_SNIPER_RANGE, FLAMER_SENTRY_SNIPER_RANGE) + range_bounds = SQUARE(x, y - (FLAMER_SENTRY_SNIPER_RANGE/2), FLAMER_SENTRY_SNIPER_RANGE) #undef FLAMER_SENTRY_SNIPER_RANGE diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 5311a7a79a3b..138e091ad5a4 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -138,6 +138,9 @@ new_human.set_languages(languages) /datum/equipment_preset/proc/load_preset(mob/living/carbon/human/new_human, randomise = FALSE, count_participant = FALSE, client/mob_client, show_job_gear = TRUE) + if(!new_human.hud_used) + new_human.create_hud() + load_race(new_human, mob_client) if(randomise || uses_special_name) load_name(new_human, randomise, mob_client) diff --git a/code/modules/mentor/looc_toggle.dm b/code/modules/mentor/looc_toggle.dm index 7c5b95b1fcb0..b224e72e79d2 100644 --- a/code/modules/mentor/looc_toggle.dm +++ b/code/modules/mentor/looc_toggle.dm @@ -13,6 +13,7 @@ // Called when the action is clicked on. /datum/action/looc_toggle/action_activate() + . = ..() if(owner.looc_overhead) button.icon_state = "template" owner.looc_overhead = FALSE diff --git a/code/modules/mob/camera/imaginary_friend.dm b/code/modules/mob/camera/imaginary_friend.dm index 4e7be80056de..0a4d5ee65c5c 100644 --- a/code/modules/mob/camera/imaginary_friend.dm +++ b/code/modules/mob/camera/imaginary_friend.dm @@ -280,6 +280,7 @@ action_icon_state = "joinmob" /datum/action/innate/imaginary_orbit/action_activate() + . = ..() var/mob/camera/imaginary_friend/friend = owner friend.recall() @@ -288,6 +289,7 @@ action_icon_state = "hidemob" /datum/action/innate/imaginary_hide/action_activate() + . = ..() var/mob/camera/imaginary_friend/friend = owner if(friend.hidden) friend.hidden = FALSE diff --git a/code/modules/mob/dead/observer/actions.dm b/code/modules/mob/dead/observer/actions.dm index 7daae802dc7a..192c6cd1e3b8 100644 --- a/code/modules/mob/dead/observer/actions.dm +++ b/code/modules/mob/dead/observer/actions.dm @@ -3,6 +3,7 @@ action_icon_state = "ghost" /datum/action/ghost/action_activate() + . = ..() if(!owner.client) return @@ -38,6 +39,7 @@ qdel(src) /datum/action/join_ert/action_activate() + . = ..() if(!owner.client) return @@ -50,6 +52,7 @@ listen_signal = COMSIG_KB_OBSERVER_JOIN_PREDATOR /datum/action/join_predator/action_activate() + . = ..() var/mob/dead/observer/activator = owner activator.join_as_yautja() @@ -58,6 +61,7 @@ action_icon_state = "view_crew_manifest" /datum/action/observer_action/view_crew_manifest/action_activate() + . = ..() show_browser(owner, GLOB.data_core.get_manifest(), "Crew Manifest", "manifest", "size=450x750") /datum/action/observer_action/view_hive_status @@ -65,6 +69,7 @@ action_icon_state = "view_hive_status" /datum/action/observer_action/view_hive_status/action_activate() + . = ..() var/mob/dead/observer/activator = owner activator.hive_status() @@ -74,6 +79,7 @@ listen_signal = COMSIG_KB_OBSERVER_JOIN_XENO /datum/action/observer_action/join_xeno/action_activate() + . = ..() if(!owner.client) return @@ -90,6 +96,7 @@ listen_signal = COMSIG_KB_OBSERVER_JOIN_LESSER_DRONE /datum/action/observer_action/join_lesser_drone/action_activate() + . = ..() if(!owner.client) return diff --git a/code/modules/mob/living/carbon/human/human_abilities.dm b/code/modules/mob/living/carbon/human/human_abilities.dm index 76ebbed06de6..9976fe37a4ff 100644 --- a/code/modules/mob/living/carbon/human/human_abilities.dm +++ b/code/modules/mob/living/carbon/human/human_abilities.dm @@ -20,6 +20,7 @@ cooldown = COMMAND_ORDER_COOLDOWN /datum/action/human_action/issue_order/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/H = owner @@ -58,6 +59,7 @@ return FALSE /datum/action/human_action/smartpack/action_activate() + . = ..() if(!istype(owner, /mob/living/carbon/human)) return var/mob/living/carbon/human/H = owner @@ -129,6 +131,7 @@ CULT // Called when the action is clicked on. /datum/action/human_action/activable/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/H = owner @@ -286,6 +289,7 @@ CULT action_icon_state = "cultist_channel_hivemind" /datum/action/human_action/activable/cult/speak_hivemind/action_activate() + . = ..() if(!can_use_action()) return @@ -316,6 +320,7 @@ CULT var/list/items_to_spawn = list(/obj/item/clothing/suit/cultist_hoodie/, /obj/item/clothing/head/cultist_hood/) /datum/action/human_action/activable/cult/obtain_equipment/action_activate() + . = ..() if(!can_use_action()) return @@ -515,6 +520,7 @@ CULT action_icon_state = "mutineer_begin" /datum/action/human_action/activable/mutineer/mutineer_begin/action_activate() + . = ..() if(!can_use_action()) return @@ -549,6 +555,7 @@ CULT UnregisterSignal(L, COMSIG_MOB_RESET_VIEW) /datum/action/human_action/cancel_view/action_activate() + . = ..() if(!can_use_action()) return @@ -575,6 +582,7 @@ CULT UnregisterSignal(L, COMSIG_MOB_RESET_VIEW) /datum/action/human_action/vehicle_unbuckle/action_activate() + . = ..() if(!can_use_action()) return @@ -600,6 +608,7 @@ CULT action_icon_state = "cancel_view" /datum/action/human_action/mg_exit/action_activate() + . = ..() if(!can_use_action()) return @@ -619,6 +628,7 @@ CULT UnregisterSignal(user, COMSIG_MOB_RESET_VIEW) /datum/action/human_action/toggle_arc_antenna/action_activate() + . = ..() if(!can_use_action()) return diff --git a/code/modules/mob/living/carbon/human/species/working_joe/_species.dm b/code/modules/mob/living/carbon/human/species/working_joe/_species.dm index c032e25708eb..f2c0e8d4cf26 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/_species.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/_species.dm @@ -50,6 +50,7 @@ /datum/action/joe_emote_panel/action_activate() + . = ..() if(!can_use_action()) return diff --git a/code/modules/mob/living/carbon/xenomorph/Embryo.dm b/code/modules/mob/living/carbon/xenomorph/Embryo.dm index d0890bd3cf37..61ba87cd001b 100644 --- a/code/modules/mob/living/carbon/xenomorph/Embryo.dm +++ b/code/modules/mob/living/carbon/xenomorph/Embryo.dm @@ -191,7 +191,7 @@ if(!picked) // Get a candidate from observers - var/list/candidates = get_alien_candidates(hive) + var/list/candidates = get_alien_candidates(hive, abomination = (isyautja(affected_mob) || (flags_embryo & FLAG_EMBRYO_PREDATOR))) if(candidates && length(candidates)) // If they were facehugged by a player thats still in queue, they get second dibs on the new larva. if(hugger_ckey) diff --git a/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm b/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm index 1fb48f699efa..3f37845380f0 100644 --- a/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm +++ b/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm @@ -18,6 +18,7 @@ return TRUE /datum/action/xeno_action/watch_xeno/action_activate() + . = ..() var/mob/living/carbon/xenomorph/X = owner if (!X.check_state(TRUE)) return FALSE diff --git a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm index f0fd8a4d86a7..e7320b17c333 100644 --- a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm +++ b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm @@ -264,7 +264,7 @@ /mob/living/carbon/xenomorph/proc/pounced_mob(mob/living/L) // This should only be called back by a mob that has pounce, so no need to check - var/datum/action/xeno_action/activable/pounce/pounceAction = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce) + var/datum/action/xeno_action/activable/pounce/pounceAction = get_action(src, /datum/action/xeno_action/activable/pounce) // Unconscious or dead, or not throwing but used pounce. if(!check_state() || (!throwing && !pounceAction.action_cooldown_check())) @@ -336,7 +336,7 @@ pounced_mob(L) /mob/living/carbon/xenomorph/proc/pounced_obj(obj/O) - var/datum/action/xeno_action/activable/pounce/pounceAction = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce) + var/datum/action/xeno_action/activable/pounce/pounceAction = get_action(src, /datum/action/xeno_action/activable/pounce) // Unconscious or dead, or not throwing but used pounce if(!check_state() || (!throwing && !pounceAction.action_cooldown_check())) diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm index b07f766b179d..eed2dce5f7a8 100644 --- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm +++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm @@ -343,6 +343,8 @@ var/atom/movable/vis_obj/xeno_wounds/wound_icon_holder var/atom/movable/vis_obj/xeno_pack/backpack_icon_holder + /// If TRUE, the xeno cannot slash anything + var/cannot_slash = FALSE /mob/living/carbon/xenomorph/Initialize(mapload, mob/living/carbon/xenomorph/old_xeno, hivenumber) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm index c749b0adb5ba..2431e4629876 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm @@ -108,7 +108,7 @@ var/mob/living/carbon/xenomorph/xeno = owner if(!action_cooldown_check()) // activate c/d only if we already spit for (var/action_type in action_types_to_cd) - var/datum/action/xeno_action/xeno_action = get_xeno_action_by_type(xeno, action_type) + var/datum/action/xeno_action/xeno_action = get_action(xeno, action_type) if (!istype(xeno_action)) continue @@ -149,7 +149,7 @@ to_chat(xeno, SPAN_XENOHIGHDANGER("We dump our acid through our pores, creating a shroud of gas!")) for (var/action_type in action_types_to_cd) - var/datum/action/xeno_action/xeno_action = get_xeno_action_by_type(xeno, action_type) + var/datum/action/xeno_action/xeno_action = get_action(xeno, action_type) if (!istype(xeno_action)) continue @@ -218,7 +218,7 @@ empowered = FALSE empowering_charge_counter = 0 button.overlays -= "+empowered" - var/datum/action/xeno_action/activable/acid_mine/mine = get_xeno_action_by_type(xeno, /datum/action/xeno_action/activable/acid_mine) + var/datum/action/xeno_action/activable/acid_mine/mine = get_action(xeno, /datum/action/xeno_action/activable/acid_mine) if(!mine.empowered) mine.empowered = TRUE mine.button.overlays += "+empowered" diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm index e1af5e36a40f..1dd4dc5a1c87 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm @@ -82,7 +82,7 @@ // This ties the pounce/throwing backend into the old collision backend /mob/living/carbon/xenomorph/crusher/pounced_obj(obj/O) - var/datum/action/xeno_action/activable/pounce/crusher_charge/CCA = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce/crusher_charge) + var/datum/action/xeno_action/activable/pounce/crusher_charge/CCA = get_action(src, /datum/action/xeno_action/activable/pounce/crusher_charge) if (istype(CCA) && !CCA.action_cooldown_check() && !(O.type in CCA.not_reducing_objects)) CCA.reduce_cooldown(50) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm index d7a4f987623a..8736d612c822 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm @@ -183,6 +183,7 @@ return ..() /datum/action/xeno_action/activable/fortify/action_activate() + . = ..() ..() var/mob/living/carbon/xenomorph/xeno = owner if(xeno.fortify && xeno.selected_ability != src) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm index c5988f12539d..b262624bfe01 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm @@ -485,6 +485,7 @@ listen_signal = COMSIG_KB_XENO_EVOLVE /datum/action/xeno_action/onclick/evolve/action_activate() + . = ..() var/mob/living/carbon/xenomorph/xeno = owner xeno.do_evolve() diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm index 014cb3d2f24b..843cfeac540b 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm @@ -398,7 +398,7 @@ return if(X.layer == XENO_HIDING_LAYER) //Xeno is currently hiding, unhide him - var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(X, /datum/action/xeno_action/onclick/xenohide) + var/datum/action/xeno_action/onclick/xenohide/hide = get_action(X, /datum/action/xeno_action/onclick/xenohide) if(hide) hide.post_attack() @@ -911,7 +911,7 @@ to_chat(stabbing_xeno, SPAN_XENOWARNING("We must be above ground to do this.")) return - if(!stabbing_xeno.check_state()) + if(!stabbing_xeno.check_state() || stabbing_xeno.cannot_slash) return FALSE var/pre_result = pre_ability_act(stabbing_xeno, targetted_atom) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm index 094732300a1f..3c1d3a04543d 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm @@ -13,7 +13,7 @@ break if(found) - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis = get_xeno_action_by_type(xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis = get_action(xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if(lurker_invis) lurker_invis.invisibility_off() // Full cooldown 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 199df345fb62..4fe0e9107995 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 @@ -87,7 +87,7 @@ if(!X.check_state(1)) return - var/datum/action/xeno_action/activable/cleave/cAction = get_xeno_action_by_type(X, /datum/action/xeno_action/activable/cleave) + var/datum/action/xeno_action/activable/cleave/cAction = get_action(X, /datum/action/xeno_action/activable/cleave) if (!istype(cAction)) return @@ -328,7 +328,7 @@ if(!X.check_state(1)) return - var/datum/action/xeno_action/activable/warden_heal/WH = get_xeno_action_by_type(X, /datum/action/xeno_action/activable/warden_heal) + var/datum/action/xeno_action/activable/warden_heal/WH = get_action(X, /datum/action/xeno_action/activable/warden_heal) if (!istype(WH)) return diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm index 4d3a792af89a..3cbf0769514f 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm @@ -418,8 +418,8 @@ shake_camera(target_carbon, 2, 1) - var/datum/action/xeno_action/activable/prae_abduct/abduct_action = get_xeno_action_by_type(oppressor_user, /datum/action/xeno_action/activable/prae_abduct) - var/datum/action/xeno_action/activable/tail_lash/tail_lash_action = get_xeno_action_by_type(oppressor_user, /datum/action/xeno_action/activable/tail_lash) + var/datum/action/xeno_action/activable/prae_abduct/abduct_action = get_action(oppressor_user, /datum/action/xeno_action/activable/prae_abduct) + var/datum/action/xeno_action/activable/tail_lash/tail_lash_action = get_action(oppressor_user, /datum/action/xeno_action/activable/tail_lash) if(abduct_action && !abduct_action.action_cooldown_check()) abduct_action.reduce_cooldown(5 SECONDS) if(tail_lash_action && !tail_lash_action.action_cooldown_check()) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm index 3ec4855f9c3a..a240c3928a3c 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm @@ -117,7 +117,7 @@ xeno.anchored = FALSE unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate")) - return ..() + return ..() /datum/action/xeno_action/onclick/feralrush/use_ability(atom/A) @@ -149,6 +149,7 @@ predatoralien.recalculate_armor() playsound(predatoralien, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) apply_cooldown() + return ..() /datum/action/xeno_action/onclick/feralrush/proc/remove_rush_effects() @@ -180,7 +181,7 @@ if(!xeno.check_state()) return - var/datum/action/xeno_action/activable/feralfrenzy/guttype = get_xeno_action_by_type(xeno, /datum/action/xeno_action/activable/feralfrenzy) + var/datum/action/xeno_action/activable/feralfrenzy/guttype = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) if(!guttype) return @@ -248,7 +249,7 @@ else predalien_smash.visible_message(SPAN_XENOWARNING("[predalien_smash]'s claws twitch."), SPAN_XENOWARNING("We couldn't grab our target. Wait a moment to try again.")) - return TRUE + return ..() /mob/living/carbon/xenomorph/predalien/stop_pulling() if(isliving(pulling) && smashing) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm index 381acba92a51..6ef111aed66f 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm @@ -401,6 +401,7 @@ remove_personal_ally() if("Clear Personal Allies") clear_personal_allies() + return ..() /datum/action/xeno_action/onclick/manage_hive/proc/add_personal_ally() var/mob/living/carbon/xenomorph/queen/user_xeno = owner diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm index 80cf5c1e37ac..bff59186fd04 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm @@ -51,6 +51,7 @@ // Any strain or caste-specific state should be stored on behavior_delegate objects // which use_ability invocations can modify using typechecks and typecasts where appropriate. /datum/action/xeno_action/proc/use_ability(atom/target) + SHOULD_CALL_PARENT(TRUE) if(!owner) return FALSE track_xeno_ability_stats() @@ -129,10 +130,17 @@ /// A wrapper for use_ability that sends a signal /datum/action/xeno_action/proc/use_ability_wrapper(...) // TODO: make hidden a part of can_use_action - if(!hidden && can_use_action() && use_ability(arglist(args))) + if(!can_use_action()) + SEND_SIGNAL(src, COMSIG_XENO_FAILED_ACTION_USED, owner) + return FALSE + + SEND_SIGNAL(src, COMSIG_XENO_PRE_ACTION_USED, owner) + + if(!hidden && use_ability(arglist(args))) SEND_SIGNAL(src, COMSIG_XENO_ACTION_USED, owner) return TRUE + SEND_SIGNAL(src, COMSIG_XENO_FAILED_ACTION_USED, owner) return FALSE // For actions that do something on each life tick @@ -150,6 +158,7 @@ // For non-activable Xeno actions, this is used to // actually DO the action. /datum/action/xeno_action/activable/action_activate() + . = ..() if(!owner) return if(hidden) @@ -201,6 +210,7 @@ no_cooldown_msg = TRUE /datum/action/xeno_action/onclick/action_activate() + . = ..() use_ability_wrapper(null) // Adds a cooldown to this @@ -362,17 +372,6 @@ deltimer(charge_timer_id) charge_timer_id = TIMER_ID_NULL -// Helper proc to get an action on a target Xeno by type. -// Used to interact with abilities from the outside -/proc/get_xeno_action_by_type(mob/living/carbon/xenomorph/X, typepath) - if (!istype(X)) - CRASH("xeno_action.dm: get_xeno_action_by_type invoked with non-xeno first argument.") - - for (var/datum/action/xeno_action/XA in X.actions) - if (istype(XA, typepath)) - return XA - return null - // Helper proc to check if there is anything blocking the way from mob M to the atom A // Max distance can be supplied to check some of the way instead of the whole way. /proc/check_clear_path_to_target(mob/M, atom/A, smash_windows = TRUE, max_distance = 1000) @@ -420,6 +419,7 @@ return FALSE /datum/action/xeno_action/active_toggle/action_activate() + . = ..() toggle_toggle() /datum/action/xeno_action/active_toggle/life_tick() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm index 24ac22d6bc52..a84b9965f9c3 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm @@ -261,11 +261,11 @@ H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE, bound_xeno.zone_selected) - var/datum/action/xeno_action/activable/pounce/crusher_charge/cAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/crusher_charge) + var/datum/action/xeno_action/activable/pounce/crusher_charge/cAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/crusher_charge) if (!cAction.action_cooldown_check()) cAction.reduce_cooldown(cdr_amount) - var/datum/action/xeno_action/onclick/crusher_shield/sAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/crusher_shield) + var/datum/action/xeno_action/onclick/crusher_shield/sAction = get_action(bound_xeno, /datum/action/xeno_action/onclick/crusher_shield) if (!sAction.action_cooldown_check()) sAction.reduce_cooldown(base_cdr_amount) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm b/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm index 93d40820bf7b..7df87f63cf3a 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm @@ -136,6 +136,6 @@ /datum/behavior_delegate/hellhound_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/xenohide) + var/datum/action/xeno_action/onclick/xenohide/hide = get_action(bound_xeno, /datum/action/xeno_action/onclick/xenohide) if(hide) hide.post_attack() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm index 0ab9e9862b16..1dca7eb23f70 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm @@ -87,7 +87,7 @@ original_damage *= buffed_slash_damage_ratio target_carbon.set_effect(get_xeno_stun_duration(target_carbon, 3), SUPERSLOW) next_slash_buffed = FALSE - var/datum/action/xeno_action/onclick/lurker_assassinate/ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_assassinate) + var/datum/action/xeno_action/onclick/lurker_assassinate/ability = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_assassinate) if (ability) ability.button.icon_state = "template" @@ -114,19 +114,19 @@ /datum/behavior_delegate/lurker_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if (lurker_invis_action) lurker_invis_action.invisibility_off() // Full cooldown /datum/behavior_delegate/lurker_base/proc/decloak_handler(mob/source) SIGNAL_HANDLER - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if(istype(lurker_invis_action)) lurker_invis_action.invisibility_off(0.5) // Partial refund of remaining time /// Implementation for enabling invisibility. /datum/behavior_delegate/lurker_base/proc/on_invisibility() - var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) + var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) if(lurker_pounce_action) lurker_pounce_action.knockdown = TRUE // pounce knocks down lurker_pounce_action.freeze_self = TRUE @@ -137,7 +137,7 @@ /// Implementation for disabling invisibility. /datum/behavior_delegate/lurker_base/proc/on_invisibility_off() - var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) + var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) if(lurker_pounce_action) lurker_pounce_action.knockdown = FALSE // pounce no longer knocks down lurker_pounce_action.freeze_self = FALSE @@ -155,7 +155,7 @@ . += "Invisibility Remaining: [time_left] second\s." return - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if(!lurker_invisibility_action) return @@ -177,7 +177,7 @@ if(!bound_xeno || !bound_xeno.stealth) return - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if(!lurker_invisibility_action) return diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm index 830f4fc5a9cf..b60f150c442d 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm @@ -69,16 +69,19 @@ weed_food_states = list("Predalien_1","Predalien_2","Predalien_3") weed_food_states_flipped = list("Predalien_1","Predalien_2","Predalien_3") var/smashing = FALSE + /// If the pred alert/player notif should happen when the predalien spawns + var/should_announce_spawn = TRUE /mob/living/carbon/xenomorph/predalien/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number) . = ..() - addtimer(CALLBACK(src, PROC_REF(announce_spawn)), 3 SECONDS) - hunter_data.dishonored = TRUE - hunter_data.dishonored_reason = "An abomination upon the honor of us all!" - hunter_data.dishonored_set = src - hud_set_hunter() + if(should_announce_spawn) + addtimer(CALLBACK(src, PROC_REF(announce_spawn)), 3 SECONDS) + hunter_data.dishonored = TRUE + hunter_data.dishonored_reason = "An abomination upon the honor of us all!" + hunter_data.dishonored_set = src + hud_set_hunter() AddComponent(/datum/component/footstep, 4, 25, 11, 2, "alien_footstep_medium") @@ -102,8 +105,20 @@ You must still listen to the queen. /mob/living/carbon/xenomorph/predalien/resist_fire() - ..() - SetKnockDown(0.1 SECONDS) + ..() + SetKnockDown(0.1 SECONDS) + +/mob/living/carbon/xenomorph/predalien/get_examine_text(mob/user) + . = ..() + var/datum/behavior_delegate/predalien_base/predalienkills = behavior_delegate + . += "It has [predalienkills.kills] kills to its name!" + +/mob/living/carbon/xenomorph/predalien/tutorial + should_announce_spawn = FALSE + +/mob/living/carbon/xenomorph/predalien/tutorial/gib(datum/cause_data/cause = create_cause_data("gibbing", src)) + death(cause, gibbed = TRUE) + /datum/behavior_delegate/predalien_base name = "Base Predalien Behavior Delegate" @@ -127,12 +142,3 @@ You must still listen to the queen. original_damage *= 1.5 return original_damage + kills * 2.5 - -/mob/living/carbon/xenomorph/predalien/get_examine_text(mob/user) - . = ..() - var/datum/behavior_delegate/predalien_base/predalienkills = behavior_delegate - var/kills = predalienkills.kills - . += "It has [kills] kills to its name!" - - - diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm b/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm index 6e5da79fbed1..90614e338071 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm @@ -90,7 +90,7 @@ /datum/behavior_delegate/ravager_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/activable/pounce/charge/cAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/charge) + var/datum/action/xeno_action/activable/pounce/charge/cAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/charge) if (!cAction.action_cooldown_check()) cAction.reduce_cooldown(slash_charge_cdr) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm index 8721294173e9..12fdb8d02843 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm @@ -91,6 +91,6 @@ /datum/behavior_delegate/runner_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/xenohide) + var/datum/action/xeno_action/onclick/xenohide/hide = get_action(bound_xeno, /datum/action/xeno_action/onclick/xenohide) if(hide) hide.post_attack() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm b/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm index 01963496f967..3e7416f39fc5 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm @@ -95,7 +95,7 @@ addtimer(CALLBACK(src, PROC_REF(paralyzing_slash), carbon_target), NEURO_TOUCH_DELAY) next_slash_buffed = FALSE if(!next_slash_buffed) - var/datum/action/xeno_action/onclick/paralyzing_slash/ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/paralyzing_slash) + var/datum/action/xeno_action/onclick/paralyzing_slash/ability = get_action(bound_xeno, /datum/action/xeno_action/onclick/paralyzing_slash) if (ability && istype(ability)) ability.button.icon_state = "template" return original_damage diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm index 360b4e8bbdde..eca88761ad9b 100644 --- a/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm +++ b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm @@ -201,7 +201,7 @@ if(xenoSrc.stat == DEAD) return - var/datum/action/xeno_action/A = get_xeno_action_by_type(xenoSrc, /datum/action/xeno_action/activable/queen_give_plasma) + var/datum/action/xeno_action/A = get_action(xenoSrc, /datum/action/xeno_action/activable/queen_give_plasma) A?.use_ability_wrapper(xenoTarget) if("heal") @@ -214,7 +214,7 @@ if(xenoSrc.stat == DEAD) return - var/datum/action/xeno_action/A = get_xeno_action_by_type(xenoSrc, /datum/action/xeno_action/activable/queen_heal) + var/datum/action/xeno_action/A = get_action(xenoSrc, /datum/action/xeno_action/activable/queen_heal) A?.use_ability_wrapper(xenoTarget, TRUE) if("overwatch") diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm index f64bfd6b500f..857a76969354 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm @@ -73,7 +73,7 @@ found = trap break - var/datum/action/xeno_action/activable/boiler_trap/trap_ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/boiler_trap) + var/datum/action/xeno_action/activable/boiler_trap/trap_ability = get_action(bound_xeno, /datum/action/xeno_action/activable/boiler_trap) if (found) target_human.apply_armoured_damage(bonus_damage_shotgun_trapped, ARMOR_BIO, BURN) trap_ability.empowering_charge_counter = trap_ability.empower_charge_max diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm index 5ebafc88eaef..7ceaf2fed75e 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm @@ -276,9 +276,10 @@ addtimer(CALLBACK(xeno.hive, TYPE_PROC_REF(/datum/hive_status, free_respawn), xeno.client), 5 SECONDS) xeno.gib(create_cause_data("sacrificing itself", src)) + return ..() /datum/action/xeno_action/activable/healer_sacrifice/action_activate() - ..() + . = ..() var/mob/living/carbon/xenomorph/xeno = owner if(xeno.selected_ability != src) return diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm index 747463eb5ee5..89737f9ff595 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm @@ -43,19 +43,20 @@ name = "Coerce Resin (100)" action_icon_state = "secrete_resin" ability_name = "coerce resin" - var/last_use = 0 xeno_cooldown = 1 SECONDS thick = FALSE make_message = FALSE no_cooldown_msg = TRUE - var/care_about_adjacency = TRUE build_speed_mod = 2 // the actual building part takes twice as long macro_path = /datum/action/xeno_action/verb/verb_coerce_resin action_type = XENO_ACTION_CLICK + var/last_use = 0 + var/care_about_adjacency = TRUE + /datum/action/xeno_action/activable/secrete_resin/remote/use_ability(atom/target_atom, mods) if(!can_remote_build()) to_chat(owner, SPAN_XENONOTICE("We must be standing on weeds to establish a connection to the resin.")) @@ -70,8 +71,8 @@ var/turf/target_turf = get_turf(target_atom) if(!target_turf) return - - if(!(target_turf in view(10, owner))) + + if(care_about_adjacency && !(target_turf in view(10, owner))) to_chat(owner, SPAN_XENONOTICE("We must have a direct line of sight!")) return diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm index 310db35ab370..01f567398c44 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm @@ -54,7 +54,7 @@ last_combat_time = world.time /datum/behavior_delegate/praetorian_vanguard/proc/next_pierce_spin() - var/datum/action/xeno_action/activable/pierce/pAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pierce) + var/datum/action/xeno_action/activable/pierce/pAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pierce) if (istype(pAction)) pAction.should_spin_instead = TRUE @@ -62,7 +62,7 @@ return /datum/behavior_delegate/praetorian_vanguard/proc/next_pierce_normal() - var/datum/action/xeno_action/activable/pierce/pAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pierce) + var/datum/action/xeno_action/activable/pierce/pAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pierce) if (istype(pAction)) pAction.should_spin_instead = FALSE return @@ -88,6 +88,6 @@ new_shield.explosive_armor_amount = 1.5*XENO_EXPOSIVEARMOR_MOD_VERY_LARGE to_chat(praetorian, SPAN_XENOHIGHDANGER("We feel our defensive shell regenerate! It will block one hit!")) - var/datum/action/xeno_action/activable/cleave/caction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/cleave) + var/datum/action/xeno_action/activable/cleave/caction = get_action(bound_xeno, /datum/action/xeno_action/activable/cleave) if (istype(caction)) caction.buffed = TRUE diff --git a/code/modules/movement/movement.dm b/code/modules/movement/movement.dm index e12a5b439296..8151d2df6707 100644 --- a/code/modules/movement/movement.dm +++ b/code/modules/movement/movement.dm @@ -140,11 +140,11 @@ destination.Entered(src, oldloc) if(destarea && (old_area != destarea || !isturf(oldloc))) destarea.Entered(src, oldloc) - - for(var/atom/movable/AM in destination) - if(AM == src) - continue - AM.Crossed(src, oldloc) + if(!(SEND_SIGNAL(src, COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED) & COMPONENT_IGNORE_CROSS)) + for(var/atom/movable/AM in destination) + if(AM == src) + continue + AM.Crossed(src, oldloc) Moved(oldloc, NONE, TRUE) . = TRUE diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index f7ffbf2875e2..d16f1b6fdd30 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -427,6 +427,10 @@ SEND_SIGNAL(src, COMSIG_GUN_RECALCULATE_ATTACHMENT_BONUSES) /obj/item/weapon/gun/proc/handle_random_attachments() + #ifdef AUTOWIKI // no randomness for my gun pictures, please + return + #endif + var/attachmentchoice var/randchance = random_spawn_chance diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 7d015e4bac8d..e2108364e9ac 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -1054,6 +1054,7 @@ Defined in conflicts.dm of the #defines folder. button.name = name /datum/action/item_action/toggle_zoom_level/action_activate() + . = ..() var/obj/item/weapon/gun/G = holder_item var/obj/item/attachable/scope/variable_zoom/S = G.attachments["rail"] S.toggle_zoom_level() @@ -1674,6 +1675,7 @@ Defined in conflicts.dm of the #defines folder. /datum/action/item_action/vulture /datum/action/item_action/vulture/action_activate() + . = ..() var/obj/item/weapon/gun/gun_holder = holder_item var/obj/item/attachable/vulture_scope/scope = gun_holder.attachments["rail"] if(!istype(scope)) @@ -3515,6 +3517,7 @@ Defined in conflicts.dm of the #defines folder. button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) /datum/action/item_action/bipod/toggle_full_auto_switch/action_activate() + . = ..() var/obj/item/weapon/gun/holder_gun = holder_item var/obj/item/attachable/bipod/attached_bipod = holder_gun.attachments["under"] diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm index b2ec3dea63ce..717914e38eba 100644 --- a/code/modules/projectiles/guns/energy.dm +++ b/code/modules/projectiles/guns/energy.dm @@ -268,6 +268,7 @@ /datum/action/item_action/taser/action_activate() + . = ..() var/obj/item/weapon/gun/energy/taser/taser = holder_item if(!ishuman(owner)) return diff --git a/code/modules/projectiles/guns/lever_action.dm b/code/modules/projectiles/guns/lever_action.dm index a8fb78f72a9c..179ce8d787d0 100644 --- a/code/modules/projectiles/guns/lever_action.dm +++ b/code/modules/projectiles/guns/lever_action.dm @@ -378,7 +378,6 @@ their unique feature is that a direct hit will buff your damage and firerate /obj/item/attachable/bayonet/upp, // Barrel /obj/item/attachable/bayonet, /obj/item/attachable/extended_barrel, - /obj/item/attachable/heavy_barrel, /obj/item/attachable/suppressor, /obj/item/attachable/compensator, /obj/item/attachable/reddot, // Rail @@ -393,9 +392,9 @@ their unique feature is that a direct hit will buff your damage and firerate /obj/item/weapon/gun/lever_action/xm88/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_2) + set_fire_delay(FIRE_DELAY_TIER_2 + FIRE_DELAY_TIER_11) lever_delay = FIRE_DELAY_TIER_3 - accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5 + accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_2 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_8 burst_scatter_mult = 0 diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index ad85220400fb..fbe24434d542 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -557,6 +557,7 @@ //---ability actions--\\ /datum/action/item_action/m46c/action_activate() + . = ..() var/obj/item/weapon/gun/rifle/m46c/protag_gun = holder_item if(!ishuman(owner)) return diff --git a/code/modules/projectiles/guns/shotguns.dm b/code/modules/projectiles/guns/shotguns.dm index b1b3bb3c2ab4..a0bb3f8f852c 100644 --- a/code/modules/projectiles/guns/shotguns.dm +++ b/code/modules/projectiles/guns/shotguns.dm @@ -838,6 +838,7 @@ can cause issues with ammo types getting mixed up during the burst. return TRUE /datum/action/item_action/specialist/twobore_brace/action_activate() + . = ..() var/obj/item/weapon/gun/shotgun/double/twobore/G = holder_item if(G.braced) return diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm index e5c9fff3a126..7c628463b1ef 100644 --- a/code/modules/projectiles/guns/smartgun.dm +++ b/code/modules/projectiles/guns/smartgun.dm @@ -178,6 +178,7 @@ //---ability actions--\\ /datum/action/item_action/smartgun/action_activate() + . = ..() var/obj/item/weapon/gun/smartgun/G = holder_item if(!ishuman(owner)) return @@ -595,6 +596,7 @@ // ID lock action \\ /datum/action/item_action/co_sg/action_activate() + . = ..() var/obj/item/weapon/gun/smartgun/co/protag_gun = holder_item if(!ishuman(owner)) return diff --git a/code/modules/projectiles/guns/smgs.dm b/code/modules/projectiles/guns/smgs.dm index 69fd5d968750..466a09612c54 100644 --- a/code/modules/projectiles/guns/smgs.dm +++ b/code/modules/projectiles/guns/smgs.dm @@ -168,7 +168,8 @@ /obj/item/attachable/lasersight, // Under /obj/item/attachable/gyro, /obj/item/attachable/bipod, - /obj/item/attachable/burstfire_assembly + /obj/item/attachable/burstfire_assembly, + /obj/item/attachable/attached_gun/grenade/m203, ) flags_gun_features = GUN_CAN_POINTBLANK|GUN_ANTIQUE @@ -192,6 +193,13 @@ damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_4 recoil_unwielded = RECOIL_AMOUNT_TIER_5 +/obj/item/weapon/gun/smg/mp5/Initialize(mapload, spawn_empty) + . = ..() + if(prob(10)) + var/obj/item/attachable/attached_gun/grenade/m203/UGL = new(src) + UGL.Attach(src) + update_attachable(UGL.slot) + //------------------------------------------------------- //MP27, based on the MP27, based on the M7. diff --git a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm index e2643c580a16..06ac5428bfc6 100644 --- a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm +++ b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm @@ -222,6 +222,7 @@ update_icon() /datum/action/item_action/toggle_firing_level/action_activate() + . = ..() var/obj/item/weapon/gun/launcher/grenade/G = holder_item if(!ishuman(owner)) return diff --git a/code/modules/projectiles/guns/specialist/sniper.dm b/code/modules/projectiles/guns/specialist/sniper.dm index b40477a8a460..b400350e415b 100644 --- a/code/modules/projectiles/guns/specialist/sniper.dm +++ b/code/modules/projectiles/guns/specialist/sniper.dm @@ -62,6 +62,7 @@ ACTIONS SPECIALSIT SNIPER CAN TAKE */ /datum/action/item_action/specialist/aimed_shot/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/H = owner @@ -276,6 +277,7 @@ return TRUE /datum/action/item_action/specialist/toggle_laser/action_activate() + . = ..() var/obj/item/weapon/gun/rifle/sniper/sniper_rifle = holder_item if(owner.get_held_item() != sniper_rifle) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index 0e335aa81da3..d91e2ca47c1a 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -841,8 +841,8 @@ //mobs use get_projectile_hit_chance instead of get_projectile_hit_boolean /mob/living/proc/get_projectile_hit_chance(obj/projectile/P) - if((body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_NESTED)) && src != P.original) - return FALSE // Snowflake check for xeno nests, because we want bullets to fly through even though they're standing in it + if((body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_NO_STRAY)) && src != P.original) + return FALSE var/ammo_flags = P.ammo.flags_ammo_behavior | P.projectile_override_flags if(ammo_flags & AMMO_XENO) if((status_flags & XENO_HOST) && HAS_TRAIT(src, TRAIT_NESTED)) diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm index 08a35b83071d..a28f65ce475d 100644 --- a/code/modules/shuttle/computers/dropship_computer.dm +++ b/code/modules/shuttle/computers/dropship_computer.dm @@ -314,7 +314,7 @@ var/original_evilution = hive.evolution_bonus hive.override_evilution(XENO_HIJACK_EVILUTION_BUFF, TRUE) if(hive.living_xeno_queen) - var/datum/action/xeno_action/onclick/grow_ovipositor/ovi_ability = get_xeno_action_by_type(hive.living_xeno_queen, /datum/action/xeno_action/onclick/grow_ovipositor) + var/datum/action/xeno_action/onclick/grow_ovipositor/ovi_ability = get_action(hive.living_xeno_queen, /datum/action/xeno_action/onclick/grow_ovipositor) ovi_ability.reduce_cooldown(ovi_ability.xeno_cooldown) addtimer(CALLBACK(hive, TYPE_PROC_REF(/datum/hive_status, override_evilution), original_evilution, FALSE), XENO_HIJACK_EVILUTION_TIME) diff --git a/code/modules/surgery/surgery_toggle.dm b/code/modules/surgery/surgery_toggle.dm index b9ca3ca93311..973d1c5b682f 100644 --- a/code/modules/surgery/surgery_toggle.dm +++ b/code/modules/surgery/surgery_toggle.dm @@ -18,6 +18,7 @@ // Called when the action is clicked on. /datum/action/surgery_toggle/action_activate() + . = ..() if(owner.mob_flags & SURGERY_MODE_ON) button.icon_state = "template" owner.mob_flags &= ~SURGERY_MODE_ON diff --git a/colonialmarines.dme b/colonialmarines.dme index 552fca36f459..3d6458e51cc8 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -698,6 +698,7 @@ #include "code\datums\tutorial\ss13\basic_ss13.dm" #include "code\datums\tutorial\ss13\intents.dm" #include "code\datums\tutorial\xenomorph\_xenomorph.dm" +#include "code\datums\tutorial\xenomorph\abomination.dm" #include "code\datums\tutorial\xenomorph\xenomorph_basic.dm" #include "code\datums\weather\weather_event.dm" #include "code\datums\weather\weather_map_holder.dm" @@ -1316,6 +1317,7 @@ #include "code\game\objects\structures\prop_mech.dm" #include "code\game\objects\structures\props.dm" #include "code\game\objects\structures\reagent_dispensers.dm" +#include "code\game\objects\structures\roof.dm" #include "code\game\objects\structures\safe.dm" #include "code\game\objects\structures\shower.dm" #include "code\game\objects\structures\signs.dm" diff --git a/html/changelogs/AutoChangeLog-pr-6390.yml b/html/changelogs/AutoChangeLog-pr-6390.yml new file mode 100644 index 000000000000..8b085e59afa7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-6390.yml @@ -0,0 +1,4 @@ +author: "realforest2001" +delete-after: True +changes: + - bugfix: "Fixes riflemen spec_kits not being usable by riflemen." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-6442.yml b/html/changelogs/AutoChangeLog-pr-6442.yml new file mode 100644 index 000000000000..a39369fd8bf9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-6442.yml @@ -0,0 +1,4 @@ +author: "Zonespace27" +delete-after: True +changes: + - rscadd: "Added a tutorial for xenomorph Abominations. You must complete the tutorial before being able to roll for Abomination." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-6492.yml b/html/changelogs/AutoChangeLog-pr-6492.yml new file mode 100644 index 000000000000..c0f3ce2e4078 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-6492.yml @@ -0,0 +1,4 @@ +author: "VileBeggar" +delete-after: True +changes: + - rscadd: "The CIC armoury now contains a plantable flag of the United Americas." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-6609.yml b/html/changelogs/AutoChangeLog-pr-6609.yml new file mode 100644 index 000000000000..0d1fc9d1f7e0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-6609.yml @@ -0,0 +1,4 @@ +author: "ihatethisengine" +delete-after: True +changes: + - balance: "being mid-paradrop won't trigger traps, fire and stray bullets before you land." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-6614.yml b/html/changelogs/AutoChangeLog-pr-6614.yml new file mode 100644 index 000000000000..453f6be7ea55 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-6614.yml @@ -0,0 +1,4 @@ +author: "AndroBetel" +delete-after: True +changes: + - rscadd: "MP5 has 10% chance to spawn with M203 attached." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-6677.yml b/html/changelogs/AutoChangeLog-pr-6677.yml new file mode 100644 index 000000000000..1c2d6ed8008e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-6677.yml @@ -0,0 +1,4 @@ +author: "harryob" +delete-after: True +changes: + - bugfix: "queens can remote build again" \ No newline at end of file diff --git a/html/changelogs/archive/2024-07.yml b/html/changelogs/archive/2024-07.yml index c151c48934c9..ded0796fb609 100644 --- a/html/changelogs/archive/2024-07.yml +++ b/html/changelogs/archive/2024-07.yml @@ -124,3 +124,21 @@ Kivts: - ui: The Company spent some money to upgrade the chemical simulator to work on the TGUI, Including a few prepaid features. +2024-07-14: + kiVts: + - bugfix: Denied request on req is working again +2024-07-15: + cuberound: + - rscadd: roof structures added, can be also used for lattices and billboards, go + transparent when you are near them +2024-07-16: + Git-Nivrak: + - rscdel: Mortar shells no longer blow up their payload, instead they will create + a small fixed explosion. + Nomoresolvalou: + - rscadd: Added neckties and stethoscope to the synthetic snowflake vendor + Steelpoint: + - balance: The XM88 now deals higher damage per-bullet at the cost of a slightly + lower rate of fire and accuracy. This is identical to as if it had a barrel + charger attached to it. + - balance: Per the above, the barrel charger is no longer compatible with the XM88. diff --git a/icons/mob/humans/onmob/items_lefthand_64.dmi b/icons/mob/humans/onmob/items_lefthand_64.dmi index 057d7f1cad66..d005d8c5f049 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_64.dmi and b/icons/mob/humans/onmob/items_lefthand_64.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_64.dmi b/icons/mob/humans/onmob/items_righthand_64.dmi index 599ef5935f2e..72335e39bfff 100644 Binary files a/icons/mob/humans/onmob/items_righthand_64.dmi and b/icons/mob/humans/onmob/items_righthand_64.dmi differ diff --git a/icons/obj/structures/plantable_flag.dmi b/icons/obj/structures/plantable_flag.dmi new file mode 100644 index 000000000000..c92311529be3 Binary files /dev/null and b/icons/obj/structures/plantable_flag.dmi differ diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index b5c2ad6ebb2e..1f69b4f80ffc 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -15,9 +15,24 @@ }, /turf/open/space, /area/space) +"aac" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"aad" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"aae" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"aaf" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) "aag" = ( /turf/open/floor/almayer_hull, /area/space) +"aah" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) "aak" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -31,51 +46,114 @@ }, /turf/open/space/basic, /area/space) -"aao" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"aau" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/pilotbunks) -"aaB" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer{ - density = 0; - pixel_x = -32 +"aam" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/obj/structure/machinery/light{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aaq" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/clothing/head/helmet/marine/tech{ + layer = 4.1; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ dir = 8; - pixel_x = -32; - alpha = 0 + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/mob/living/simple_animal/mouse/brown{ + name = "rat" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"aau" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/pilotbunks) "aaC" = ( /obj/structure/lattice, /turf/open/space/basic, /area/space) -"aaK" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ - cell_type = /obj/item/cell/hyper; - dir = 1 +"aaE" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"aaF" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aaH" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"aaP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "aaY" = ( /obj/structure/lattice, /turf/open/space, /area/space) -"abb" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" +"aba" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-3"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/powered) "abf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -104,9 +182,6 @@ "abs" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) -"abv" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_midship_hallway) "abw" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -120,6 +195,24 @@ "abE" = ( /turf/closed/wall/almayer, /area/almayer/living/basketball) +"abF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"abG" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) "abH" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -136,9 +229,60 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"abQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"abR" = ( +/obj/item/tank/phoron, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"abS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"abT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"abU" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"acc" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"acd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) "acf" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) +"aci" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "acj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -173,6 +317,10 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"ack" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) "acl" = ( /turf/open/floor/wood/ship, /area/almayer/living/basketball) @@ -234,6 +382,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"aco" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"acp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) "acq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -247,23 +406,12 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"act" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_m_s) +"acs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/obj/structure/machinery/light/built, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) "acu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -279,15 +427,24 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"acw" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) "acx" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/north2) +"acy" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"acz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acA" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "acI" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -314,34 +471,87 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"acM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"acN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southwest, +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -29 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"acU" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) "acW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"adc" = ( +"acX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acY" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/effect/landmark/map_item, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/living/offices/flight) +"add" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "ade" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"adh" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) "adj" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -356,53 +566,65 @@ "adq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/north1) +"adr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "adu" = ( /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"adx" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"adz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +"adC" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/manipulator/nano{ + pixel_y = -9 }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 +/obj/item/stock_parts/scanning_module/adv{ + pixel_x = 4; + pixel_y = 15 }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"adD" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"adB" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) +/area/almayer/living/basketball) +"adF" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/basketball) "adG" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/starboard_missiles) -"adK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) "adO" = ( /turf/closed/wall/almayer, /area/almayer/engineering/starboard_atmos) -"adT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"adP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"adR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "\improper Pilot's Office"; + req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) "aea" = ( /obj/structure/machinery/light{ dir = 1 @@ -410,36 +632,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"aec" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"aed" = ( +/obj/structure/machinery/scoreboard_button{ + id = "basketball"; + name = "Scoreboard Reset Button"; + pixel_x = -20 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"aee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) "aef" = ( /turf/open/floor/almayer, /area/almayer/living/basketball) +"aeh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aei" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) "aej" = ( /turf/closed/wall/almayer, /area/almayer/living/officer_study) "ael" = ( /turf/closed/wall/almayer, /area/almayer/living/cafeteria_officer) -"aem" = ( -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"aen" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = 12; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "aep" = ( /turf/closed/wall/almayer, /area/almayer/engineering/airmix) @@ -459,13 +688,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) +"aez" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "aeA" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"aeB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aeC" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "aeE" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/starboard_missiles) +"aeG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/basketball) "aeH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -474,41 +725,90 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/basketball) +"aeI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "aeJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) +"aeK" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"aeL" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aeM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "aeN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"aeV" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 +"aeO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeP" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/structure/machinery/computer/emails, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeT" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "aeW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, @@ -520,45 +820,50 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"afg" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"aeY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"afj" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"aeZ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"afa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"afb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter{ + dir = 4; + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 + }, +/obj/item/device/binoculars, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"afj" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/engine, /area/almayer/engineering/airmix) "afk" = ( /turf/open/floor/engine, /area/almayer/engineering/airmix) -"afl" = ( -/obj/item/bedsheet/yellow, -/obj/structure/bed, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, -/area/almayer/command/aist_office) -"afo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/captain_mess) -"afq" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) +"afm" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"afr" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) "afs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -571,9 +876,39 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"afE" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) "afF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) +"afG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"afH" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afJ" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) "afK" = ( /obj/structure/bed/chair, /obj/structure/machinery/status_display{ @@ -581,29 +916,98 @@ }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) +"afL" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"afM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"afN" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"afO" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"afP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) "afQ" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) -"afU" = ( -/obj/structure/machinery/power/apc/almayer{ +"afT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_missiles) +"afX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"afZ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"afV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/area/almayer/command/cichallway) +"agb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bloodsoup{ + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "agc" = ( /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"agf" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) "agj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/commandbunks) +"agq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) "agr" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -611,9 +1015,33 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/almayer, /area/almayer/living/chapel) +"ags" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) "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/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "agA" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -621,24 +1049,30 @@ }, /turf/open/floor/plating, /area/almayer/living/basketball) -"agE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +"agH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar/tarbacks, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = -4; + pixel_y = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"agG" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 +/area/almayer/living/grunt_rnr) +"agI" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/officer_study) +"agK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) +/turf/open/floor/almayer/silver/north, +/area/almayer/living/officer_study) "agM" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -650,33 +1084,58 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"ahb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) +"agO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"agQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"agT" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"agV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"agY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) "ahc" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/wy_mre, /obj/item/storage/box/wy_mre, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) +"ahe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"ahf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) "ahh" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/starboard_atmos) +"ahi" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) "aho" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/offices/flight) -"ahs" = ( -/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/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) "ahy" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -685,6 +1144,26 @@ }, /turf/closed/wall/almayer, /area/almayer/living/starboard_garden) +"ahz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ahG" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/starboard_atmos) "ahJ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -706,17 +1185,72 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/chapel) -"aif" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +"ahS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"ahV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"aia" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/officer_study) +"aic" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aid" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Study" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"aie" = ( +/obj/effect/landmark/railgun_computer, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aig" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aih" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Cafeteria" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"aij" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"ain" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) "aiq" = ( /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) @@ -726,16 +1260,41 @@ }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) +"ais" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/offices/flight) "aiw" = ( /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) -"aiO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"aiH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"aiJ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aiQ" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/command/combat_correspondent) +"aiR" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) "aiW" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -759,11 +1318,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ajg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) "ajj" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) @@ -776,6 +1330,16 @@ "ajl" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/upper_medical) +"ajm" = ( +/obj/structure/closet/secure_closet/securecom, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ajs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "aju" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -788,9 +1352,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"ajx" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/port_missiles) +"ajA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) "ajD" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -811,11 +1376,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ajL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) +"ajI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "ajM" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -824,15 +1390,6 @@ }, /turf/open/floor/plating, /area/almayer/living/offices/flight) -"ajP" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) "ajT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -845,13 +1402,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"aki" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"ajY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"ajZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"aka" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"akb" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"akc" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"akf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"akh" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"akn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/hallways/lower/vehiclehangar) "ako" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -867,6 +1448,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) +"aku" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilottex{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"akv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/device/camera{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"akw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"akx" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) "akz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -874,23 +1489,64 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"akA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) "akC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/starboard_missiles) -"akI" = ( +"akE" = ( +/obj/structure/machinery/door_control{ + id = "or2privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"akL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "31" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"akQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"akV" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 1; + c_tag = "AI - Reception Lobby"; + autoname = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ald" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"alf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"akK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"akN" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "alg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/bed/chair{ @@ -902,18 +1558,6 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_s) -"ali" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"alj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) "alk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -926,62 +1570,60 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"als" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"alp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"alt" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/tool/shovel/spade, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"alw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" }, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "aly" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/starboard_missiles) -"alI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) +"alD" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"alE" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) "alL" = ( /turf/closed/wall/almayer, /area/almayer/command/telecomms) -"alN" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) "alO" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering) +"alR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "alU" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/navigation) +"alW" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "alX" = ( /turf/open/floor/almayer, /area/almayer/command/cic) +"alZ" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/cic) "amb" = ( /obj/structure/window/reinforced{ dir = 8; @@ -996,25 +1638,54 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) +"amd" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "amg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"amj" = ( +"amh" = ( /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"amn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, +/area/almayer/living/pilotbunks) +"amk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"amo" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"amv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/almayer/hallways/hangar) +"ams" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/basketball) +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/lower/s_bow) +"amw" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) "amx" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) @@ -1022,13 +1693,16 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/starboard_missiles) -"amD" = ( +"amA" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"amE" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, /obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "amF" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -1039,6 +1713,12 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"amI" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) "amM" = ( /obj/structure/window/framed/almayer, /obj/structure/curtain/open/shower{ @@ -1049,18 +1729,30 @@ }, /turf/open/floor/plating, /area/almayer/engineering/port_atmos) -"amP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"amV" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) +"amX" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) "amY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"ana" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "and" = ( /obj/structure/window/reinforced{ dir = 4; @@ -1075,26 +1767,90 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"ann" = ( +"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/plate, +/area/almayer/maint/hull/upper/u_a_p) +"anm" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"anp" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"anq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"anr" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"ans" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"anw" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 1"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) -"anF" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/lifeboat) -"anH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"anz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"anK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "anM" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -1103,11 +1859,28 @@ /obj/effect/spawner/random/tool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"anO" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) "anP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /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/test_floor4, +/area/almayer/living/offices/flight) +"anV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "anW" = ( /obj/structure/machinery/light{ dir = 8 @@ -1129,16 +1902,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"aoh" = ( +/obj/structure/morgue/crematorium, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) "aoi" = ( /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"aox" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 +"aom" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aop" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aoq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aor" = ( +/obj/structure/curtain/medical, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aos" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) +"aov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) "aoy" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -1146,12 +1947,40 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"aoz" = ( +/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/no_build, +/area/almayer/hallways/upper/fore_hallway) +"aoA" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) "aoC" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"aoI" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "aoJ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -1166,10 +1995,41 @@ dir = 1 }, /area/almayer/medical/containment/cell) +"aoK" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_display/research_cell{ + dir = 1; + id = "Containment Cell 5"; + name = "Cell 5 Control"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 5"; + name = "Containment Lockdown"; + pixel_x = -8; + pixel_y = -3; + req_one_access_txt = "19;28" + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "aoL" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"aoM" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) "aoN" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -1183,6 +2043,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) +"aoT" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aoW" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aoX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) "apa" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -1190,16 +2072,15 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"apc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"ape" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"aph" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"apg" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "api" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -1214,33 +2095,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"apm" = ( +"apo" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"apq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"aps" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"apt" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"apz" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ - dir = 1; - id = "tc03"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = -23 + id = "northcheckpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"app" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"apB" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = -4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"apD" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha{ +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"apE" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"apL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"apR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"apS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 15 + }, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 22 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) "apU" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -1255,64 +2195,140 @@ dir = 8 }, /area/almayer/medical/containment/cell) +"apW" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apX" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apY" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apZ" = ( +/obj/structure/machinery/telecomms/receiver/preset_left, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqa" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqb" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "aqf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"aqi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +"aqg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aqh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"aqm" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "aqn" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) +"aqo" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/offices) +"aqp" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"aqq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) "aqs" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"aqt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) "aqu" = ( /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"aqx" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +"aqw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aqy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aqz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "aqB" = ( /obj/structure/blocker/fuelpump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"aqF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cic) +"aqG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) "aqH" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -1320,9 +2336,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) +"aqI" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"aqJ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"aqK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/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/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"aqN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aqP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 1"; + locked = 1; + name = "\improper Containment Cell 1" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 1"; + name = "\improper Containment Cell 1"; + unacidable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"aqS" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "aqU" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/airoom) +"aqV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "aqY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -1334,46 +2408,150 @@ "arb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"arx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" +"arg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc/almayer{ + cell_type = /obj/item/cell/hyper; + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ari" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/storage/pouch/tools, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ark" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arl" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"arm" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"arp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"arq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"arr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ars" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ary" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + id = "OTStore"; + name = "Shutters"; + pixel_y = -24; access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" + req_one_access_txt = "35" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"arE" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"arz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"arA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"arF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arG" = ( +/obj/structure/machinery/power/apc/almayer/hardened{ + dir = 1 }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"arK" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - layer = 3.3; - pixel_y = 4 + name = "ship-grade camera" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"arP" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) "arT" = ( /obj/structure/target{ name = "punching bag" @@ -1383,22 +2561,38 @@ "arV" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"arW" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" +"arX" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"asc" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"ase" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"asf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"asb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/maint{ - pixel_y = -26 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"asm" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "asn" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -1407,6 +2601,27 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"asr" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"asu" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"asw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) "asA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -1417,6 +2632,28 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) +"asH" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asI" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asJ" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asK" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asL" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "asM" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down4"; @@ -1425,13 +2662,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) +"asN" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"asR" = ( +/turf/open/floor/almayer/orange, +/area/almayer/command/cic) "asT" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"asW" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) +"asU" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"asX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) "asY" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -1441,6 +2693,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"asZ" = ( +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) "ata" = ( /obj/structure/machinery/light{ dir = 8 @@ -1462,10 +2721,27 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/medical_science) +"atc" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"atf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "atg" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"atk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) "atm" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) @@ -1474,6 +2750,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) +"ato" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "atp" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -1490,27 +2770,102 @@ "atr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"atD" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 +"ats" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"att" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/clothing/glasses/science{ - pixel_x = 1; - pixel_y = 8 +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"atu" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"atF" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/vehiclehangar) -"atL" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/lifeboat_pumps/north2) +"atv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"atx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"aty" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"atz" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"atH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"atJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"atK" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"atM" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"atN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/port_umbilical) +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"atO" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"atP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "atS" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -1531,10 +2886,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) +"auc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "auf" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/closed/wall/almayer/aicore/hull, /area/almayer/command/airoom) +"aui" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"auj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aum" = ( +/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/test_floor4, +/area/almayer/living/briefing) "auu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1542,9 +2924,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"auv" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) "auy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -1559,6 +2938,23 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"auB" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"auH" = ( +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) "auK" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -1568,13 +2964,65 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"auL" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"auO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) "auQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/cic) +"auS" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"auT" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/command/cic) +"auU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"auV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) "auW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_point_defense) +"auX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"auZ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "ava" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -1602,25 +3050,32 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"avi" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) "avo" = ( /turf/closed/wall/almayer/outer, /area/almayer/powered/agent) -"avr" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"avp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) +/area/almayer/hallways/lower/port_umbilical) "avs" = ( /turf/closed/wall/biodome, /area/almayer/powered/agent) +"avu" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"avv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) "avw" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -1631,6 +3086,70 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"avB" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/navigation) +"avC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"avF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"avG" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"avH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"avJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-5"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"avN" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avO" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avP" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avQ" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avR" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/cic) "avU" = ( /obj/effect/landmark/start/crew_chief, /turf/open/floor/plating/plating_catwalk, @@ -1642,6 +3161,24 @@ /obj/structure/bed/chair, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"avW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/storage/box/masks{ + pixel_x = 5 + }, +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 + }, +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) "avY" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) @@ -1652,19 +3189,63 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"awa" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "awd" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/pilotbunks) "awe" = ( /turf/open/floor/plating/almayer, /area/almayer/living/starboard_garden) -"aws" = ( +"awi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"awj" = ( +/obj/structure/machinery/photocopier, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"awk" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"awm" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/cic) +"awn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"awp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Research Armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"awq" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/living/pilotbunks) +"awt" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) "awu" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1676,6 +3257,13 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) +"awv" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"awx" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/command/telecomms) "awy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1685,19 +3273,88 @@ "awz" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cichallway) +"awA" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + name = "weapon targetting computer" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"awB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "awC" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/port_missiles) +"awD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/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) -"awI" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/blend, +"awG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"awH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/command/cic) +"awQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/device/multitool{ + pixel_x = 8 + }, +/obj/item/tool/screwdriver{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"awR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "awS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -1709,25 +3366,27 @@ }, /turf/open/floor/plating, /area/almayer/living/captain_mess) -"awT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "awW" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"awY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"awX" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"awZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_x = 8; + pixel_y = 12 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"axa" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "axc" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -1738,33 +3397,149 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"axe" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"axk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"axl" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = -27; + req_one_access_txt = "4;28" + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"axm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"axn" = ( +/obj/structure/sign/safety/rewire{ + layer = 2.4; + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "axo" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/telecomms) -"axv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"axp" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cic) +"axu" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"axw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"axx" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"axz" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 +/area/almayer/engineering/upper_engineering) +"axy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axA" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/bed/chair{ +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axD" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"axE" = ( +/obj/structure/closet/toolcloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"axI" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/basketball) -"axC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - dir = 1; - name = "\improper Engineering Bunks" +/obj/structure/surface/rack, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "axR" = ( /obj/structure/machinery/shower, /obj/structure/window/reinforced/tinted{ @@ -1775,15 +3550,66 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"axZ" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" +"axV" = ( +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axW" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axX" = ( +/obj/structure/machinery/telecomms/server/presets/squads, +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 + }, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"aya" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) +"ayb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ayc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"aye" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ayi" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"ayd" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/squads/req) +/area/almayer/command/lifeboat) "ayj" = ( /obj/effect/landmark/start/cargo, /turf/open/floor/plating/plating_catwalk, @@ -1794,6 +3620,45 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"ayn" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ayo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ayq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"ayr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17; + pixel_y = 8 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ays" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) "ayu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -1801,6 +3666,45 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cic) +"ayv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"ayw" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/navigation) +"ayz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/cic) +"ayD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ayI" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/clothing/glasses/welding{ + pixel_y = 6 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "ayK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -1816,68 +3720,248 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"azm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"ayM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"azs" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods{ - amount = 40 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"azw" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - req_one_access_txt = "3;19;22" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"ayQ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ayR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ayV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ayW" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ayX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/structure/sign/catclock{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"ayZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"azc" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"azd" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/command/telecomms) +"aze" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"azg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"azh" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azi" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"azk" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/offices/flight) +"azo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"azp" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"azq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azs" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"azt" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"azy" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"azA" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"azC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"azD" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"azJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + req_one_access_txt = "3;19;22" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) "azL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"azP" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"azS" = ( -/turf/closed/wall/almayer/aicore/white/hull, -/area/almayer/command/aist_office) +"azU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"azV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Normandy Remote Control Console"; + shuttleId = "dropship_normandy" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "azW" = ( /obj/structure/machinery/door/window/westright{ dir = 2 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) +"azX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Alamo Remote Control Console"; + shuttleId = "dropship_alamo" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "azZ" = ( /obj/structure/machinery/keycard_auth, /obj/structure/surface/table/reinforced/black, @@ -1903,6 +3987,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) +"aAj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) "aAn" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -1910,16 +4007,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"aAp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "aAq" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -1930,6 +4017,58 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"aAr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/rack, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aAx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/east, +/area/almayer/command/aist_office) +"aAy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aAA" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/cic) +"aAB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/groundside_operations{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "aAF" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -1938,6 +4077,16 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) +"aAG" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) "aAK" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -1948,6 +4097,15 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"aAL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) "aAP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -1966,10 +4124,50 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"aAX" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/northwest, +"aAT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) +"aAU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aAZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBd" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) "aBe" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -1984,6 +4182,23 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"aBf" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "Telecommunications"; + req_access_txt = "6" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) "aBh" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1991,6 +4206,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) +"aBi" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "aBk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -2006,6 +4232,15 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"aBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "aBn" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -2042,6 +4277,12 @@ }, /turf/open/floor/plating/almayer, /area/almayer/engineering/upper_engineering) +"aBs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) "aBt" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, @@ -2051,16 +4292,48 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"aBu" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"aBw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) "aBx" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"aBz" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/folder/black_random, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aBA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"aBD" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) "aBE" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"aBG" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/lifeboat) "aBH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -2078,10 +4351,14 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"aBL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +"aBP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = list(36) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/synthcloset) "aBR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, @@ -2089,6 +4366,61 @@ /obj/item/device/whistle, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) +"aBS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cic) +"aBW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"aBX" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aBZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4; + layer = 2.99; + pixel_y = 4 + }, +/obj/structure/machinery/computer/almayer_control{ + dir = 4; + layer = 2.99; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCa" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "aCd" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -2109,17 +4441,44 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cic) -"aCm" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"aCr" = ( +"aCk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"aCo" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/morgue) +"aCp" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"aCt" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/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/green/east, +/area/almayer/hallways/lower/port_midship_hallway) "aCw" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, @@ -2128,43 +4487,175 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"aCO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 8; - pixel_y = -12 +"aCC" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"aCD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_x = -16 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Alamo Remote Control Console"; - pixel_y = 12; - shuttleId = "dropship_alamo" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"aCR" = ( +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_y = 28; + req_one_access_txt = "28" }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"aCY" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"aCX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"aDp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aCZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/computerlab) +"aDa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aDb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer/orangecorner, +/area/almayer/command/telecomms) +"aDe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"aDh" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"aDi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aDj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"aDm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDn" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"aDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aDt" = ( /obj/structure/machinery/cm_vending/clothing/military_police_warden, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/warden_office) +"aDv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aDB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDD" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) "aDE" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -2172,40 +4663,182 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"aDI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"aDH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aDK" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_y = 1 + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"aDO" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) "aDQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/lifeboat) -"aEb" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" +"aDS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"aDU" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"aDX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"aEL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/area/almayer/command/lifeboat) +"aEe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"aEf" = ( +/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 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) +/area/almayer/hallways/lower/starboard_umbilical) +"aEg" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/command/lifeboat) +"aEi" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"aEj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"aEm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aEo" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"aEr" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"aEA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"aEB" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"aEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aED" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"aEG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) "aEM" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/emails, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) +"aEN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"aEO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"aEQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "aES" = ( /turf/closed/wall/almayer, /area/almayer/living/bridgebunks) @@ -2215,16 +4848,32 @@ "aEW" = ( /turf/closed/wall/almayer, /area/almayer/living/numbertwobunks) -"aFb" = ( -/obj/structure/platform{ - dir = 4 +"aEZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 13 }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/obj/item/tool/hand_labeler{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"aFa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) "aFe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2235,6 +4884,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"aFf" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "aFg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/briefcase, @@ -2246,51 +4900,189 @@ }, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) +"aFh" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "aFi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"aFk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +"aFl" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aFm" = ( +/obj/structure/surface/table/almayer, +/obj/item/shard, +/obj/item/tool/extinguisher, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"aFS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFr" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"aFu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver, /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 1; name = "ship-grade camera" }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFA" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"aFB" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"aFD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aFT" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"aFG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"aGf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"aFI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFJ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"aGa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"aGb" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"aGg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_four) +"aGj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"aGk" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"aGm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"aGn" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"aGp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aGq" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cic) "aGr" = ( /turf/open/floor/almayer, /area/almayer/living/bridgebunks) @@ -2302,37 +5094,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"aGt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"aGw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"aGv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "aGz" = ( /obj/structure/window/framed/almayer, /obj/structure/curtain/open/shower{ @@ -2352,35 +5120,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"aGF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"aGH" = ( +/obj/structure/machinery/computer/ordercomp, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/command/cic) "aGN" = ( /turf/open/floor/almayer, /area/almayer/command/computerlab) -"aGT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"aGP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"aGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"aGV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aGW" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"aGX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"aGY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aGZ" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/numbertwobunks) +"aHa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/morgue) "aHe" = ( /turf/closed/wall/almayer, /area/almayer/command/lifeboat) -"aHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) "aHl" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine, @@ -2396,6 +5193,13 @@ "aHq" = ( /turf/closed/wall/almayer, /area/almayer/command/computerlab) +"aHr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "aHs" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -2403,12 +5207,82 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"aHP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"aHu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aHM" = ( +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"aHR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) "aHS" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -2416,6 +5290,28 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) +"aHU" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aHX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"aHY" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) "aHZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2431,6 +5327,19 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"aIh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"aIl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "aIo" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2449,72 +5358,303 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"aIs" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"aIr" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aIv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aIw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) "aIx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"aIz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) +"aIy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) "aIB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"aJo" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"aJu" = ( -/obj/structure/bed/chair/comfy/charlie{ +"aIC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/transmitter/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"aID" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"aJD" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aIP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"aIQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper XO's Quarters"; + req_access = null; + req_access_txt = "1" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"aIT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aIU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aIV" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"aIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"aJH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/living/tankerbunks) +"aIY" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"aJc" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Commanding Officer's Mess" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"aJf" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aJg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"aJh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"aJi" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/meson, /turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/engineering/upper_engineering) +"aJj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJn" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment) +"aJp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/command/cichallway) +"aJq" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aJw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aJG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cic) +"aJI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) "aJJ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/bed/chair, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"aJL" = ( -/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/cargo, -/area/almayer/engineering/lower/engine_core) +"aJU" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "aKa" = ( /turf/open/floor/almayer, /area/almayer/command/cichallway) +"aKf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) "aKg" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"aKi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) "aKk" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"aKn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aKo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) "aKq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -2563,24 +5703,78 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) +"aKu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) "aKv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"aKx" = ( +"aKy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aKz" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aKE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aKF" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"aKG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"aKH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"aKE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"aKN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/accessory/red, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/clothing/suit/storage/webbing, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aKO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "aKQ" = ( /turf/closed/wall/almayer/outer, @@ -2588,43 +5782,72 @@ "aKR" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/starboard_point_defense) -"aLg" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 8 +"aKS" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aKU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aKV" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/tool/pen{ - pixel_y = -2 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aLc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/dropper{ - pixel_x = -1; - pixel_y = 9 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/obj/structure/machinery/biohazard_lockdown{ +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"aLp" = ( +/obj/structure/sign/safety/cryo{ pixel_x = 8; - pixel_y = 10 + pixel_y = -26 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"aLn" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"aLx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"aLq" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) +/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/parachute{ + pixel_y = 8 + }, +/obj/item/parachute, +/obj/item/parachute{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/hallways/lower/repair_bay) "aLE" = ( /obj/docking_port/stationary/emergency_response/external/hangar_starboard{ dwidth = 8 @@ -2646,72 +5869,143 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"aLS" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) "aLT" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha) -"aLU" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) "aLW" = ( /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"aMc" = ( -/obj/structure/surface/rack, -/obj/item/storage/beer_pack, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"aMi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"aLZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/wy, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4; + layer = 2.981; + name = "Research Cameras"; + pixel_y = 16 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) +/obj/item/clothing/accessory/stethoscope, +/obj/structure/closet/secure_closet/professor_dummy{ + pixel_x = -32 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"aMd" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/filingcabinet/disk{ + density = 0; + pixel_x = -11; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aMf" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"aMg" = ( +/obj/structure/sign/safety/intercom{ + layer = 2.9; + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/machinery/botany/extractor{ + density = 0; + pixel_x = 15; + pixel_y = 16 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/structure/machinery/vending/hydroseeds{ + density = 0; + pixel_x = -7; + pixel_y = 16; + req_access_txt = "28" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aMl" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"aMm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "aMo" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) +"aMq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "aMt" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"aMw" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aMx" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"aMy" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) "aMz" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha) -"aMA" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plastic{ - amount = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +"aMB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"aMC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) "aMD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -2725,6 +6019,13 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) +"aMG" = ( +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) "aMH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2744,6 +6045,15 @@ /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 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"aMP" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) "aMQ" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; @@ -2751,9 +6061,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"aNg" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop) +"aMT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aMU" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"aMY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"aNc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) "aNi" = ( /turf/closed/wall/almayer, /area/almayer/living/chapel) @@ -2766,31 +6089,45 @@ "aNm" = ( /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aNp" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) "aNr" = ( /obj/effect/landmark/start/chef, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"aNy" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"aNB" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" +"aNs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aNx" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"aNE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"aNI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aNO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) "aNQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2814,34 +6151,111 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"aOg" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"aOj" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"aNW" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"aNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/upper/fore_hallway) -"aOD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"aOd" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"aOe" = ( +/obj/structure/surface/table/reinforced/prison, +/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/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"aOJ" = ( -/obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"aOq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/command/telecomms) +"aOr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOt" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"aOy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"aOz" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/squads/alpha) +"aOB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aOC" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aOE" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"aOF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"aOG" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aOH" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aOK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) "aOL" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -2854,9 +6268,62 @@ /obj/item/facepaint/green, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"aOM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aON" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"aOQ" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) "aOR" = ( /turf/open/floor/almayer, /area/almayer/living/chapel) +"aOS" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"aOU" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"aOV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aOW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) "aPa" = ( /obj/structure/machinery/light{ dir = 8 @@ -2875,25 +6342,66 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"aPh" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" +"aPg" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"aPi" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aPj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"aPk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"aPl" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aPn" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"aPo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) +/area/almayer/squads/alpha) +"aPr" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) "aPw" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/lifeboat) +"aPx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D2"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aPz" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aPB" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/command/cic) "aPC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -2903,6 +6411,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) +"aPD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aPE" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"aPH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aPI" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cic) "aPJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2930,9 +6465,29 @@ "aPO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) +"aPS" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "aPT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"aPU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"aPV" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) "aQb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2942,15 +6497,39 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"aQl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +"aQg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"aQx" = ( +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/command/cic) +"aQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQx" = ( /obj/structure/window/framed/almayer, /obj/structure/curtain/open/shower{ name = "hypersleep curtain" @@ -2960,9 +6539,48 @@ }, /turf/open/floor/plating, /area/almayer/maint/upper/u_m_p) +"aQy" = ( +/obj/structure/transmitter{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"aQz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) "aQF" = ( /turf/closed/wall/almayer, /area/almayer/living/offices) +"aQG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aQH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) "aQL" = ( /turf/closed/wall/almayer, /area/almayer/squads/bravo) @@ -2981,47 +6599,64 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/bravo) -"aRf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"aRi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +"aQT" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"aRk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/card{ - dir = 4; - layer = 3.2; +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"aQW" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; pixel_y = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"aQZ" = ( +/obj/structure/machinery/botany/editor{ + density = 0; + pixel_x = 5; + pixel_y = 16 }, -/obj/structure/machinery/computer/secure_data{ +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aRd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/window/westright{ dir = 4; - pixel_y = 23; - layer = 2.99 + req_access_txt = "28" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"aRn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item{ - pixel_x = 5 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/obj/item/facepaint/black{ - pixel_x = -10 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"aRi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"aRj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "aRo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -3030,19 +6665,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"aRs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"aRq" = ( +/obj/structure/closet/secure_closet/staff_officer/gear, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/living/bridgebunks) +"aRt" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/command/cic) "aRu" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"aRv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) "aRy" = ( /turf/open/floor/almayer, /area/almayer/living/offices) @@ -3050,19 +6699,45 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices) -"aRD" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 5; - pixel_y = 16 +"aRB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 5 }, -/obj/structure/filingcabinet/disk{ - density = 0; - pixel_x = -11; - pixel_y = 16 +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRC" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRE" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue Processing"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) "aRJ" = ( /obj/structure/ladder{ height = 2; @@ -3089,20 +6764,77 @@ }, /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/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"aRP" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"aRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) "aRT" = ( /turf/open/floor/almayer, /area/almayer/squads/bravo) -"aSj" = ( -/obj/structure/disposalpipe/segment{ +"aRU" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"aRX" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"aRZ" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"aSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"aSb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) +"aSk" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"aSn" = ( +/obj/item/stack/sheet/mineral/plastic{ + amount = 15 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) "aSo" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -3116,27 +6848,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"aSs" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 +"aSp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aSq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSx" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "aSE" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"aSG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"aSH" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) "aSI" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -3146,6 +6915,24 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"aSJ" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"aSO" = ( +/obj/structure/surface/table/reinforced/prison, +/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/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_two) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -3154,34 +6941,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"aTb" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 +"aTf" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) "aTg" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) +"aTj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) "aTk" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -3198,13 +6978,82 @@ "aTm" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"aTL" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/mp_bunks) -"aTS" = ( -/obj/structure/closet/firecloset, +"aTn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"aTr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"aTv" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/bravo) +"aTw" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"aTx" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"aTy" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aTz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/living/captain_mess) +"aTA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -1 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aTB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aTE" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aTG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "aTT" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -3222,17 +7071,51 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"aUc" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +"aTY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"aTZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"aUa" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"aUd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Officer's Bunks"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/port_atmos) +"aUe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"aUi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) "aUj" = ( /obj/structure/machinery/cm_vending/clothing/tl/bravo{ density = 0; @@ -3240,39 +7123,149 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"aUE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"aUH" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/port_atmos) -"aUV" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 +"aUk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"aVa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aUl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"aVc" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"aVh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aUp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUq" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aUw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"aUC" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aUH" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/port_atmos) +"aUL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt, +/obj/item/ashtray/glass, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"aUM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"aUY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"aUZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"aVd" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"aVf" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"aVg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"aVi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aVk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aVm" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) "aVo" = ( /obj/structure/machinery/light{ dir = 1 @@ -3280,23 +7273,54 @@ /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"aVp" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"aVr" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/upper_medical) -"aVq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aVC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"aVF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"aVG" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cichallway) +"aVH" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"aVI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"aVK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"aVL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "aVM" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -3304,26 +7328,115 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) -"aVQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer/bluefull, +"aVR" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) -"aVT" = ( -/obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"aVY" = ( -/obj/structure/bed/chair/comfy{ +"aVU" = ( +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"aVZ" = ( -/obj/structure/machinery/pipedispenser/orderable, +/obj/structure/machinery/disposal, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) +/area/almayer/living/bridgebunks) +"aVV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aVW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aVX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"aWb" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "engie_store"; + name = "Emergency Storage"; + pixel_x = -2; + pixel_y = 26; + req_one_access_txt = "6" + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17; + pixel_y = -6 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/ce_room) +"aWc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"aWg" = ( +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_y = 32; + req_one_access_txt = "24;31" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_y = 24; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"aWk" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aWn" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "aWo" = ( /obj/structure/pipes/unary/outlet_injector, /turf/open/floor/engine, @@ -3334,26 +7447,25 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"aWr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"aWv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"aWq" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWt" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/power/apc/almayer, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWu" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "aWw" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -3361,6 +7473,15 @@ }, /turf/open/floor/plating, /area/almayer/living/gym) +"aWz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) "aWD" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -3368,13 +7489,33 @@ }, /turf/open/floor/plating, /area/almayer/living/offices) -"aWK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"aWE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aWM" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/upper/fore_hallway) +"aWT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) "aWV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -3411,90 +7552,112 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"aXs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 +"aXe" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"aXh" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aXj" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aXx" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"aXw" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"aXA" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/engineering/port_atmos) "aXD" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"aXQ" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +"aYd" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"aYt" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aYu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"aXT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"aYe" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 +/area/almayer/hallways/hangar) +"aYz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"aYC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"aYh" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"aYt" = ( -/turf/open/floor/almayer, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) -"aYB" = ( -/obj/structure/pipes/standard/simple/visible{ +"aYE" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) "aYH" = ( /obj/structure/safe/cl_office, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"aYO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"aYQ" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"aZb" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_one) +"aYR" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) "aZe" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aZg" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/midship_hallway) +"aZf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "aZr" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -3507,9 +7670,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aZu" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) +"aZv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) "aZy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -3520,51 +7686,127 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"aZA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical, +"aZC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"aZF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"aZI" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"aZG" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/area/almayer/maint/hull/upper/p_stern) +"aZK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"bah" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"aZL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 + icon_state = "W" }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"bak" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"baw" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"baG" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"baI" = ( -/turf/open/floor/plating, +"aZO" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"baK" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/lifeboat) -"baR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, +"aZP" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"baW" = ( +"aZQ" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZR" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZV" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZW" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZX" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZY" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"baf" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bag" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"baw" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"baG" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baI" = ( +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"baJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"baM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baS" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baW" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ dir = 4; @@ -3572,18 +7814,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"baY" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +"baX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "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/plate, +/area/almayer/maint/hull/lower/l_f_p) +"bbd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) "bbe" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"bbf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bbi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) "bbr" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -3594,74 +7870,221 @@ "bbs" = ( /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"bbx" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"bbH" = ( +"bby" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "SE-out" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"bbK" = ( +/area/almayer/shipboard/starboard_point_defense) +"bbz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bbQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" + icon_state = "S" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"bbR" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"bbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) "bbS" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"bbT" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "bbV" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"bbY" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "bbZ" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"bca" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcg" = ( +/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/silver/northwest, +/area/almayer/maint/upper/u_m_p) "bcm" = ( /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"bcq" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +"bco" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bct" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/maint/upper/u_a_p) +"bcw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcz" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcC" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/obj/structure/sign/safety/ref_chem_storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"bcE" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcK" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/chemistry) +"bcL" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"bcM" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"bcP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bcR" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bcS" = ( +/obj/structure/machinery/door_control{ + id = "or1privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bcV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bcZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bda" = ( +/obj/structure/machinery/door_control{ + id = "or02"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) "bdd" = ( /turf/closed/wall/almayer, /area/almayer/living/briefing) @@ -3675,12 +8098,63 @@ "bdj" = ( /turf/open/floor/almayer, /area/almayer/squads/req) +"bdk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) "bdl" = ( /turf/closed/wall/almayer, /area/almayer/squads/req) +"bdm" = ( +/obj/structure/machinery/door_control{ + id = "crate_room"; + name = "storage shutters"; + pixel_x = -25; + pixel_y = -1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "bdr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"bds" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdw" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/cryo_cells) +"bdy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"bdz" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bdA" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdD" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "bdH" = ( /turf/open/space/basic, /area/space) @@ -3694,6 +8168,17 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"bdJ" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "bdK" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer, @@ -3704,63 +8189,122 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bdP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"bdM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdO" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdU" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bdV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bdZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"bdY" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"beb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"bea" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"bed" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"beg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bei" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bej" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"ben" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"bef" = ( -/obj/structure/machinery/light/containment{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bep" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"ber" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"beu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "north_central_checkpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/living/briefing) +"bet" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"bev" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bew" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bez" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_one) "beE" = ( /obj/structure/platform{ dir = 1 @@ -3770,6 +8314,30 @@ "beH" = ( /turf/open/floor/almayer, /area/almayer/living/briefing) +"beL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"beN" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "beP" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment{ @@ -3782,32 +8350,61 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) +"beR" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"beS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"beT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"beU" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "beV" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/leader/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"beW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) "beZ" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"bfa" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"bfb" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"bfp" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/living/briefing) -"bfr" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) +"bfd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"bfl" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/cryo_cells) +"bfm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/cryo_cells) +"bfn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"bfo" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) "bfs" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/lower/l_f_s) @@ -3817,25 +8414,71 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"bfu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/squads/alpha) +"bfw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) "bfy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"bfB" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"bfz" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"bfH" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) +/area/almayer/squads/alpha) +"bfC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) "bfJ" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/handheld1, @@ -3846,39 +8489,110 @@ /obj/item/prop/almayer/comp_closed, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"bfL" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bfO" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"bfQ" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"bfW" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) +"bfV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bfY" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/comp_open, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bgc" = ( +"bfZ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bgj" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bgk" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/power/apc/almayer{ - dir = 1 + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"bgl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bgm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bgn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"bgd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_two) +"bgr" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bgs" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"bgt" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_two) +"bgu" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/chemistry) +"bgv" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/medical/operating_room_one) "bgw" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -3890,33 +8604,115 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_two) +"bgy" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or02"; + name = "Operating Theatre 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_two) +"bgz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bgA" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bgC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"bgK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"bgM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"bgN" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) "bgO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bhc" = ( -/obj/structure/machinery/firealarm{ +"bgP" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"bgR" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - pixel_x = -24 + name = "ship-grade camera" }, -/obj/structure/closet/secure_closet/brig/prison_uni, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"bhi" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bgU" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bgW" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie) +"bgY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bhf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/obj/structure/sign/safety/laser{ + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"bhg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bho" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) "bhq" = ( /obj/structure/machinery/light{ dir = 4 @@ -3926,19 +8722,45 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bhA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"bhH" = ( -/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."; - dir = 4; - id = "crate_room4"; - name = "dilapidated storage shutters" +"bhx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/living/chapel) +"bhy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bhG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bhI" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bhJ" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"bhR" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) "bhT" = ( /obj/structure/cargo_container/lockmart/mid{ layer = 3.1; @@ -3953,47 +8775,99 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bie" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"bhV" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"bip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"bir" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"biq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"biu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/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/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/chemistry) +"biy" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) "biA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_three) -"biP" = ( -/obj/structure/sign/safety/south{ - pixel_x = 32; - pixel_y = -8 +"biC" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"biF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/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/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 +/obj/item/folded_tent/med{ + pixel_x = -8; + pixel_y = 14 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"biJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"biL" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) "biV" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -4001,10 +8875,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"bjf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) "bjg" = ( /obj/item/trash/chips, /turf/open/floor/plating, @@ -4024,10 +8894,20 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"bjr" = ( -/obj/structure/machinery/light, +"bjs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/squads/bravo) +"bjt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"bju" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "bjv" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -4035,24 +8915,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"bjG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +"bjA" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"bjD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"bjJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"bjL" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/cic) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) "bjQ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -4064,31 +8939,70 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bjY" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" +"bjS" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bjZ" = ( +/obj/structure/machinery/cm_vending/clothing/marine/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/gym) +"bkb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"bkd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bkg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bkh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bko" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bks" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bky" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"bkz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Nurse Office"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/area/almayer/medical/lockerroom) "bkA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) -"bkB" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) "bkE" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4100,17 +9014,42 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_one) -"bkP" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/execution) -"bkS" = ( +"bkM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/maint/upper/u_m_p) +"bkN" = ( +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bkS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/structure/stairs/perspective{ dir = 1; @@ -4118,6 +9057,33 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) +"bkT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"bkU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/late_join, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/start/senior, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"blf" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "bli" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 6"; @@ -4128,90 +9094,280 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"blj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bll" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bln" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter/zippo, +/obj/item/toy/dice/d20, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/living/cryo_cells) "bls" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/basketball) -"blO" = ( -/obj/structure/stairs{ +"blw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter, +/obj/structure/machinery/faxmachine/uscm, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"blB" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"blJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"blZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lockerroom) +"bmb" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bmc" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or03"; + name = "Operating Theatre 3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_three) +"bmd" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or04"; + name = "Operating Theatre 4" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_four) +"bmh" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"bmi" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_three) +"bmj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"bmk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "ramptop" + pixel_x = -24 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_four) +"bml" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"blX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bmn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"bmp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "bmr" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bmy" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +"bmv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"bmz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"bmB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/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/plate, -/area/almayer/maint/lower/s_bow) +/area/almayer/squads/req) +"bmD" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "bmF" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"bmL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" +"bmO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bmW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) -"bmS" = ( -/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"bmU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bne" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/area/almayer/living/offices) +"bmX" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"bng" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"bnk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 17; + pixel_y = 16 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"bni" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bnj" = ( +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) "bno" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -4219,6 +9375,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"bnp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"bnr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "bnt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4228,16 +9403,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"bnD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"bnu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/alarm/almayer{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bny" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"bnA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bnB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4245,41 +9444,98 @@ /obj/item/tool/warning_cone, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bnM" = ( -/obj/structure/machinery/light{ - dir = 8 +"bnI" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"bnO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"bnR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"bnQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"bnS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bnT" = ( +/obj/structure/machinery/door_control{ + id = "or03"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"bnX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop/hangar) -"bnV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bnZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"bof" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"boh" = ( +/obj/structure/machinery/door_control{ + id = "or04"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"bom" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"bop" = ( +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering/port) +"boq" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer/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" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) "boz" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; @@ -4287,38 +9543,22 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"boO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"boA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"boB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" + icon_state = "SW-out" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"boT" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/living/briefing) -"boU" = ( -/obj/vehicle/powerloader, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) "boV" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -4327,34 +9567,118 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"boW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"bpn" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"bpp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"boX" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"bpB" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"boY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bpa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bpd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_missiles) +"bpe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/living/bridgebunks) +"bpj" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"bpo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bpv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "south_central_checkpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bpw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"bpz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bpA" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "bpC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"bpG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bpH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bpI" = ( +/obj/structure/closet/secure_closet/fridge/dry/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bpK" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bpL" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) "bpQ" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 4; @@ -4372,54 +9696,67 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"bpY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) +"bpT" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"bpV" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "bqc" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"bqx" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, +"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/plate, -/area/almayer/living/captain_mess) -"bqI" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/area/almayer/hallways/lower/starboard_fore_hallway) +"bqF" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"bqH" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/starboard) -"bqK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/medical/lower_medical_lobby) +"bqL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bqN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lockerroom) +"bqR" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) "bqT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -4430,15 +9767,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"bqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) "bqW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/head/cmcap{ @@ -4455,29 +9783,101 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"bqY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"bqZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bra" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) "brb" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/offices) -"brd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Auxiliary Support Officer's Room" +"brf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"bri" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"brj" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"brn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"brm" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/squads/bravo) "brp" = ( /obj/structure/supply_drop/bravo, /turf/open/floor/plating, /area/almayer/squads/req) +"brq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"brr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "brv" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"brw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/white{ + pixel_x = -12 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen/fountain{ + pixel_y = 3 + }, +/obj/item/tool/pen/fountain{ + pixel_y = 9 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver, +/area/almayer/command/aist_office) +"bry" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) "brA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -4491,30 +9891,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"brG" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 +"brH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"brW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "brY" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bsa" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"bsf" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 +"bsj" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 }, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bsp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "bst" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_one) @@ -4535,16 +9946,106 @@ /obj/item/reagent_container/food/drinks/cans/souto/diet/peach, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"bsz" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bsD" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"bsF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"bsG" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"bsJ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) "bsK" = ( /obj/effect/landmark/supply_elevator, /turf/open/floor/almayer/empty/requisitions, /area/supply/station) -"bsO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"bsL" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/squads/req) +"bsN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bsP" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bsQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"bsR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bsS" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bsU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/squads/alpha) +"bsW" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "btb" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4552,6 +10053,29 @@ }, /turf/open/floor/plating, /area/almayer/maint/upper/u_a_s) +"btc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"bti" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/intel{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"btr" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "btv" = ( /obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ @@ -4559,14 +10083,20 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"btB" = ( -/obj/structure/closet, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +"btx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/area/almayer/living/gym) +"btC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "btD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) @@ -4576,12 +10106,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"btL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) "btM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/pipes/vents/scrubber{ @@ -4601,149 +10125,204 @@ "btO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"buf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"btV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"btX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"bup" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"btY" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"buz" = ( -/obj/structure/supply_drop/charlie, -/turf/open/floor/plating, -/area/almayer/squads/req) -"buI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"buc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"bui" = ( +/obj/structure/surface/table/reinforced/prison, +/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/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"buJ" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_one) +"buj" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"buL" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bun" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"bvb" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bvf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bvg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"bvi" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"bvm" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"bvn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"bvq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"bvv" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_cargo, +/area/almayer/command/aist_office) +"bur" = ( +/obj/structure/prop/almayer/missile_tube, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"buu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"bvA" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/interrogation) -"bvM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"bvO" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/hangar) -"bvR" = ( -/obj/structure/closet{ - name = "boxing attire" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"buv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"buz" = ( +/obj/structure/supply_drop/charlie, +/turf/open/floor/plating, +/area/almayer/squads/req) +"buB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"buM" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"bvT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/almayer/squads/bravo) +"buN" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buO" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buS" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buY" = ( +/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/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"bvb" = ( +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bve" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bvf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bvr" = ( +/obj/structure/bed/chair/office/dark, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/living/briefing) +"bvz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/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/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"bvF" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bvH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) "bvX" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4752,6 +10331,19 @@ /obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, /turf/open/floor/plating, /area/almayer/command/corporateliaison) +"bwc" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bwe" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "bwf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4761,12 +10353,57 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"bwk" = ( -/obj/structure/machinery/light{ - dir = 8 +"bwg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/ce_room) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"bwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"bwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bwm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bwn" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, @@ -4783,39 +10420,93 @@ }, /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/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) "bwG" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_m_s) -"bwQ" = ( -/obj/structure/bed/chair{ - dir = 8 +"bwH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"bwU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"bwP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bwR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ dir = 1; - name = "\improper Workshop Vendors" + pixel_y = -4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"bwY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lockerroom) +"bwT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"bxf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) "bxg" = ( /obj/structure/machinery/door/poddoor/railing{ id = "supply_elevator_railing" }, /turf/open/floor/almayer, /area/almayer/squads/req) -"bxr" = ( -/obj/structure/machinery/light{ - dir = 4 +"bxh" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/req) +"bxi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"bxm" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bxn" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"bxA" = ( +/obj/structure/machinery/power/apc/almayer/hardened, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "bxB" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -4828,16 +10519,34 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"bxC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"bxE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) "bxN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"bxO" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) "bxY" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -4851,16 +10560,69 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"byi" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer/red/northwest, -/area/almayer/maint/upper/u_a_p) +"byb" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"byc" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_three) +"byd" = ( +/obj/structure/surface/table/reinforced/prison, +/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/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_four) +"bye" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or4privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"bym" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "byn" = ( /obj/effect/landmark/start/marine/leader/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"byr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/lower/l_m_s) +"byu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "byv" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -4872,59 +10634,21 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"byz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"byM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 - }, -/obj/item/device/binoculars, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"byO" = ( -/obj/structure/machinery/ares/cpu, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"byW" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"bzd" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bzt" = ( -/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 +"byw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"bzw" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bzg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"bzo" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_four) "bzz" = ( @@ -4934,36 +10658,45 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"bzM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/groundside_operations{ - dir = 4; - pixel_y = 8 +"bzD" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"bzN" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"bzI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) "bzQ" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bAa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/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" +"bzR" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -18 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"bzS" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"bAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"bAe" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/lifeboat) "bAh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cargo_container/wy/mid, @@ -4973,23 +10706,16 @@ /obj/structure/cargo_container/wy/right, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bAo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"bAq" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) "bAs" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room) +"bAu" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/securestorage) "bAy" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = -32 @@ -4997,55 +10723,128 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"bAA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" +"bAH" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"bAJ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"bAR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"bAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"bAN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAP" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) +/area/almayer/hallways/hangar) "bAS" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bAU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bAY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bAZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bBd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bBe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bBg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "bBl" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bBm" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bBn" = ( -/obj/structure/bed/chair{ - dir = 8 +"bBu" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"bBr" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northwest, -/area/space) -"bBt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBy" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "bBA" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/weapon_room) @@ -5055,10 +10854,46 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"bBD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/structure/transmitter/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/transmitter/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bBH" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) "bBN" = ( /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bBQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "southcheckpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "bBR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -5071,13 +10906,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"bCa" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +"bBY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "bCd" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -5085,6 +10920,15 @@ }, /turf/open/floor/plating, /area/almayer/medical/lower_medical_lobby) +"bCe" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"bCg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "bCh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -5096,10 +10940,33 @@ /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 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) "bCs" = ( /obj/docking_port/stationary/escape_pod/cl, /turf/open/floor/plating, /area/almayer/command/corporateliaison) +"bCu" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "bCv" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -5112,6 +10979,22 @@ }, /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 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Briefing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bCy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "bCz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -5121,6 +11004,15 @@ "bCA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"bCB" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"bCD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) "bCG" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -5128,45 +11020,191 @@ }, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"bDd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"bDl" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) +"bCM" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bCN" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bCP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"bCR" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bCY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bCZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) "bDn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"bDo" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 +"bDs" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bDv" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bDF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room/notunnel) +"bDH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bDI" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bDR" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +"bDL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Combat Support Secondary Preparations"; + req_one_access_txt = "19;27;22" }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"bDO" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bDP" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bDQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bEf" = ( +/area/almayer/living/briefing) +"bDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bDX" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack{ + amount = 40; + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/stack/sheet/plasteel/small_stack{ + amount = 15 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDZ" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/cryo_cells) +"bEb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/cryo_cells) +"bEc" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bEd" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/cryo_cells) +"bEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bEh" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) "bEi" = ( /obj/structure/supply_drop/alpha, /obj/structure/machinery/light{ @@ -5174,6 +11212,13 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"bEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_aft_hallway) "bEl" = ( /obj/structure/machinery/computer/supply_drop_console/limited, /turf/closed/wall/almayer, @@ -5185,6 +11230,29 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"bEp" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"bEr" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEs" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEv" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) "bEw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -5197,148 +11265,444 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"bEV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/research{ - dir = 4; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"bFd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +"bEA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bFe" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/living/briefing) -"bFk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"bFr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"bFx" = ( -/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"bFB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/hallways/hangar) +"bED" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bFJ" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bFP" = ( -/obj/vehicle/powerloader{ +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"bFR" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_1, -/turf/open/floor/plating, +"bEE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"bFT" = ( +"bEF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"bGb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/weapon_room) +"bEG" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"bEK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"bGe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"bGo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bGr" = ( -/obj/structure/machinery/brig_cell/cell_2{ - pixel_x = 32; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"bGu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bGv" = ( -/obj/structure/machinery/cm_vending/clothing/leader/alpha, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bGT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/hangar) +"bEO" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"bGU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bGY" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEP" = ( +/obj/item/device/radio/marine{ + pixel_x = 6 + }, +/obj/item/device/radio/marine{ + pixel_x = 3 + }, +/obj/item/device/radio/marine, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bER" = ( +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/storage/box/gloves{ + layer = 3.1; + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/masks{ + layer = 3.1; + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bES" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bFa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"bFj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bFk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/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/plate, +/area/almayer/maint/hull/lower/l_a_s) +"bFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"bFq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"bFr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"bFs" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/cryo_cells) +"bFt" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"bFA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"bFB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"bHs" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bFC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bFJ" = ( +/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bFP" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bFR" = ( +/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/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"bGa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"bGc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"bGn" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bGo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bGq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bGw" = ( /obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bGy" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"bGz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"bGF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGH" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGI" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGK" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGM" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGP" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGU" = ( +/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/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"bHk" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"bHp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bHq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) "bHu" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -5346,18 +11710,22 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/warden_office) -"bHv" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) "bHB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bHD" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"bHG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "bHI" = ( /obj/structure/anti_air_cannon, /obj/structure/surface/table/almayer, @@ -5368,51 +11736,73 @@ "bHP" = ( /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"bHQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bHZ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; +"bId" = ( +/obj/structure/machinery/firealarm{ pixel_y = 28 }, -/obj/item/bedsheet/blue{ - layer = 3.2 +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bIe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bIj" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/hallways/lower/port_midship_hallway) +"bIn" = ( +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bIo" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bIp" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Left"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"bIs" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bIw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"bIe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/computer/working_joe, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bIx" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) "bIy" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -5421,54 +11811,50 @@ }, /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/navigation) -"bII" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"bIJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/command/cichallway) -"bIL" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = 10 + }, +/obj/item/clothing/head/chefhat, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "bIM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"bIP" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +"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/emerald/northwest, -/area/almayer/squads/charlie) -"bIR" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_fore_hallway) +"bIU" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"bIT" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) "bIW" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -5476,6 +11862,19 @@ }, /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, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_2"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) "bJf" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -5485,64 +11884,48 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"bJm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +"bJl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Support Officers Quarters"; + req_one_access_txt = "37" }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/command/cic) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) "bJt" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"bJx" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 +"bJw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"bJB" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 4 - }, -/obj/item/trash/USCMtray{ - pixel_y = 6 - }, -/obj/item/trash/USCMtray{ - pixel_y = 8 - }, -/obj/item/trash/USCMtray{ - pixel_y = 10 - }, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "bJC" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie) "bJD" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie) -"bJG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper XO's Quarters"; - req_access = null; - req_access_txt = "1" +"bJE" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) "bJH" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black{ @@ -5550,28 +11933,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"bJI" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"bJM" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) "bJS" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, @@ -5581,6 +11942,13 @@ /obj/structure/machinery/light, /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) +"bJU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "bJX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -5591,6 +11959,30 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"bJZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"bKd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bKf" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) "bKk" = ( /obj/item/tool/wrench{ pixel_x = -8; @@ -5600,30 +11992,71 @@ /obj/structure/prop/mech/hydralic_clamp, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) +"bKm" = ( +/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, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"bKn" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"bKp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bKq" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "bKs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) +"bKt" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bKu" = ( /obj/structure/cargo_container/arious/mid, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bKv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio, +"bKz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"bKB" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) +/area/almayer/squads/req) +"bKA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "bKC" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"bKD" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "bKI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5633,6 +12066,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/starboard_hallway) +"bKJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) "bKM" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, @@ -5650,6 +12087,28 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) +"bKX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/emerald/north, +/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/plate, +/area/almayer/maint/hull/upper/u_f_s) +"bLf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "bLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5666,6 +12125,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) +"bLj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bLk" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"bLl" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bLm" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bLo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bLp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bLq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"bLr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) "bLs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5675,9 +12198,15 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"bLv" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) +"bLw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) "bLx" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 1; @@ -5708,17 +12237,34 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"bLK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 +"bLD" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bLF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + name = "\improper Brig" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"bLH" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/weapon_room) +"bLJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) "bLO" = ( /obj/structure/bed/chair{ dir = 8 @@ -5731,20 +12277,17 @@ /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"bLQ" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"bLU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 4 +"bLX" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bMa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/briefing) +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) "bMf" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -5760,12 +12303,62 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"bMs" = ( +"bMq" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bMu" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bMx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"bMy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"bMA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bMC" = ( +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"bMD" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/emerald/north, +/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/plate, +/area/almayer/maint/hull/lower/p_bow) "bMJ" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, @@ -5781,20 +12374,70 @@ /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine, /area/almayer/engineering/airmix) +"bMO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "bMP" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"bMQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"bMR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bMS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bMT" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/sign/safety/twilight_zone_terminator{ + pixel_x = 8; + pixel_y = -24 }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bMU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bMZ" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/area/almayer/maint/upper/u_f_p) +"bNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"bNe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) "bNf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -5810,22 +12453,118 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) +"bNh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"bNi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bNk" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) "bNl" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) +"bNm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bNn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "bNo" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"bNq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bNr" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "bNs" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"bNt" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bNw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/kitchen/knife, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bNA" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bNB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/obj/item/clipboard, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bNC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bNE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"bNF" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) "bNG" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ density = 0; @@ -5833,36 +12572,60 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bOp" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ +"bNL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"bNM" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"bNN" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"bNP" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bNQ" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"bNS" = ( +/obj/structure/machinery/prop/almayer/computer{ dir = 1 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/structure/bedsheetbin{ - pixel_x = 26; - pixel_y = 5 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bOq" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bOs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/soap/syndie, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/weapon_room) +"bOw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"bOr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"bOv" = ( -/obj/structure/largecrate/random/case, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) +/area/almayer/hallways/lower/vehiclehangar) +"bOx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"bOC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) "bOG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5876,25 +12639,145 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"bOQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; +"bOJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bOK" = ( +/obj/structure/machinery/door_control{ + id = "ROlobby1"; + name = "RO Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/machinery/line_nexter_control{ + id = "line1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bOM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bON" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bOO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bOQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; pixel_y = 7 }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"bPd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"bOR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"bOT" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/gear/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"bOZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"bPa" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"bPg" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/shipboard/weapon_room) +"bPh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "bPi" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) +"bPk" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"bPn" = ( +/obj/structure/machinery/computer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bPo" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) "bPq" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -5919,15 +12802,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) -"bPv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +"bPz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) +"bPC" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/weapon_room) +"bPD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "bPF" = ( /turf/closed/wall/almayer/white/outer_tile, /area/almayer/medical/medical_science) +"bPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bPH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"bPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) "bPL" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -5941,80 +12861,109 @@ /obj/effect/landmark/late_join, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"bPT" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"bPY" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"bPM" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/living/cryo_cells) +"bPO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/living/briefing) +"bQc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 6"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"bQt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQA" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"bQb" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/chemistry) -"bQh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"bQD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bQr" = ( -/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"bQE" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer/red/northeast, -/area/almayer/maint/upper/u_a_p) -"bQx" = ( +/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/red, +/area/almayer/shipboard/weapon_room) +"bQG" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"bQN" = ( +/obj/item/folder/black, +/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQI" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/structure/sign/catclock{ - pixel_y = 32 +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"bQP" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQM" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) "bQQ" = ( /obj/structure/sign/ROsign{ layer = 3 }, /turf/closed/wall/almayer, /area/almayer/squads/req) +"bQS" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) "bQU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -6031,124 +12980,129 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/charlie) +"bRa" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/living/cryo_cells) "bRc" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"bRd" = ( -/obj/structure/machinery/telecomms/server/presets/squads, -/obj/structure/sign/safety/commline_connection{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) "bRe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) +"bRf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"bRg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "bRo" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"bRq" = ( +"bRt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"bRB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_umbilical) +"bRO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"bRI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"bRP" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"bRQ" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"bRV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/mess) -"bRZ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"bSa" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"bSb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bSe" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/squads/bravo) "bSf" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/port_point_defense) -"bSh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"bSr" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"bSt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"bSn" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) "bSv" = ( /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"bSy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"bSD" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"bSC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - unacidable = 1 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room/notunnel) -"bSI" = ( -/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/glass/bucket{ + pixel_x = -4 }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"bSH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "bSJ" = ( /turf/closed/wall/almayer, /area/almayer/squads/delta) @@ -6165,6 +13119,42 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/delta) +"bSN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"bSR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bST" = ( +/obj/structure/closet/secure_closet/hydroresearch, +/obj/item/reagent_container/glass/watertank, +/obj/item/reagent_container/glass/watertank, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"bSZ" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bTa" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "bTb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -6181,6 +13171,17 @@ }, /turf/open/space, /area/space) +"bTn" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) "bTq" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Evacuation Airlock PL-3"; @@ -6200,51 +13201,164 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"bTu" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) "bTx" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) +"bTy" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/squads/delta) +"bTz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) "bTA" = ( /turf/open/floor/almayer, /area/almayer/squads/delta) +"bTC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTE" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"bTG" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) "bTH" = ( /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"bTK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 +"bTJ" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTN" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"bTL" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) +/area/almayer/squads/delta) "bTO" = ( /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) +"bTR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "bTT" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/weapon_room) -"bTY" = ( -/obj/structure/disposalpipe/segment, +"bTU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/dogtag{ + desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." + }, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTV" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"bTW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"bTY" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/upper/port) -"bUh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"bUa" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"bUb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /obj/structure/bed/chair/comfy/bravo{ - dir = 4 + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) +"bUf" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"bUi" = ( +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"bUo" = ( +/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_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) "bUp" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6272,6 +13386,42 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) +"bUr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bUy" = ( +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/small, +/obj/item/ammo_box/magazine/empty, +/obj/item/ammo_box/magazine/empty, +/obj/structure/machinery/door_control{ + id = "crate_room3"; + name = "storage shutters"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer/test_floor5, +/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 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "bUN" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -6280,6 +13430,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"bUO" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"bUQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"bUT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) "bUU" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; @@ -6287,34 +13450,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"bVa" = ( -/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/parachute{ - pixel_y = 8 - }, -/obj/item/parachute, -/obj/item/parachute{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/hallways/lower/repair_bay) +"bVb" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) "bVe" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -6323,26 +13464,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"bVi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" +"bVn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"bVm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"bVo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_med"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"bVq" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVr" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/xenoanalyzer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -6353,47 +13496,104 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"bVK" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 5"; - pixel_x = -24 +"bVw" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/briefing) +"bVy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) "bVM" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bVN" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "bVR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_s) -"bVT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) "bVU" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_point_defense) -"bVV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"bWc" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"bWd" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/hydroponics) -"bWx" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_one_access_txt = "1;92"; +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWe" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWf" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"bWh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; req_access = null }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/northeast, -/area/almayer/command/aist_office) -"bWC" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"bWn" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWo" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) "bWJ" = ( /obj/structure/machinery/shower{ dir = 4 @@ -6402,35 +13602,44 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"bWM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) +"bWL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "bWQ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/brig/warden_office) -"bWU" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 1"; - name = "\improper cell shutter" +"bWT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/co2_knife{ + pixel_x = 8; + pixel_y = 9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"bXb" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bXc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) "bXe" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) +"bXf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "bXh" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -6439,86 +13648,95 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"bXi" = ( +"bXo" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" + }, /obj/structure/sign/safety/ladder{ - pixel_x = 8; + pixel_x = 24; pixel_y = 32 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"bXp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 15 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"bXw" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 22 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_two) +"bXy" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "bXz" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"bXP" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"bXS" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"bXT" = ( -/obj/structure/machinery/smartfridge/chemistry{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"bXW" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ +"bXH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bXY" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"bYj" = ( -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_x = -4; - pixel_y = 2 +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = -32 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"bYa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) "bYn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/port) +"bYq" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bYu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bYv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "bYw" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"bYz" = ( +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) "bYF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -6526,67 +13744,79 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"bYI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"bYL" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"bYM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/maint/upper/u_a_s) "bYW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/panic) +"bYY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"bZa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "bZc" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = -16 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) +"bZe" = ( +/turf/open/floor/almayer/red/north, +/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/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bZi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "bZj" = ( /obj/structure/disposalpipe/segment, /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bZm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/effect/landmark/map_item, -/obj/structure/disposalpipe/segment{ +"bZn" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/sterile_green_side/east, +/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) -"bZp" = ( -/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/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) "bZq" = ( /obj/effect/projector{ name = "Almayer_AresUp"; @@ -6602,116 +13832,217 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"bZv" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/cic) +"bZr" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/squads/req) "bZw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) -"bZA" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/storage/firstaid/fire, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) "bZJ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/landmark/map_item, /obj/item/device/binoculars, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"bZN" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"bZQ" = ( -/obj/structure/surface/table/almayer, +"bZO" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"cak" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/evidence_storage) -"caq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"cat" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bZR" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bZS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"bZU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"cav" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"cbe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"cab" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cac" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cad" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cae" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"caf" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) -"cbi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ +"cag" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cah" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cai" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cak" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"cal" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"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 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; dir = 2; - name = "\improper Officer's Study" + 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/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"cbj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/cryo_cells) +"caM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"caN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"caO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"caS" = ( +/obj/structure/surface/table/reinforced/prison, +/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/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_three) +"caT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"cbc" = ( +/obj/structure/platform_decoration, /obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"cbt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/maint/hull/upper/u_a_s) +"cbg" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"cbh" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"cbm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cbv" = ( -/obj/structure/machinery/body_scanconsole, +/area/almayer/living/captain_mess) +"cbn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"cbu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"cbC" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/starboard_atmos) +/area/almayer/medical/lower_medical_medbay) "cbF" = ( /obj/structure/closet/secure_closet/personal/cabinet{ pixel_x = 1; @@ -6733,35 +14064,621 @@ /obj/item/circuitboard, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"cbR" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +"ccb" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red/north, +/area/almayer/living/cryo_cells) +"ccd" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/cryo_cells) +"ccg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/security{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"ccs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ccx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"ccG" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/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/redcorner/east, +/area/almayer/living/cryo_cells) +"ccQ" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cdf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cdm" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cdn" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"cdo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"cdp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"cdA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"cdB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cdI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"cdP" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie) +"cdT" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdU" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/ammunition{ pixel_x = 15; pixel_y = 32 }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdV" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdX" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"cea" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"ceg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"ceC" = ( +/obj/structure/prop/almayer/ship_memorial, +/turf/open/floor/plating/almayer, +/area/almayer/living/starboard_garden) +"ceD" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-3"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ceE" = ( +/turf/closed/wall/almayer, +/area/almayer/command/cichallway) +"ceK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ceV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/midship_hallway) +"ceY" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ceZ" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"cfk" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"cca" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, +/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/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cfo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"cfp" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cfq" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cft" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"cfE" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/starboard_missiles) +"cfT" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"cgl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"cgo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"cgq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cgr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgu" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgE" = ( +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"cgO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"cgT" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/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/plate, +/area/almayer/maint/hull/lower/l_m_p) +"chb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"chc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"chf" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"chk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chl" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chp" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"chq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"chv" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"chL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"chM" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"chO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"chR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chS" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"chW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"cib" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/alpha) -"ccc" = ( -/obj/structure/machinery/vending/cola{ - pixel_x = -6; - pixel_y = 4 +"cif" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"cct" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/area/almayer/hallways/lower/starboard_umbilical) +"cil" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cir" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"ciu" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"civ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering) +"ciw" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"cix" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-4"; + req_access = null + }, +/turf/open/floor/almayer/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 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"ciN" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"ciQ" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cjc" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"cjd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cjf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cjg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cji" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"cjk" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 6"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"cjm" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"cjt" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"cjA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cjC" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"ccB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cjE" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 @@ -6769,657 +14686,533 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer/emerald/east, /area/almayer/squads/charlie) -"ccL" = ( +"cjW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"ccM" = ( +/obj/structure/machinery/iv_drip, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"ccO" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ckd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"ccQ" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"ccW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 7 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"ccX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"cdf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cdl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cdm" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"cdp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"cke" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"cdr" = ( -/turf/closed/wall/almayer/aicore/white/reinforced, -/area/almayer/command/aist_office) -"cdz" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"cdA" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"cdB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ckh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"cdD" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"cdI" = ( +/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/plate, +/area/almayer/maint/hull/upper/p_stern) +"ckr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ckK" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"cdN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"ckP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"ckQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ckR" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"cea" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"ceb" = ( -/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" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ckW" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/lower) +"ckX" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ckZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"ced" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/engineering/lower/engine_core) +"cle" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"clg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ceu" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cli" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"ceA" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"ceC" = ( -/obj/structure/prop/almayer/ship_memorial, -/turf/open/floor/plating/almayer, -/area/almayer/living/starboard_garden) -"ceE" = ( -/turf/closed/wall/almayer, -/area/almayer/command/cichallway) -"ceT" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"ceY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"cfb" = ( -/obj/structure/closet/secure_closet/fridge/organic/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"cfo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cft" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"clj" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cfv" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"cfG" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"clk" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"cfV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"cfW" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"cfX" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) -"cga" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) -"cgd" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + pixel_y = -29 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"cgg" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cgh" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"cll" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"cgo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie_delta_shared) -"cgx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/structure/machinery/computer/emails, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"cgy" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cgE" = ( -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"cgT" = ( -/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"cln" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"chd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 + dir = 4 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"chp" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/machinery/alarm/almayer{ + dir = 1; + pixel_y = -29 }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"chs" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"chv" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"chA" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"clo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"chI" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"chJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"chM" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"clp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"chR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"chT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"cie" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"cls" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"clw" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"clE" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clJ" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clL" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clM" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clN" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clS" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor5, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clT" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clV" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer/green/northwest, /area/almayer/squads/req) -"cig" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"clW" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clX" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"cin" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"cit" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver, -/area/almayer/command/aist_office) -"ciB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clY" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clZ" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/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/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) -"ciF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/chief_mp_office) -"ciQ" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ciT" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"cjc" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"cjo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/maint/hull/lower/l_m_s) +"cml" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out"; + pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"cjs" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/shipboard/brig/cells) -"cjD" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"cjI" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cjU" = ( -/obj/structure/machinery/scoreboard_button{ - id = "basketball"; - name = "Scoreboard Reset Button"; - pixel_x = -20 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"cjY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/northwest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) -"ckh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +"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 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ckn" = ( -/turf/open/floor/almayer/red/west, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/brig/processing) -"ckG" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes{ - pixel_y = 9 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ckN" = ( -/obj/structure/machinery/light{ - dir = 8 +"cmC" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-1"; + req_access = null }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ckV" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cmF" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"ckW" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/lower) -"clf" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"clg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"clh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cll" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"cmK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"cmL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"clq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cmM" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) +"cmN" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"cmS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"cmV" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cnd" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cnm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"cls" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"clt" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/upper/u_a_p) +"cnn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"cma" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"cnq" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"cnr" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - pixel_y = 3 + icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"cnu" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"cnE" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"cme" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"cnH" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"cmj" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"cnI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, /turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cmr" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cmx" = ( +/area/almayer/hallways/lower/port_umbilical) +"cnM" = ( /obj/structure/window/reinforced{ dir = 4; - health = 80 + pixel_x = -2; + pixel_y = 4 }, /obj/structure/window/reinforced{ - dir = 8 + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"cmB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"cmH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"cmM" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/medical) -"cmQ" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"cnk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"cnm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"cnD" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"cnP" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cnR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 +/obj/structure/machinery/door/window/eastleft{ + req_access = list(19) }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/machinery/door/window/westright, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) "cnS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -7427,24 +15220,60 @@ }, /turf/open/floor/plating, /area/almayer/command/computerlab) -"cnU" = ( -/obj/structure/machinery/light{ - dir = 1 +"cnT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Computer Lab"; + req_access = null }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"cnY" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cok" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"cnV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"cnW" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"cnZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"coa" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"cod" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"cog" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"coj" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) "coo" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -7462,15 +15291,24 @@ "cop" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) -"cow" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"cov" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Rest and Relaxation Area" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"coB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) "coD" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/flora/pottedplant{ @@ -7479,22 +15317,40 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"cpe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"coH" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"cpf" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"coJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"coT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"coZ" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"cpj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "cpk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7510,13 +15366,10 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) -"cpB" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) +"cpz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "cpJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -7538,9 +15391,16 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"cqi" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +"cpP" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"cqd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/starboard_umbilical) "cqm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/folder/white{ @@ -7552,57 +15412,15 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"cqs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"cqv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, +"cqp" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"cqx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/shipboard/brig/cells) +/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) -"cqB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"cqE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) "cqH" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -7616,15 +15434,13 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) -"cqL" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin, +"cqM" = ( /obj/structure/machinery/light{ - dir = 4 + unacidable = 1; + unslashable = 1 }, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "cqQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -7635,93 +15451,87 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"cqR" = ( -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/living/gym) -"cqW" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) "cqY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar/tarbacktube, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"cqZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"cro" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"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/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"crh" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"crv" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"crB" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"cri" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"crD" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/squads/req) "csd" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) -"csi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"csj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"csr" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"csv" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) "csy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/warden_office) -"csE" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"csI" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"csZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ctd" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rewire{ - pixel_y = -32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"cte" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ctj" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"ctb" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) +"cth" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) "ctp" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -7733,135 +15543,108 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ctH" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"ctI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ - name = "\improper Research Hydroponics Workshop" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, +"ctw" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"ctV" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"ctX" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"cub" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/obj/structure/sign/safety/debark_lounge{ - pixel_y = 32 +/area/almayer/hallways/lower/port_umbilical) +"ctx" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"cui" = ( -/obj/structure/stairs/perspective{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "p_stair_sn_full_cap" + pixel_y = 4 }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"cun" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/obj/structure/mirror{ - pixel_x = 29 +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"ctJ" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ctQ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"ctT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) "cuq" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"cus" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"cuy" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "cuC" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/starboard) -"cuQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"cuW" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, +"cuN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"cuY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) +"cvb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "cvg" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"cvw" = ( -/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/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) "cvx" = ( /turf/closed/wall/almayer, /area/almayer/maint/lower/cryo_cells) -"cvB" = ( -/obj/structure/prop/almayer/missile_tube, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) "cvH" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -7878,28 +15661,12 @@ /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"cvK" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor5, -/area/almayer/engineering/lower/engine_core) -"cvU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"cvY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"cwj" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"cvZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) "cwo" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = 4 @@ -7910,25 +15677,8 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"cwt" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"cwy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer/test_floor4, +"cwC" = ( +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/starboard_hallway) "cwS" = ( /obj/structure/blocker/invisible_wall, @@ -7948,166 +15698,110 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"cxf" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "cxk" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cxs" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/chemistry) -"cxy" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"cxA" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"cxK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/transmitter/rotary{ - name = "Office Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AIST Office"; - pixel_x = 8; - pixel_y = 9 - }, -/obj/structure/machinery/aicore_lockdown{ - pixel_x = -5; - req_one_access_txt = "31;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES AIST"; - name = "Privacy Shutters"; - pixel_y = 11; - req_one_access_txt = "31;92"; - pixel_x = -5 +"cxF" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver, -/area/almayer/command/aist_office) -"cxU" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"cyH" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"cyc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) -"cyI" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"cyh" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"cyO" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"cyo" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"cyp" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"cyv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/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/orange/southeast, +/area/almayer/maint/upper/mess) +"cyP" = ( +/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) "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 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) "cyZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"czh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/ares_console{ - pixel_x = 9 - }, -/obj/structure/machinery/computer/view_objectives{ - pixel_x = -9 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"czl" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"czs" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"czN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"czE" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"czH" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"czK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"czO" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "czR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"cAf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"cAh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"cAv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ +"cAa" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"cAm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) "cAy" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, /obj/structure/machinery/camera/autoname/almayer{ @@ -8116,95 +15810,102 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"cAB" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, +"cAz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/stack/sheet/metal, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_p) +"cAF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "cAR" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/mp_bunks) -"cAY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) "cBb" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"cBd" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"cBj" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"cBs" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) "cBw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"cBB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"cBK" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"cBQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"cBU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"cBY" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"cBC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_aft_hallway) +"cBV" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) "cCa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"cCc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"cCw" = ( +"cCD" = ( /obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"cCH" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering) -"cCJ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"cCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8; + layer = 2.7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) +"cCE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "cCL" = ( /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8212,30 +15913,58 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"cDc" = ( -/obj/structure/bed/chair/comfy/bravo{ +"cDb" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"cDn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"cDs" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"cDx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"cDC" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"cDg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"cDB" = ( -/turf/open/floor/almayer/green, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) -"cDF" = ( -/obj/structure/machinery/computer/supplycomp, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"cDH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 29 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "cDI" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -8251,68 +15980,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"cEd" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, +"cDP" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/hallways/upper/midship_hallway) +"cDZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/living/tankerbunks) "cEi" = ( /obj/structure/sign/poster, /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"cEo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"cEu" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"cEF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"cEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/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/plate, -/area/almayer/squads/charlie) -"cES" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 +/area/almayer/maint/hull/lower/l_f_s) +"cEC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"cET" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"cEY" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"cFd" = ( -/obj/structure/sign/poster/safety{ - pixel_x = 27 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"cEG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) "cFg" = ( /obj/structure/stairs{ dir = 1; @@ -8331,146 +16059,96 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"cFq" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"cFJ" = ( +"cFh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"cFn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"cFQ" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/safety/fridge{ - pixel_x = 32 +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"cFC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"cFP" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "cGd" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/u_m_s) -"cGh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_stern) -"cGi" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"cGy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) "cGA" = ( /obj/structure/sign/poster{ pixel_y = -32 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"cGE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"cGF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cGN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_missiles) +"cGB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"cGO" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) "cGR" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_s) -"cGU" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_f_p) +"cGV" = ( +/turf/open/floor/almayer/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) -"cHh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"cHc" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cHi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "cHk" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/warden_office) -"cHm" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"cHl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cHn" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"cHr" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) +"cHB" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"cHC" = ( +/obj/structure/machinery/cm_vending/clothing/combat_correspondent, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cHE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) "cHG" = ( /obj/structure/machinery/light{ dir = 8 @@ -8484,65 +16162,65 @@ /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, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) "cIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cIE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Laundry Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"cIL" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"cIM" = ( -/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" - }, +"cIx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cIG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/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) -"cJr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Armourer's Workshop"; - req_access = null +"cIS" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"cIW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) +/area/almayer/engineering/upper_engineering/starboard) +"cJm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "cJs" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) -"cJt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"cJu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/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/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "cJv" = ( /obj/structure/stairs{ dir = 1; @@ -8559,12 +16237,6 @@ /obj/structure/sign/prop2, /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"cJG" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) "cJI" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -8580,30 +16252,53 @@ /obj/structure/surface/rack, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"cJQ" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/upper/midship_hallway) -"cJZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"cKc" = ( +"cJK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cJM" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 3"; + layer = 3.2; + name = "Cell 3 Control"; + pixel_x = 16; + pixel_y = -16 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"cKf" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 6"; - pixel_x = -24 +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 2"; + layer = 3.2; + name = "Cell 2 Control"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 2"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = 7; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 3"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = -6; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "cKm" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket/mopbucket{ @@ -8622,104 +16317,66 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"cKr" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"cKx" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 +"cKJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"cKL" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering/port) +"cLd" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"cKC" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/light{ +/area/almayer/maint/upper/u_a_s) +"cLl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"cKI" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"cKM" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "3" - }, -/obj/item/device/radio/listening_bug/radio_linked/mp{ - pixel_y = 8 - }, -/obj/item/device/radio/listening_bug/radio_linked/mp, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/warden_office) -"cKQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/item/storage/fancy/cigar, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"cLo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"cKV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"cLg" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/command/cichallway) -"cLh" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 +/turf/open/floor/almayer/aicore/no_build/ai_arrow, +/area/almayer/command/airoom) +"cLq" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"cLj" = ( -/obj/structure/pipes/unary/freezer, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = 32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"cLA" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"cLl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/storage/fancy/cigar, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) "cLC" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"cLH" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"cLL" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"cLX" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 4; - pixel_y = 6 +"cLN" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) "cMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8736,25 +16393,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"cMB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) "cMH" = ( /obj/structure/sink{ pixel_y = 24 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) -"cMQ" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) +"cMN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) "cMV" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -8773,33 +16423,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"cNc" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"cNA" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) +"cNf" = ( +/turf/open/floor/almayer/orange, +/area/almayer/living/briefing) +"cNm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) "cNC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"cND" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"cNH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + id = "Containment Cell 4"; + name = "\improper Containment Cell 4" + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 4"; + locked = 1; + name = "\improper Containment Cell 4" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell/cl) +"cNI" = ( /turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/medical) +"cNJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"cNK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cNM" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "cNX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8809,9 +16482,13 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cOg" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +"cOd" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cOe" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/midship_hallway) "cOh" = ( /obj/item/stool{ pixel_x = 15; @@ -8819,27 +16496,27 @@ }, /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/test_floor4, +/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) -"cOz" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"cOG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"cOO" = ( -/obj/structure/machinery/light{ - dir = 4 +"cOK" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/starboard) "cOV" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -8912,83 +16589,65 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"cPi" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/clothing/head/ushanka{ - layer = 3.3 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"cPg" = ( +/obj/structure/sign/safety/north{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) "cPj" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/maint/hull/upper/p_bow) -"cPk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"cPK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"cPm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/morgue) -"cPo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8 +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/red/northeast, +/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 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"cPQ" = ( -/obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cPU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +/area/almayer/maint/hull/lower/l_m_s) +"cQc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/living/briefing) +"cQg" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/item/clothing/ears/earmuffs, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"cQa" = ( -/obj/structure/janitorialcart, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) +/area/almayer/engineering/upper_engineering/starboard) +"cQo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) "cQv" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/general_equipment) @@ -9005,6 +16664,13 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) +"cQF" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) "cQG" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/starboard_hallway) @@ -9025,58 +16691,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"cQZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"cRe" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"cRh" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cRj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"cRo" = ( +"cRb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"cRB" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"cRG" = ( -/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/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"cRi" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"cRv" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/port_missiles) "cRK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -9090,46 +16722,17 @@ /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer, /area/almayer/hallways/upper/starboard) -"cRN" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cRR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"cRY" = ( -/obj/structure/machinery/door_control{ - id = "engidorm"; - pixel_x = 25; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"cSl" = ( -/obj/structure/closet/crate/freezer/cooler{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/sign/safety/storage{ - pixel_x = -24 +"cSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"cSk" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) "cSm" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -9137,17 +16740,15 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"cSo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"cSx" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"cSw" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) +/area/almayer/hallways/hangar) +"cSC" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/starboard_missiles) "cSH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9157,194 +16758,169 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"cSR" = ( +"cSP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"cSQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"cSV" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"cTa" = ( -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"cTe" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"cST" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cTz" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"cTD" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"cTE" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" +/area/almayer/living/captain_mess) +"cTf" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_box/magazine/m4ra, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"cUc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cTy" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"cTC" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"cTM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"cUk" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"cUq" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 +/area/almayer/maint/upper/mess) +"cTX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"cUx" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"cUB" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"cUF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/almayer/maint/lower/cryo_cells) +"cUl" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"cUI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, +/area/almayer/maint/hull/upper/s_bow) +"cUo" = ( /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"cUJ" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"cUM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, +/area/almayer/lifeboat_pumps/north1) +"cVb" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"cVf" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/green/north, +/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" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/living/briefing) +"cVt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"cVw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"cVK" = ( +/obj/structure/surface/rack, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/spawner/random/facepaint, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "cVZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"cWq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"cWb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/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/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"cWr" = ( +/obj/structure/machinery/photocopier{ + density = 0; + layer = 2.9; + pixel_x = -3; + pixel_y = 16 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/sign/safety/cryo{ + pixel_x = -19; + pixel_y = 5 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"cWv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/squads/req) -"cWw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/trash/popcorn{ - layer = 3.1; - pixel_x = -3; - pixel_y = 13 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"cWK" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 2"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/obj/structure/machinery/light/containment{ - dir = 1 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"cWy" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cWE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"cWS" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"cXf" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) "cXi" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -9360,28 +16936,65 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cXo" = ( +"cXm" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cXq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"cXz" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"cXx" = ( +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 8 + }, +/obj/structure/transmitter/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/device/toner{ + pixel_x = -2; + pixel_y = -11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cXC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"cXB" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"cXN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"cXD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"cXF" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 4"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell/cl) +"cXR" = ( +/turf/open/floor/almayer/greencorner, /area/almayer/squads/req) "cXV" = ( /obj/structure/bed/chair{ @@ -9389,6 +17002,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/mp_bunks) +"cXW" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) "cXX" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ @@ -9396,71 +17017,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"cXZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"cYk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"cYq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 4 +"cXY" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"cYo" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"cYr" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cYK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/almayer/maint/hull/upper/s_bow) +"cYu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cYN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"cYL" = ( -/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/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "cYT" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"cYV" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 +"cZb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) "cZe" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_f_s) @@ -9483,119 +17075,106 @@ /obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_f_s) -"cZs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"cZB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"cZD" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 8; + c_tag = "AI - Reception Desk"; + autoname = 0 }, -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"cZx" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/appleseed, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cZI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/shipboard/brig/cells) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/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) -"cZR" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"cZS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"cZU" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) "cZV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, /obj/item/tool/lighter, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"daa" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"cZW" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"dah" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/prop/magazine/boots/n160{ - layer = 2.8; - pixel_x = 4; - pixel_y = -8 +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"dat" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"dau" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"dav" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 }, -/obj/item/storage/bible, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"dan" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/u_a_s) "daz" = ( /turf/closed/wall/almayer/aicore/hull, /area/almayer/command/airoom) -"daB" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/frame/table/wood/poor, -/obj/item/frame/table/wood/poor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"daC" = ( -/obj/structure/closet/crate/internals, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) "daF" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) +"daI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Armourer's Workshop"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"dbc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"dbe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) "dbn" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -9612,96 +17191,83 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"dbr" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"dbq" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/engineering/upper_engineering/port) +"dbs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dbC" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"dbG" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"dbM" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/area/almayer/shipboard/brig/perma) +"dbv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = 7 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = 25 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"dbQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dbR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"dbZ" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"dbw" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/obj/structure/sign/safety/ammunition{ +/obj/structure/sign/safety/airlock{ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"dbX" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) "dcd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dce" = ( -/obj/item/reagent_container/food/snacks/grown/poppy{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +"dck" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) "dcp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"dcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) "dcx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) -"dcA" = ( -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_y = 32; - req_one_access_txt = "24;31" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_y = 24; - req_access_txt = "3" - }, +"dcy" = ( /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"dcF" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/shipboard/brig/perma) "dcR" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) @@ -9711,19 +17277,32 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"dda" = ( +"dcX" = ( +/obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"ddf" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"ddj" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/interrogation) +"ddk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"ddw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"ddi" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) "ddz" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 @@ -9738,24 +17317,25 @@ /obj/structure/disposalpipe/segment, /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) -"dea" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"ddO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"deu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"deg" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"deq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "deD" = ( /obj/structure/machinery/prop/almayer/CICmap{ pixel_x = -5 @@ -9770,263 +17350,289 @@ "deH" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/warden_office) -"deS" = ( -/obj/structure/machinery/light/small{ +"deT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"deU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/emerald/north, /area/almayer/living/port_emb) "dfa" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"dff" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, -/area/almayer/command/aist_office) -"dfo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"dfg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"dfs" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/briefing) -"dfw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"dfk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"dgb" = ( -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dfA" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"dgm" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"dgO" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"dfC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"dgg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"dhn" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"dgl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"dhK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"dgx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 13 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"dgI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"dhO" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"dha" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dhd" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"dho" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"dhp" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_p) +"dhA" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) "dhQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) -"diL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower) -"diP" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"dhR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) -"djr" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"djs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ +"div" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"djL" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/obj/item/prop/magazine/book/bladerunner{ - pixel_x = -1; - pixel_y = 9 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"diw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"diz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D4"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"djU" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"dke" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 +/area/almayer/engineering/upper_engineering/port) +"diJ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"djQ" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_x = 28 + pixel_y = 28 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"dkf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Engine Monitoring" +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"dko" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"dks" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"dka" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"dkj" = ( /obj/structure/surface/table/almayer, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser{ - pixel_y = 8 +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"dkw" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -4; - pixel_y = 6 +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"dkq" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer/emeraldfull, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, /area/almayer/living/briefing) -"dkH" = ( +"dkz" = ( +/obj/structure/pipes/vents/scrubber/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dkO" = ( /obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"dla" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"dkP" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dkX" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"dll" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "dlo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"dlH" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 9; - pixel_y = 15 - }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"dlS" = ( -/obj/structure/closet/secure_closet/staff_officer/gear, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"dma" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"dmc" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"dms" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"dlT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"dmg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"dmr" = ( +/obj/structure/transmitter{ + name = "Brig Offices Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Main Offices"; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"dmv" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) "dmA" = ( /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"dmC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"dmE" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/obj/item/mortar_shell/incendiary, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"dmF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) "dmR" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -10045,43 +17651,46 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dne" = ( -/obj/structure/machinery/cryopod/right{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"dnv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/biolab{ - pixel_x = 32; - pixel_y = 7 +"dmZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/obj/structure/sign/safety/water{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"dny" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 1"; + name = "\improper Courtyard Divider" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"dnz" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"dnB" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) +/area/almayer/shipboard/brig/cells) +"dnh" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer/red/northwest, +/area/almayer/maint/upper/u_a_p) +"dnC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"dnE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"dnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) "dnP" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -10089,72 +17698,72 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"dnR" = ( -/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/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"dot" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -1 +"dnS" = ( +/obj/structure/safe, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"dnZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8 +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 7 +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"dof" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Upper Engineering" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"doA" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper CMO's Bedroom"; - req_one_access_txt = "1;5" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"doQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/north2) +/area/almayer/engineering/upper_engineering) +"doJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"doP" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "delivery outlet"; + pixel_x = -1; + pixel_y = 25; + range = 0 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "doU" = ( /obj/structure/surface/rack, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"doV" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dpf" = ( +"doX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"dpo" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, -/area/almayer/command/aist_office) -"dpj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D3"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +/obj/structure/sign/safety/waterhazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"dpl" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 32 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "dpp" = ( /obj/effect/projector{ name = "Almayer_AresUp"; @@ -10170,100 +17779,93 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"dpw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"dpz" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dpC" = ( +"dpA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"dpJ" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) -"dpV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"dpY" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/grown/banana{ - pixel_x = 18; - pixel_y = 5 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"dqb" = ( -/obj/structure/sign/safety/security{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"dqd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/area/almayer/hallways/lower/starboard_aft_hallway) +"dpO" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"dql" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"dqb" = ( +/obj/structure/sign/safety/security{ + pixel_x = -16 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"dqg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"dqj" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/command/lifeboat) "dqw" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room/notunnel) -"dqB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"dqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dqE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"dqP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"drt" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"drj" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"drk" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/north, +/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, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"drT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"drC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/maint/upper/u_m_p) +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "drU" = ( /obj/structure/machinery/door_control{ id = "ARES JoeCryo"; @@ -10277,164 +17879,62 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"drW" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - isopen = 1; - starting_helmet_type = null; - starting_mask_type = null; - starting_suit_type = null; - starting_tank_type = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"dsb" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"dsc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"dse" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/suit/space/compression/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"dsg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"dsi" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"dsj" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"dsk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"dsl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"dsA" = ( /obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"dsY" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dtu" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"dss" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"dsK" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"dsO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/late_join, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/start/senior, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"dsP" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/cic) -"dsU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"dsZ" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"dtq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"dtx" = ( -/obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) "dtH" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"dtL" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"dtM" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"dtT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) "dtZ" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"duc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"duo" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"dug" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dut" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc04"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = 23 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"duh" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "duv" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"duw" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "duz" = ( /obj/structure/mirror{ pixel_y = 32 @@ -10444,47 +17944,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"duB" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"duM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"duY" = ( -/obj/structure/machinery/light/containment, +"duF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"duT" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"duV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"dva" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/living/pilotbunks) -"dvp" = ( -/obj/item/tool/screwdriver, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"dvg" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/sign/safety/chem_lab{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"dvL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/chemistry) +"dvl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"dvV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"dvs" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"dvD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dvZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) "dwj" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/light{ @@ -10492,28 +18001,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"dwk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) "dwl" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) "dwo" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, +/area/almayer/command/aist_office) "dwr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge{ @@ -10522,63 +18019,63 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"dws" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dww" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"dwH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dwN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"dwS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"dxa" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"dwu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"dxj" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"dwA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"dwI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = 25 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"dxu" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"dxq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dxt" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"dxG" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"dxv" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"dxF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"dxJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"dxH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"dxK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) "dxT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -10587,27 +18084,36 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"dxU" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer4" +"dya" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"dxV" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/command/cic) -"dxX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"dyg" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +/area/almayer/shipboard/brig/perma) +"dyb" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dyd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) +/area/almayer/living/briefing) "dyj" = ( /obj/structure/closet/secure_closet/commander, /obj/item/clothing/suit/storage/marine/light/vest, @@ -10617,54 +18123,18 @@ /obj/item/clothing/shoes/laceup, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"dyl" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"dyw" = ( +"dyp" = ( +/obj/structure/machinery/ares/cpu, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"dyq" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"dyE" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"dyR" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"dyX" = ( -/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/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"dyY" = ( +/area/almayer/hallways/lower/starboard_umbilical) +"dyx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; id = "bot_armory"; @@ -10673,42 +18143,36 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"dzc" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"dzj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"dyK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/ce_room) "dzp" = ( /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"dzq" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Research Armory"; - name = "\improper Armory Shutters" - }, +"dzt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 8; + autoname = 0; + c_tag = "AI - Secondary Processors" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) "dzG" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 26 @@ -10734,90 +18198,67 @@ pixel_x = -8; pixel_y = 8 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"dAo" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"dAp" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"dAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) +/area/almayer/hallways/lower/starboard_midship_hallway) +"dAq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) "dAA" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"dAH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"dAQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dAX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"dAJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"dAU" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = 7 +/area/almayer/command/cic) +"dBg" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"dAW" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"dBj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"dBe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"dBh" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"dBl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/hydroponics) "dBp" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -10825,21 +18266,57 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"dBA" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"dBD" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) +"dBs" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"dBG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) "dBH" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) +"dBI" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 4 + }, +/obj/item/trash/USCMtray{ + pixel_y = 6 + }, +/obj/item/trash/USCMtray{ + pixel_y = 8 + }, +/obj/item/trash/USCMtray{ + pixel_y = 10 + }, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"dBO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"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/silver/southeast, +/area/almayer/hallways/lower/repair_bay) "dBS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -10850,22 +18327,20 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"dCk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"dCe" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"dCl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) "dCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -10873,12 +18348,18 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"dCs" = ( -/obj/structure/machinery/light{ - dir = 1 +"dCx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/command/cichallway) "dCz" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wrench{ @@ -10886,51 +18367,26 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"dCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"dCD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"dCL" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"dCR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dCV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/masks{ - pixel_x = 5 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 - }, -/obj/item/reagent_container/glass/minitank{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"dDa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 +/area/almayer/lifeboat_pumps/south1) +"dCK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/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/plate, -/area/almayer/living/briefing) +/area/almayer/hallways/lower/port_aft_hallway) "dDp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -10952,43 +18408,82 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dDS" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"dEh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, +"dDJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"dDL" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"dEi" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 +/obj/structure/machinery/computer/research/main_terminal{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"dDM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop/hangar) +"dDT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"dEm" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment/cell) "dEn" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"dEo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) "dEp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/lower/cryo_cells) -"dEq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"dEt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_umbilical) -"dEF" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"dEG" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"dEJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) "dEK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -11006,19 +18501,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) -"dEV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +"dEQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "dEX" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -11029,42 +18516,49 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"dEY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"dFk" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/command/lifeboat) +"dFl" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dFz" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Shutters"; - pixel_x = -25 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"dFB" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = 3; + vector_y = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, +/area/almayer/command/aist_office) "dFF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"dFI" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/command/lifeboat) -"dFJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +"dFL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"dFM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "dFN" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -11075,49 +18569,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"dGd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"dGj" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"dFR" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"dFW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dGs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/accessory/red, -/obj/item/clothing/head/bowlerhat{ - pixel_x = 3; - pixel_y = 10 +/area/almayer/maint/hull/lower/l_f_p) +"dGg" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/clothing/suit/storage/webbing, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"dGR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/maint/hull/upper/u_m_s) +"dGr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"dHc" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"dGC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/red/north, +/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" }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"dGT" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"dGU" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -27 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "dHd" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -11128,15 +18637,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"dHg" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/cryo_cells) -"dHn" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +"dHe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "dHu" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -11149,38 +18655,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dHw" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment) -"dHF" = ( +"dHV" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"dHH" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/pipes/unary/freezer{ + dir = 8 }, -/obj/structure/largecrate, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"dHJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "dHZ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -11194,119 +18677,100 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating/plating_catwalk/aicore, /area/almayer/command/airoom) -"dIl" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) "dIn" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 5 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"dIv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/target{ - name = "punching bag" +"dID" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"dIQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dIH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dIV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/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 - }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"dII" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "S" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/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 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"dJp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/area/almayer/maint/hull/upper/u_a_p) +"dJy" = ( +/obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dJz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) +/area/almayer/maint/hull/upper/p_bow) +"dJC" = ( +/obj/structure/machinery/sentry_holder/almayer/mini/aicore, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) "dJG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) +"dJI" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/arcturianstopsign{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "dJJ" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution_storage) -"dJU" = ( +"dJO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"dJZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"dKa" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"dKk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"dKF" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dKG" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 }, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dKp" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell/cl) "dKK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -11320,16 +18784,15 @@ "dKL" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) -"dKN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"dKO" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/shipboard/panic) "dKS" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -11340,118 +18803,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) -"dKT" = ( +"dLc" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, -/obj/item/clipboard, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"dLg" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"dLq" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"dLs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"dLx" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"dLA" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dLT" = ( /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"dLW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/almayer/command/lifeboat) +"dLe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"dLt" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"dLz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) "dMj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_p) -"dMl" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Memorial Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"dMr" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"dMy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dMF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, +"dMB" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"dME" = ( /turf/open/floor/almayer/mono, -/area/almayer/squads/req) +/area/almayer/hallways/upper/fore_hallway) "dMK" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell) -"dMN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) "dNj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) +"dNq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) "dNt" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -11461,21 +18870,24 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"dNC" = ( -/obj/structure/machinery/faxmachine, +"dNv" = ( +/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/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"dNM" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"dNO" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "dNW" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -11483,64 +18895,67 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"dOj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"dOp" = ( +"dNZ" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + dir = 1 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dOq" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/sign/safety/hvac_old{ +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"dOe" = ( +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"dOB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"dOl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/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) -"dOW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lockerroom) -"dPb" = ( -/obj/structure/sign/safety/north{ - pixel_x = 32; - pixel_y = 7 +"dON" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"dPd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"dPn" = ( -/turf/open/floor/almayer/orange, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"dPk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"dPm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "dPq" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/cardboard{ @@ -11549,86 +18964,61 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"dPx" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"dPB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) "dPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"dPI" = ( +"dPH" = ( +/obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"dPM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "dPO" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"dPY" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"dPQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"dQg" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/almayer/engineering/lower/workshop) +"dPT" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32; + pixel_y = -32 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"dQo" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"dQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"dQs" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"dQt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Deck Waste Tank Control" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"dQF" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"dQN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dQA" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower) "dQV" = ( /obj/structure/machinery/light{ dir = 1 @@ -11645,23 +19035,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"dRn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +"dRj" = ( +/obj/structure/toilet{ + pixel_y = 13 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"dRy" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/command/lifeboat) -"dRM" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/mp_bunks) +"dRs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"dRv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"dRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/status_display{ pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"dRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/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" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"dRI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES AIST"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper AIST Office"; + dir = 1; + masterkey_resist = 1 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/aist_office) "dRP" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11673,71 +19104,32 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"dRS" = ( -/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/silver/southwest, -/area/almayer/hallways/lower/repair_bay) "dRT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dRV" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"dRZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"dSn" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +"dSm" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) -"dSv" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"dSw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/lower/l_m_p) +"dSp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"dSI" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/hallways/upper/midship_hallway) "dSJ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -11746,26 +19138,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"dSY" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"dTf" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +"dSX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"dSZ" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"dTd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"dTi" = ( -/obj/structure/machinery/ares/processor/apollo, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"dTo" = ( -/obj/structure/closet/boxinggloves, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dTn" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) "dTr" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -11774,76 +19167,58 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"dTu" = ( -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) "dTI" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dTL" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +"dTS" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dTZ" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"dUE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"dUR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"dTV" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = 25 +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"dUS" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"dUZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"dVd" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"dTW" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"dVe" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/briefing) +"dVn" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"dUF" = ( -/obj/structure/machinery/flasher{ - id = "Perma 2"; - pixel_y = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"dVj" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) "dVs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -11854,16 +19229,30 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"dVv" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 +"dVu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/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/test_floor5, -/area/almayer/squads/req) -"dVy" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_p) +"dVO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "dVR" = ( /obj/structure/ladder{ height = 2; @@ -11886,26 +19275,9 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dWj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"dWx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +"dWw" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) "dWA" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -11915,50 +19287,63 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"dWI" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 +"dWJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"dXk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"dXw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dXy" = ( +/area/almayer/maint/hull/lower/l_f_s) +"dWX" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"dXz" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"dXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"dXd" = ( +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"dXo" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dXr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"dXG" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"dXC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"dXI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/shipboard/stern_point_defense) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -11969,6 +19354,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"dXY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) "dYb" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -11982,27 +19373,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"dYi" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"dYl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"dYk" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"dYP" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 +"dYC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "dYR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -12010,14 +19404,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dZf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"dYU" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower/engine_core) -"dZt" = ( -/turf/open/floor/almayer/uscm/directional/north, +/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/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"dYX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "dZu" = ( /obj/structure/machinery/light{ @@ -12025,36 +19441,26 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"dZF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"dZY" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ +"dZZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eaf" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"eal" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/incendiary, -/obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"eam" = ( -/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/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) "ean" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -12069,60 +19475,55 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"eaD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/lower/port_fore_hallway) -"eaG" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/machinery/light{ +"eas" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"eba" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"eax" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"eaz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_missiles) +/turf/open/floor/almayer/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) -"ebm" = ( -/obj/structure/bed/chair/office/dark{ +"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/plate, -/area/almayer/squads/req) -"ebB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 3 +/area/almayer/maint/hull/upper/s_stern) +"ebn" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"ebG" = ( -/obj/structure/window/framed/almayer, +/area/almayer/command/lifeboat) +"ebp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/area/almayer/living/briefing) "ebI" = ( /obj/item/clothing/shoes/red, /turf/open/floor/plating/plating_catwalk, @@ -12130,199 +19531,123 @@ "ebN" = ( /turf/closed/wall/almayer/aicore/reinforced, /area/almayer/command/airoom) -"ebO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"ebT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 5"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"ebV" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "ecb" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"eci" = ( -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/living/briefing) -"ecl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 +"ecj" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ecm" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"ecp" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/maint/hull/lower/l_m_p) +"eco" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) "ecr" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/captain_mess) -"ecu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ecy" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/margherita{ - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"ecI" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/uscm_mre, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ - pixel_x = -7; - pixel_y = 10 +"ecS" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"ecK" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"edh" = ( -/obj/structure/machinery/ares/substrate, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"edi" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 +/area/almayer/maint/hull/lower/s_bow) +"ecZ" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" }, -/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"edL" = ( -/obj/structure/largecrate/random/case/double, +/area/almayer/shipboard/navigation) +"edn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"edo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"edv" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"edG" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"edN" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) +/area/almayer/maint/hull/upper/u_m_p) "edV" = ( /obj/structure/machinery/power/terminal, /turf/open/floor/almayer, /area/almayer/maint/upper/mess) -"een" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eev" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/mousetraps, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 +"eed" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"eeh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eei" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/cups{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"eeG" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"eem" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/boiledrice, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eeH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; +/area/almayer/living/captain_mess) +"eet" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"eeu" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Brig" + icon_state = "pipe-c" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = -25 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"eeA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) -"eeK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"eeL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +"eeC" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) "eeR" = ( /obj/structure/surface/rack, /obj/item/frame/table, @@ -12330,21 +19655,56 @@ /obj/item/frame/table, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"efD" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +"efj" = ( +/turf/open/floor/almayer/red/east, +/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/plate, +/area/almayer/hallways/lower/port_umbilical) +"efC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/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) -"efU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"efK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/lower/l_a_s) +"efT" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) "efV" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -12353,60 +19713,72 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"efW" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"egm" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = -32 +"egc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc01"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = -23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ege" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 4; + pixel_y = -8; + autoname = 0; + c_tag = "AI - Main Staircase" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) "egp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"egr" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"egw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +"egt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"egz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"egG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"egD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"ehc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"egU" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"egY" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/engineering/lower/workshop) "ehi" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -12424,57 +19796,41 @@ "ehl" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/interrogation) -"ehq" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -7; - pixel_y = 17 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"ehu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"ehm" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) "ehx" = ( /obj/effect/landmark/start/marine/tl/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"ehB" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 +"ehJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper AIST Office"; + req_access = null }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = 18; - req_access_txt = "31" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"ehL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"ehF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/item/facepaint/green, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) "ehM" = ( /obj/structure/surface/rack, /obj/structure/machinery/camera/autoname/almayer{ @@ -12483,40 +19839,43 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"ehO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ehR" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"ehW" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"eic" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"eih" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) +/area/almayer/living/port_emb) +"ehX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "eii" = ( /obj/structure/platform{ dir = 4 @@ -12531,103 +19890,135 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) +"eim" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) "eiq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/magazine/dirty, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"eiC" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +"eiw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"eiE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"eje" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"ejL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/optable, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"ejN" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"ejT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"eiN" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"ekg" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"eiP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ejj" = ( +/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/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ejo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"ejt" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/lifeboat) +"ejx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"ejV" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ejY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "eky" = ( /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ekH" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"ekL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"ekz" = ( +/obj/structure/girder/displaced, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_a_p) "ekM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) -"elk" = ( +"ekR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"elq" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_umbilical) +"ekY" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Memorial Room" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"elr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"elu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/living/starboard_garden) +"ekZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"elf" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "elv" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/sign/safety/maint{ @@ -12638,74 +20029,75 @@ "elx" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower) -"elB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"elG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"elE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"elQ" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) "elR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell) -"elT" = ( -/obj/structure/disposalpipe/segment{ +"elV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + dir = 2; + name = "\improper Execution Equipment" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution_storage) +"elY" = ( +/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/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"eme" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"eml" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"emn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"elZ" = ( -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/southwest, -/area/almayer/command/aist_office) -"emg" = ( -/obj/item/trash/c_tube{ - pixel_x = 16; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "emp" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/processing) -"emq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) "emr" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"emu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) "emw" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -12719,152 +20111,60 @@ "emC" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_f_p) -"emE" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer/silver/east, +"emK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"emL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"ene" = ( +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/securestorage) -"emJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 2"; - locked = 1; - name = "\improper Containment Cell 2" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 2"; - name = "\improper Containment Cell 2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"emM" = ( -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"emO" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"enk" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"enn" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; - name = "\improper Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"eno" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +"eni" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"enr" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"enz" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter/zippo, -/obj/item/toy/dice/d20, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 - }, +/area/almayer/engineering/lower/workshop) +"enK" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"enQ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"enL" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 16; - pixel_y = 26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) +/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) -"eoc" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_lobby) -"eod" = ( -/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/plate, -/area/almayer/maint/upper/u_m_s) -"eoe" = ( -/obj/structure/machinery/light{ +"eob" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"eom" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"eow" = ( -/obj/structure/largecrate, -/obj/item/folded_tent/reqs{ - pixel_x = -3; - pixel_y = 10 - }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/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 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"eoE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -12872,15 +20172,33 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"ept" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"eoK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"epk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"epu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"epB" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/living/gym) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"epI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/terminal{ + pixel_y = 26; + pixel_x = 8; + layer = 2.2 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, +/area/almayer/command/aist_office) "epJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -12890,37 +20208,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"epS" = ( -/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/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"epX" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"epY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"epT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) "eqb" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -12947,68 +20240,115 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"eqp" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"eqw" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 +"eqd" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer/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/plate, -/area/almayer/command/cichallway) -"eqF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/terminal{ - pixel_y = 26; - pixel_x = 8; - layer = 2.2 +/area/almayer/maint/hull/lower/l_m_s) +"eqB" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, -/area/almayer/command/aist_office) -"eqH" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"eqK" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/engineering/port_atmos) +"eqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"eqI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"eqL" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "eqN" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"erb" = ( +"eqP" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"erd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"ere" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"erh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) "ern" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"ers" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"erv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"erE" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"erF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "erG" = ( /obj/structure/disposalpipe/junction{ dir = 2; @@ -13018,18 +20358,35 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"erW" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"esb" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 37; - req_one_access = null +"erL" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/maint/hull/lower/l_m_s) +"erN" = ( +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"esd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "esm" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -13053,21 +20410,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"ess" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"esA" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) "esC" = ( /obj/structure/toilet{ pixel_y = 13 @@ -13085,6 +20427,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/captain_mess) +"esF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) "esK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -13099,42 +20447,94 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"etc" = ( +"esQ" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/upper/fore_hallway) +"esT" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/lifeboat) +"etf" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/command/lifeboat) +"etn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"etG" = ( -/turf/open/floor/almayer/uscm/directional/west, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) -"etN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"etR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +"ets" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"eum" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + 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 = "E"; - pixel_x = 1 + layer = 3.33; + pixel_x = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + icon_state = "S"; + layer = 3.3 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"ety" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/area/almayer/maint/hull/lower/l_m_s) +"etE" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"etF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"etM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"etN" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"eua" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"eup" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/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" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "euN" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -13148,68 +20548,40 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"euP" = ( -/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/green/west, -/area/almayer/hallways/upper/fore_hallway) -"euX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"evd" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"evf" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"evp" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"euV" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/cic) +"euW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"evr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"eva" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"evg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"evk" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"evy" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"evz" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"evA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/engineering/upper_engineering/starboard) "evC" = ( /obj/structure/bed/chair{ dir = 4 @@ -13223,17 +20595,24 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) +"evM" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"evR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) "evX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"evZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) "ewc" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/light{ @@ -13241,31 +20620,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"ewn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"ewp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Gym" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"ewq" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "ewr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -13276,40 +20630,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"ewy" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ewJ" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"ewM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ewQ" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +"ewI" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" }, -/obj/structure/platform{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ewR" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/command/lifeboat) -"ewZ" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"ewO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"ewS" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"ewT" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/southwest, +/area/almayer/command/aist_office) "exb" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -13317,6 +20663,12 @@ }, /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/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, @@ -13325,133 +20677,54 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"exo" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"exx" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"exG" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"exy" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"exI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"exL" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"exR" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"exT" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"exV" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_f_s) -"eyf" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"eyn" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"eys" = ( -/obj/structure/machinery/botany/editor{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 5; - pixel_y = 24 + icon_state = "N" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"exQ" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) "eyD" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/starboard_hallway) -"eyJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = -6 - }, +"eyG" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"eyM" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"eyK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"eyL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_f_p) +"eyQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"eyR" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"eyT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"eyV" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"eyW" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, -/area/almayer/command/aist_office) -"eyZ" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) "ezq" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -13464,50 +20737,100 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"ezz" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/lifeboat) -"ezA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/computer{ - pixel_x = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = 25 +"ezG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/item/prop/magazine/book/borntokill{ - pixel_x = -6; - pixel_y = 7 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"ezQ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ezX" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"ezY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"eAg" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer/red/southeast, +/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) -"eAA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"eAx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"eAC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"eAF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/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/plate, +/area/almayer/squads/req) +"eAI" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/engine_core) +"eAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) "eAN" = ( /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"eAU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"eBd" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "eBe" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -13516,176 +20839,145 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eBh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"eBm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"eBn" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +"eBx" = ( +/obj/structure/closet/emcloset/legacy, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) "eBE" = ( /obj/structure/machinery/photocopier{ anchored = 0 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"eBF" = ( -/obj/structure/bed/chair{ +"eBG" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"eBL" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"eBQ" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"eBT" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"eCg" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"eCP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autodispenser{ - dir = 4 - }, +/area/almayer/maint/hull/lower/l_m_p) +"eBO" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"eCW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/crew/alt{ +"eBV" = ( +/obj/structure/window/reinforced{ dir = 8; - pixel_y = 4 + health = 80 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"eDj" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"eBZ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_corner/west, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) -"eDm" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsLower"; - name = "\improper ARES Core Shutters"; - plane = -7 +"eCo" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/step_trigger/ares_alert/public{ - alert_id = "AresStairs"; - alert_message = "Caution: Movement detected in ARES Core."; - cooldown_duration = 1200 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"eDu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"eDw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"eCt" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"eDx" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 27 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"eDD" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"eCI" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/execution) +"eDe" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"eDo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"eDq" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"eDG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/area/almayer/maint/hull/upper/u_m_s) +"eDt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"eEl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"eDu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"eDT" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"eEn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"eEc" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "SE-out" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eEk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) "eEo" = ( /obj/structure/filingcabinet, /turf/open/floor/almayer, @@ -13696,73 +20988,76 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"eEC" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"eEQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) "eFa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"eFn" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"eFq" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 +"eFj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"eFu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; +/area/almayer/squads/charlie) +"eFG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"eFK" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ dir = 8; - req_access_txt = "8" + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"eFv" = ( +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"eFM" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_y = -2; - req_one_access_txt = "3;22;19" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/offices/flight) -"eFF" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"eFL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"eFP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) +/obj/structure/closet/secure_closet/fridge/organic, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "eFT" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -13790,19 +21085,10 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"eGi" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"eGo" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) +"eGq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) "eGr" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /obj/structure/machinery/camera/autoname/almayer/containment/ares{ @@ -13812,165 +21098,192 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"eGt" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) "eGB" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eGF" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 +"eGH" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "eGZ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eHg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"eHr" = ( +"eHa" = ( /obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"eHx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"eHy" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"eHX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"eHY" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"eIf" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "pipe-c" + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"eHU" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"eIb" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"eIu" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"eIA" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/auxiliary_officer_office) -"eIQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "agentshuttle"; - indestructible = 1; - unacidable = 1 +/area/almayer/maint/upper/u_f_s) +"eIN" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"eIO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 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/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) "eIY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"eJa" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"eJP" = ( -/turf/open/floor/almayer/red, +"eJg" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"eJQ" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/almayer/command/lifeboat) +"eJU" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) "eJX" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"eKq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = list(36) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/synthcloset) -"eKz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"eKy" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"eKA" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/engineering/lower) "eKH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"eKP" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"eKI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"eKJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) "eKQ" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"eKS" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"eLg" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ +"eKT" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"eKZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "ramptop" + name = "\improper Port Viewing Room" }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"eLj" = ( -/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"eLp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/machinery/computer/supplycomp/vehicle, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"eLq" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"eLx" = ( -/obj/structure/bed/chair{ - dir = 1 +/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/emerald/east, +/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 }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/area/almayer/maint/hull/lower/l_f_p) "eLH" = ( /obj/structure/surface/table/almayer, /obj/item/storage/beer_pack, @@ -13983,191 +21296,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"eLK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"eLW" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"eMh" = ( -/obj/structure/machinery/light{ - dir = 1 +"eLX" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"eMi" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 - }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"eMq" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) +/area/almayer/shipboard/brig/mp_bunks) "eMr" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"eMv" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) "eMx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"eMy" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_m_p) -"eMC" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"eMG" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"eMH" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"eMZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, +"eMI" = ( +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/lower/port_midship_hallway) -"eNd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"eNg" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"eNi" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/ce_room) -"eNw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"eNz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eNF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"eNH" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"eNR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"eNV" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc04"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"eNW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"eOa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 +"eMJ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"eOc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"eMP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -14175,26 +21337,36 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"eOh" = ( -/obj/structure/sign/safety/terminal{ - layer = 2.5; - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"eMZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/chem_simulator{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eNi" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/ce_room) +"eNI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"eOn" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"eNL" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eNR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) "eOx" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -14203,81 +21375,31 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"ePc" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/pilotbunks) -"ePh" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ePl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 +"eOM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ePu" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"eON" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"ePq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) "ePz" = ( /obj/structure/largecrate/supply/weapons/pistols, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_s) -"ePF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"ePI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/kitchen/knife, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"ePJ" = ( -/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/plate, -/area/almayer/maint/hull/upper/s_bow) "ePM" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -14293,6 +21415,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"ePN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plastic{ + amount = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "eQj" = ( /obj/structure/machinery/door_control{ id = "ARES StairsUpper"; @@ -14323,38 +21469,16 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"eQp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"eQq" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"eQH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +"eQm" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/maint/hull/upper/p_bow) +"eQz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "eQJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -14364,43 +21488,9 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"eQS" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"eQT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - dir = 2; - name = "\improper Execution Equipment" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution_storage) -"eQX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"eRb" = ( -/obj/effect/decal/cleanable/vomit, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"eRd" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) +"eQR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) "eRi" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black{ @@ -14413,74 +21503,72 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"eRl" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 +"eRu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"eRr" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) -"eRN" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge3" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"eSa" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"eRy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc04"; + name = "\improper Treatment Center" }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"eSf" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"eRR" = ( +/obj/item/clothing/head/helmet/marine{ + pixel_x = 16; + pixel_y = 6 }, +/obj/item/reagent_container/food/snacks/grown/poppy, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"eRS" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"eSk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"eSi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"eSj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"eSo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/medical_science) -"eSm" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) "eSp" = ( /obj/structure/sign/safety/ladder{ pixel_x = -16 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"eSw" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +"eSU" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) "eTb" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/stern) @@ -14494,25 +21582,30 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eTf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"eTm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"eTv" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"eTH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"eTL" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"eTx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"eTC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"eTD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "eUe" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -14520,164 +21613,236 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) -"eUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"eUf" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eUh" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"eVB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"eUn" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/chemistry) +"eUA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eUZ" = ( /obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 + pixel_y = 28 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"eVD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eVj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eVm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"eVI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_x = -2; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eVv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"eVE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "eVQ" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"eVZ" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"eWb" = ( -/obj/structure/barricade/handrail{ +"eVR" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"eVT" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"eWf" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = 2 + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"eWq" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/cryo_cells) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"eWp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "eWs" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_f_s) +"eWv" = ( +/turf/open/floor/almayer/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) -"eWB" = ( +"eWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"eXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"eXq" = ( +/turf/closed/wall/almayer, +/area/almayer/living/offices/flight) +"eXr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"eXy" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"eXD" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"eWD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"eWO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"eXh" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"eXN" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_silver, +/area/almayer/command/aist_office) +"eYj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"eXj" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/obj/item/tool/pen, -/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"eXq" = ( -/turf/closed/wall/almayer, -/area/almayer/living/offices/flight) -"eXr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"eXv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/almayer/living/briefing) +"eYn" = ( +/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/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"eXC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"eYr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"eXP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"eXR" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane{ - anchored = 1 +/obj/structure/surface/rack{ + density = 0; + pixel_x = -16 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"eYu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/squad_changer{ + pixel_x = -9 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"eXW" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/machinery/computer/card{ + pixel_x = 9 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eYh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/briefing) +"eYD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"eYn" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"eYF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "eYM" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -14690,9 +21855,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"eYO" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -14700,23 +21862,12 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"eYU" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"eZi" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, +"eYR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 5 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) "eZm" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/p_stern) @@ -14733,38 +21884,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eZr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"eZp" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"eZC" = ( /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eZs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) +/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) -"eZM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) "eZR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14774,27 +21913,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) -"faa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"faf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "fag" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14802,19 +21920,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"fah" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +"far" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"faC" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_aft_hallway) "faE" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -14834,20 +21946,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"faH" = ( -/obj/structure/closet{ - name = "backpack storage" - }, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/mortarpack, -/obj/item/storage/backpack/marine/mortarpack, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"faJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "faO" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, @@ -14864,24 +21962,105 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"fbf" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 8 +"faX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"fbP" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/cryo_cells) -"fbS" = ( -/obj/effect/landmark/railgun_computer{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fbb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"fbe" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"fbo" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fbr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + dir = 2; + name = "\improper Brig Lobby" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"fbu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fbw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"fbB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"fbC" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/hull/lower/l_m_s) +"fbR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/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/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"fbV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) +/area/almayer/lifeboat_pumps/north2) "fca" = ( /obj/structure/disposalpipe/segment{ layer = 5.1; @@ -14895,53 +22074,42 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fck" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"fct" = ( -/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" +"fco" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"fcX" = ( -/obj/structure/platform{ +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"fcy" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"fdc" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"fcB" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"fcE" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/basketball) +"fcM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"fdf" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"fds" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 + dir = 8 }, /turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"fcP" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"fcS" = ( +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "fdx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14952,23 +22120,36 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"fdF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"fdE" = ( +/obj/item/clothing/mask/rebreather/scarf, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fdX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"fdZ" = ( +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/lower/l_f_s) "feb" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/execution) -"fec" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) "feo" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -14977,19 +22158,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"feu" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"feB" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +"feq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"feD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) "feG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -14998,6 +22182,21 @@ /obj/item/trash/cigbutt, /turf/open/floor/almayer, /area/almayer/living/offices) +"feS" = ( +/obj/structure/machinery/door_control{ + id = "pobunk2"; + name = "PO2 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"feY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) "ffg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -15021,12 +22220,17 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"ffG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"ffx" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/upper_medical) +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ffE" = ( +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) "ffN" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -15038,70 +22242,31 @@ /obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) -"ffO" = ( -/obj/structure/machinery/power/apc/almayer{ +"fgh" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"ffR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"ffS" = ( -/obj/structure/machinery/photocopier, +/area/almayer/shipboard/starboard_point_defense) +"fgl" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fgk" = ( -/obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"fgo" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"fgr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/skills{ - dir = 4; - pixel_y = 18 +/area/almayer/shipboard/brig/perma) +"fgm" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 }, -/obj/structure/machinery/computer/secure_data{ +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"fgt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4; - pixel_y = -18 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"fgu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"fgy" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"fgC" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/shipboard/brig/medical) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15123,19 +22288,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fgH" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"fgO" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) "fgR" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; @@ -15153,79 +22305,37 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) +"fgU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "fhf" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"fho" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"fhq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"fhC" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"fhR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"fhU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"fhV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, +"fhH" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) -"fhZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +"fhR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) "fic" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"fio" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"fir" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower/workshop/hangar) -"fiu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) +"fie" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop) "fix" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -15233,30 +22343,6 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"fiy" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) "fiE" = ( /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; @@ -15267,122 +22353,42 @@ /obj/item/device/camera_film, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"fiJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"fiL" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"fiQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"fiS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"fiT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"fiU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"fjb" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, +/area/almayer/engineering/lower) +"fje" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"fji" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/tool/screwdriver, -/obj/item/bananapeel{ - desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; - icon = 'icons/obj/items/weapons/guns/attachments.dmi'; - icon_state = "iffbarrel"; - name = "Broken B8 Smart-Scope"; - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"fjk" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_m_p) -"fjC" = ( -/obj/structure/bed/chair{ +"fjo" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"fjz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"fjA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"fjN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"fjO" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"fjV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"fkA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fkC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"fkE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"fkK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"fkP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"fkW" = ( /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_m_s) "fkX" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 @@ -15395,23 +22401,16 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"flo" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"flu" = ( -/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 +"flr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"flD" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) "flL" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 8; @@ -15435,20 +22434,23 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"fmg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;7" +"flW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"fmr" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"fml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) "fmv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -15460,150 +22462,82 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"fmA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"fmI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"fmJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +"fmB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"fmP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/pilotbunks) +"fmZ" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"fnc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"fmY" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) "fnk" = ( /obj/structure/blocker/fuelpump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"fns" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"fnu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "fnv" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"fnE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"fnx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/landmark/map_item, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"fnA" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fnF" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"fnG" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) "fnH" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"fox" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +"fnI" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"foC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"foy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"foF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"foG" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"foL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"foJ" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) "foN" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, @@ -15626,50 +22560,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"fpl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"fpo" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 +"foS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/living/briefing) -"fpq" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"fpr" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"fpi" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"fpA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"fpG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"fpI" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"fpK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) +/area/almayer/hallways/lower/starboard_aft_hallway) "fpM" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -15677,39 +22598,44 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"fpQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"fpR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"fpT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"fpW" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"fqb" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"fpS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/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/plate, -/area/almayer/medical/lower_medical_medbay) -"fqo" = ( -/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/test_floor4, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_f_p) +"fqc" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "fqw" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -15718,6 +22644,23 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) +"fqA" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"fqC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/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" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) "fqO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -15725,13 +22668,13 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"fqS" = ( -/obj/structure/barricade/handrail{ +"fqQ" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = 2 + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) "fqU" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -15739,90 +22682,107 @@ 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) -"fqY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"fqW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"fqZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"frb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ + pixel_y = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"frl" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"frt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 6; + pixel_y = 9; + req_access_txt = "3" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"fre" = ( -/obj/structure/machinery/photocopier, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"frn" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"frz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/obj/structure/machinery/power/reactor, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"frv" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"frw" = ( -/obj/structure/platform_decoration{ +/area/almayer/shipboard/starboard_point_defense) +"frF" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"frx" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"fsf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"frR" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 - }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"frV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"fsc" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_umbilical) "fsh" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"fsA" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"fsp" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/structure/largecrate/random/barrel/green, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"fsM" = ( -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) +/area/almayer/living/gym) "fsR" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -15830,133 +22790,89 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"fsT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"fsU" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"fsV" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"fuz" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fte" = ( +/area/almayer/living/pilotbunks) +"fuS" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"ftg" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"fts" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sink{ dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ftu" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ftw" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -18 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"ftD" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"ftI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 5 + pixel_x = 11 }, -/obj/item/tool/pen, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"ftL" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fuT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) -"fui" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"fuU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"fuY" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"ful" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/starboard_missiles) -"fuv" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"fva" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fuA" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/item/storage/firstaid/regular, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"fuN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"fuV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/living/briefing) +"fvd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"fvf" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"fvo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fvk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"fvq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) +/area/almayer/maint/hull/upper/u_a_p) "fvA" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"fvK" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +"fvB" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "fvN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15967,13 +22883,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"fvS" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"fvU" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering/port) "fvV" = ( /obj/structure/machinery/light{ dir = 1 @@ -15987,120 +22896,43 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"fvX" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/gym) -"fvY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/basketball) -"fwj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"fwr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"fwD" = ( +/obj/item/reagent_container/food/snacks/grown/poppy{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"fwv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"fwI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "fwK" = ( /turf/closed/wall/almayer/outer, /area/almayer/hallways/lower/starboard_umbilical) -"fwN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"fwW" = ( +"fwM" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "fwY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"fwZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"fxI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"fxd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cichallway) -"fxn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"fxo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"fxw" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"fxA" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/maint/upper/mess) -"fxF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"fxG" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) "fxJ" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -16108,20 +22940,30 @@ /obj/item/weapon/shield/riot, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"fxP" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +"fxZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/command/lifeboat) -"fyC" = ( -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer/sterile_green, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) +"fya" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"fyp" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) "fyD" = ( /obj/structure/machinery/light, /obj/structure/ladder{ @@ -16130,56 +22972,63 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"fyF" = ( -/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/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"fyH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) "fyI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/warden_office) -"fzg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"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/test_floor4, +/area/almayer/maint/upper/mess) +"fzc" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fzq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"fzn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"fzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 }, -/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"fzL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/maint/upper/u_f_p) +"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/plate, -/area/almayer/command/lifeboat) +/area/almayer/maint/hull/lower/l_f_s) "fzP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -16194,129 +23043,50 @@ req_access_txt = list(); req_one_access_txt = "1;6" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"fzR" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/mp_bunks) -"fAl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"fAr" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"fAw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/view_objectives, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"fAG" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/squads/delta) -"fAO" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/chemistry) -"fAV" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"fBp" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/firingrange{ - pixel_x = 32; - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"fBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"fBC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, +/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/plate, -/area/almayer/living/pilotbunks) -"fBI" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 3; - pixel_y = 3 +/area/almayer/maint/hull/lower/l_f_s) +"fAa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/vending/snack{ - pixel_x = -18; - pixel_y = 4 +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fBS" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"fBU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/offices/flight) +"fAr" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"fBi" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fBo" = ( +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"fCd" = ( -/obj/structure/machinery/door_control{ - id = "or1privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 +/area/almayer/maint/hull/lower/l_a_s) +"fBO" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "fCg" = ( /obj/effect/projector{ name = "Almayer_Up4"; @@ -16325,27 +23095,17 @@ }, /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/plate, +/area/almayer/maint/hull/upper/u_m_p) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"fCs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"fCC" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) "fCG" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -16353,154 +23113,160 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) +"fCI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES JoeCryo"; + name = "\improper ARES Synth Bay Shutters"; + plane = -7; + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "fCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fCM" = ( -/obj/structure/machinery/cryopod/right, +"fCT" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/area/almayer/engineering/lower/engine_core) "fCW" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) -"fDw" = ( -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = 6 +"fDh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/sterile_green_side, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"fDj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"fDC" = ( +"fDG" = ( +/obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, -/obj/item/toy/deck{ - pixel_x = -9 + dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"fDI" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"fDJ" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fDS" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"fDU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fDZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"fEg" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -29 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"fEi" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = -8; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fDV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"fEl" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 2"; - pixel_x = -24 +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"fEs" = ( -/obj/structure/surface/table/almayer, -/obj/item/shard, -/obj/item/tool/extinguisher, -/obj/item/stock_parts/scanning_module, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"fEx" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) +/area/almayer/living/pilotbunks) +"fEe" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fEk" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fEC" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/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) -"fEI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"fER" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"fFe" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"fFj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"fFr" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"fFh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"fFD" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"fFu" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"fFL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"fFO" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/morgue{ dir = 8 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/west, -/area/almayer/command/aist_office) -"fFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/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/sterile_green_side, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "fFU" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -16508,138 +23274,77 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"fGe" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = 32 +"fGa" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) +/turf/open/floor/almayer/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/mono, +/area/almayer/hallways/lower/vehiclehangar) "fGg" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fGq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light, +"fGi" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"fGG" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/clothing/head/beret/royal_marine, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) -"fGL" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"fGO" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - layer = 3.1; - pixel_x = -12; - pixel_y = 14 - }, -/obj/item/toy/deck/uno{ - layer = 3.1; - pixel_x = -3; - pixel_y = -1 +/area/almayer/maint/hull/lower/l_a_s) +"fGu" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext"; + name = "Window Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "28" }, -/obj/item/toy/handcard/uno_reverse_yellow{ - pixel_x = 6; - pixel_y = 5 +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_x = -26; + pixel_y = 1; + req_access_txt = "28" }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) -"fGY" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"fGB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "fHb" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"fHl" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"fHs" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"fHu" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi_ext" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"fHH" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/hydroponics) -"fHV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"fIx" = ( +"fHh" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"fIG" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fHz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/living/gym) +"fHF" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "fIK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -16649,13 +23354,42 @@ /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"fJl" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"fIX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access_txt = "19;21" }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"fIZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"fJm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"fJp" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fJt" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "fJu" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, @@ -16668,18 +23402,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"fJK" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) "fJO" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -16690,33 +23412,94 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"fJW" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fJZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) +"fJT" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/turf/open/floor/almayer/green/southeast, +/area/almayer/shipboard/brig/cells) +"fKe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) "fKh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"fKp" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"fKi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"fKt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fKw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 5"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"fKT" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"fKV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = 1; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"fLe" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) +/area/almayer/living/grunt_rnr) "fLf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -16724,17 +23507,23 @@ /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{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fLi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "fLl" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/s_stern) -"fLo" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) "fLt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -16744,73 +23533,66 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"fLw" = ( -/obj/structure/machinery/light{ +"fLu" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/transmitter{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Oxygen Supply Console" + }, +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/obj/structure/machinery/vending/ingredients, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fLE" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) +/area/almayer/engineering/lower) +"fLv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "fLF" = ( /obj/structure/machinery/brig_cell/perma_2{ pixel_x = -32 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"fMc" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/boonie, -/obj/item/trash/chunk/hunk, -/obj/item/trash/crushed_cup, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"fMv" = ( -/obj/structure/platform{ - dir = 8 +"fMe" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/paper, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10; + pixel_y = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"fMt" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/laser{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "fME" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) -"fMI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"fMJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fMO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) "fMU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -16824,9 +23606,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"fNg" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, +"fNd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16843,40 +23628,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fNq" = ( -/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/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"fNz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fNH" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fNX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fOh" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) "fOk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fOp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) "fOv" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16886,59 +23652,90 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"fOB" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 +"fOz" = ( +/obj/structure/target{ + name = "punching bag" }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"fOE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"fOK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fOL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"fPn" = ( /obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"fOW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"fPk" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"fPo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/hangar) +"fPp" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"fPL" = ( -/obj/structure/machinery/firealarm{ +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 24 + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"fPM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"fPu" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fPB" = ( +/obj/structure/machinery/ares/processor/apollo, +/turf/open/floor/almayer/no_build/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/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fQn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "fQu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "CMO Shutters"; @@ -16947,37 +23744,20 @@ /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"fQw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 12 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/structure/sign/poster/propaganda{ - pixel_y = 34 +"fQy" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"fQC" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"fQE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fQD" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 8; + autoname = 0; + c_tag = "AI - Core Chamber" }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) "fQS" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16988,38 +23768,26 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"fQU" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"fQV" = ( -/obj/structure/stairs{ - dir = 1 +"fRg" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"fRr" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"fRk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cichallway) "fRC" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fRG" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) "fRL" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -17027,19 +23795,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"fRM" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) "fRS" = ( /obj/effect/landmark/start/warden, /obj/effect/decal/warning_stripes{ @@ -17048,15 +23803,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"fSr" = ( -/obj/item/stack/tile/carpet{ - amount = 12 +"fSl" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 }, -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"fSm" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) "fSx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -17067,40 +23826,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"fSG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"fSH" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/command/cic) -"fSL" = ( -/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/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fTa" = ( -/obj/structure/machinery/light{ - dir = 4 +"fSF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower) +"fTj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"fTc" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) "fTl" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_a_s) @@ -17108,25 +23847,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"fTp" = ( -/obj/structure/ladder{ - height = 1; - id = "med1" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"fTq" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) "fTt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -17134,81 +23854,47 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"fTy" = ( -/obj/structure/machinery/cm_vending/clothing/engi/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) "fTC" = ( -/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_x = 4; - pixel_y = 15 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/tool/surgery/bonegel/empty{ - layer = 3.01; - pixel_x = -5; - pixel_y = 19 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, +/area/almayer/command/aist_office) +"fTF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"fTH" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"fUz" = ( /obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"fTU" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"fTX" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"fUs" = ( -/obj/structure/bed/chair/comfy/bravo, +/obj/item/storage/box/cups, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/area/almayer/maint/hull/lower/s_bow) "fUA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"fUE" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, +"fUB" = ( +/obj/structure/closet/secure_closet/fridge/organic/stock, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"fUS" = ( -/obj/structure/machinery/power/apc/almayer{ +/area/almayer/living/grunt_rnr) +"fUC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/living/briefing) +"fUZ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "fVa" = ( /obj/item/stack/catwalk, /obj/structure/platform_decoration{ @@ -17219,20 +23905,27 @@ "fVe" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_a_p) -"fVt" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +"fVk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"fVo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/workshop) +"fVx" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, +/area/almayer/command/airoom) +"fVz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"fVw" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "fVF" = ( /obj/structure/machinery/light{ dir = 4 @@ -17242,32 +23935,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"fVH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fVU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +"fVG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"fVW" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"fWg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W" }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) "fWi" = ( /obj/structure/toilet{ dir = 1 @@ -17280,47 +23959,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fWC" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"fWG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"fWU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fWV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"fWW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"fWX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) "fXg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -17328,60 +23966,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"fXh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "Morgue Waiting Room"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"fXm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"fXx" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"fXz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"fXn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"fXE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) -"fXq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"fXG" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"fXH" = ( -/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/command/combat_correspondent) "fXN" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"fXX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fXO" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"fXP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"fXZ" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"fYb" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) "fYf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -17389,85 +24015,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fYj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"fYk" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"fYl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"fYr" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, +/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fYv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"fYB" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "Comms"; - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"fYF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"fYL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"fYT" = ( -/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/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_f_s) "fYZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"fZl" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/engine_core) "fZo" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -17487,16 +24052,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"fZu" = ( -/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/test_floor4, -/area/almayer/engineering/lower/engine_core) "fZy" = ( /obj/structure/sign/poster{ pixel_y = -32 @@ -17506,9 +24061,35 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) +"fZA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/north, +/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 + }, +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/upper/u_a_p) "fZR" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, @@ -17525,155 +24106,104 @@ /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"gae" = ( -/obj/structure/machinery/door_control{ - id = "firearm_storage_armory"; - name = "Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"gaB" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gaG" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/living/grunt_rnr) -"gaH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gac" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "gaJ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/cryo) -"gaR" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"gaT" = ( +"gaQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"gbb" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gbx" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gci" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"gcw" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"gcI" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"gbg" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"gcO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"gcS" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/obj/structure/sign/safety/laser{ + pixel_y = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gcT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gcY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin{ - pixel_x = -7 +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/obj/item/paper_bin{ +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"gbm" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"gbs" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; pixel_x = 5; - pixel_y = 10 + pixel_y = 1 }, -/obj/item/tool/pen{ - pixel_y = 3 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"gbw" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"gcm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"gcN" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + access_modified = 1; + name = "\improper Senior Enlisted Advisor's Office"; + req_access = null; + req_access_txt = "19;29" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"gdz" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"gde" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"gdF" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"gdp" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/hangar) +"gdG" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) "gdJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -17687,111 +24217,92 @@ }, /turf/open/floor/plating, /area/almayer/engineering/laundry) -"ged" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"geg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 4; + pixel_y = 12 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"gee" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Normandy Remote Control Console"; + pixel_y = -12; + shuttleId = "dropship_normandy" }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"gej" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"gei" = ( +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/biohazard{ + pixel_x = -17; + pixel_y = -7 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) +/obj/structure/medical_supply_link, +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gek" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "gel" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) -"gem" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"geo" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 8 +"gen" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/briefing) -"geu" = ( +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, /obj/structure/machinery/light, -/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) -"gew" = ( -/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/plate, +/area/almayer/maint/hull/upper/u_f_p) +"ger" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 5 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"gex" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"gey" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/item/tool/pen{ + pixel_x = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"geG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/clipboard{ + pixel_x = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"geK" = ( +/obj/item/folder/white{ + pixel_x = -8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"geu" = ( /obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"gfd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"geP" = ( -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - pixel_y = -20; - req_access_txt = "5" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/upper_medical) +/obj/structure/machinery/power/apc/almayer, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) "gfo" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -17799,10 +24310,9 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"gfs" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer/green, +"gfq" = ( +/obj/structure/closet/secure_closet/fridge/groceries, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "gfu" = ( /obj/effect/decal/warning_stripes{ @@ -17815,10 +24325,18 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"gfO" = ( -/obj/structure/machinery/vending/coffee, +"gfG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/engineering/lower/workshop) +"gfN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) "gfW" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lockerroom) @@ -17828,111 +24346,151 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"ggl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ggo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ggt" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"ggz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/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) +"ggJ" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc03"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = -23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "ggQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"ggX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"ghc" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +"ggS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/weapon_room) -"ghd" = ( -/obj/structure/bed/chair/comfy/alpha{ +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"ghA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"ghf" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"ghz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "ghF" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"ghK" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"gia" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"giE" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"gii" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"giG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"gio" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"gip" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"giD" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"giL" = ( -/turf/open/floor/almayer/silver/north, +/area/almayer/maint/upper/u_f_p) +"giR" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/shipboard/brig/cic_hallway) -"giO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"giW" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_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/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"gji" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"giP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gjm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"gjc" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 +/area/almayer/hallways/hangar) +"gjq" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/stairs{ - dir = 1 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"gjt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) "gjv" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -17944,178 +24502,115 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"gjE" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/briefing) -"gjM" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"gjV" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/cic) -"gjW" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gkh" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = 8 +"gjB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door_control/brbutton{ - id = "engie_store"; - name = "Emergency Storage"; - pixel_x = -2; - pixel_y = 26; - req_one_access_txt = "6" +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"gjK" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, -/obj/structure/machinery/computer/cameras/almayer/ares{ +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"gkr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"gkE" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -17; - pixel_y = -6 + icon_state = "pipe-c" }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/ce_room) -"gku" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"glj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"gkK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "gll" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"glA" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"glM" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"glO" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"glY" = ( -/obj/structure/safe, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"gmm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"gmw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; - pixel_y = 7 +"gls" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"glB" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 5; + pixel_y = 29 }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"glG" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; pixel_y = 3 }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"gmI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"gmL" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"gna" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"gni" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/cryo_cells) -"gnl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt, -/obj/item/ashtray/glass, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"gnm" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/obj/item/storage/box/masks, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"glH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = -6 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"glP" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"gnp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/brig/execution_storage) +"gmb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"gmj" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/area/almayer/shipboard/starboard_point_defense) +"gms" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) "gnu" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"gnv" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "gnB" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"gnH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "gnK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -18123,101 +24618,114 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"gnW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) +"gnM" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "gof" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) -"gox" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +"goj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"goE" = ( -/obj/structure/sign/poster{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"gol" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"goH" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"goP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/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/sterile_green_side, -/area/almayer/medical/medical_science) -"goY" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"gpf" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"goy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"gpj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gpk" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - pixel_y = 24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/cotablet, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"gpm" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"goL" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"goM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"gpO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"gpP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/maint/hull/lower/l_a_p) +"goY" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"gpc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" }, -/obj/structure/bed/chair{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"gpS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"gpi" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"gpp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"gpI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gpO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"gpT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) "gpW" = ( /obj/structure/surface/table/reinforced/almayer_B{ indestructible = 1; @@ -18238,52 +24746,18 @@ "gpY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/lifeboat_pumps/north1) -"gqb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"gqg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Chief Engineer's Bunk"; - no_panel = 1; - req_access = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"gqi" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/pilotbunks) -"gqn" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"gqr" = ( -/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, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) "gqt" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"gqu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"gqw" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/hallways/upper/midship_hallway) +"gqx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "gqz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18293,32 +24767,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) -"gqA" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - layer = 3.2; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/reagent_container/food/snacks/grown/orange{ - layer = 3.3; - pixel_x = 1; - pixel_y = 13 - }, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 8; - pixel_y = -3 +"gqH" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/hallways/upper/midship_hallway) +"gqI" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"gqP" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) -"gqM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "gqQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -18331,28 +24793,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"grr" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"grt" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"grd" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_p) +"gre" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/upper/fore_hallway) "grv" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -18361,35 +24810,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) -"grE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 +"grG" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"grR" = ( +/turf/open/floor/almayer/orangecorner/east, /area/almayer/living/briefing) -"grH" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/upper/fore_hallway) -"grI" = ( -/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/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) "grT" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wet_sign, @@ -18406,6 +24835,46 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) +"gsd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -6 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"gsg" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "Alpha_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"gsi" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "gsm" = ( /obj/structure/machinery/status_display{ pixel_x = -32 @@ -18414,35 +24883,35 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"gsu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"gsw" = ( -/obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"gsI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair/comfy{ +"gsp" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"gsT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Holding Cell" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gsy" = ( +/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/test_floor4, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gsC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"gsJ" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/midship_hallway) +"gsM" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "gsZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -18455,32 +24924,34 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"gtc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"gti" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"gtj" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 +"gtg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"gtp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) "gtD" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"gtN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) +"gtH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"gtI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) "gtQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -18488,30 +24959,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) -"gtZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"gum" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/obj/effect/landmark/map_item, -/obj/structure/pipes/vents/scrubber{ +"gtU" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"guv" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"guo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) "guK" = ( /obj/effect/projector{ name = "Almayer_Up3"; @@ -18520,6 +24984,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) +"guP" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/maint/upper/u_a_s) +"guS" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) "guW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/sign/prop3{ @@ -18540,158 +25011,144 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"guX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - name = "\improper Brig Cells" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"gvn" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gvp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"gvr" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"gvq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/structure/closet, -/obj/item/clothing/head/bearpelt, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"gvu" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) "gvK" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"gvM" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +"gvU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/starboard) -"gwc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"gwh" = ( +/obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"gwB" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"gwP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"gwj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"gwn" = ( +/obj/structure/machinery/ares/processor/bioscan, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gwo" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/basketball) +"gww" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gwQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = -13 +/area/almayer/living/gym) +"gwM" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/machinery/door_control{ + id = "Delta_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) "gwR" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"gwS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gwW" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gxb" = ( +"gxh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, /obj/structure/machinery/firealarm{ - pixel_y = 28 + dir = 1; + pixel_y = -28 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gxe" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"gxk" = ( +/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 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "gxm" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/stairs) -"gxE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"gxn" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"gxt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Warden's Office" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) "gxI" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/upper/s_bow) -"gxY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"gyd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, +"gxO" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/gym) +"gxP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"gxU" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"gyh" = ( +/obj/structure/machinery/cm_vending/gear/executive_officer{ + density = 0; + pixel_y = 30 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"gyk" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"gyl" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "gym" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/mp_bunks) @@ -18706,19 +25163,33 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"gyw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"gyE" = ( +/turf/open/floor/almayer/green/north, +/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) -"gyQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gyN" = ( +/obj/structure/machinery/prop{ + desc = "It's a server box..."; + icon_state = "comm_server"; + name = "server box" + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gyO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/ce_room) "gyU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -18726,44 +25197,29 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"gyV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"gzn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/platform_decoration, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"gyX" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/engineering/port_atmos) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "gzq" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) @@ -18792,6 +25248,14 @@ }, /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/no_build, +/area/almayer/hallways/lower/port_midship_hallway) "gzN" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -18799,179 +25263,88 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"gzR" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - name = "Corporate Liaison's Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"gzZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +"gzV" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gAj" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"gAk" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"gAb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gAh" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/command/corporateliaison) "gAl" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"gAm" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"gAo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) +"gAz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "gAA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"gAB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, +"gAO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gAF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"gAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc02"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = 23 +/area/almayer/maint/upper/u_a_p) +"gAP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/obj/structure/closet, +/obj/item/clothing/head/bearpelt, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"gAS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"gAN" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/area/almayer/medical/medical_science) +"gBc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/mp_bunks) -"gAQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/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) -"gBf" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"gBh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) "gBo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gBp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"gBw" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"gBK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"gBN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) +"gBs" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) "gBU" = ( /obj/structure/surface/table/almayer, /obj/item/storage/bag/trash{ @@ -18982,71 +25355,65 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"gCq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"gCt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +"gBW" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gCf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gCu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/lower/l_a_s) "gCw" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gCC" = ( -/obj/structure/pipes/standard/tank/oxygen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"gCL" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_x = -27 +"gCB" = ( +/obj/structure/machinery/power/apc/almayer/hardened{ + cell_type = /obj/item/cell/hyper; + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gCM" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"gCQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gCP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, /turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"gCX" = ( -/obj/structure/machinery/light{ +/area/almayer/living/bridgebunks) +"gDh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "\improper Security Vault"; + req_access = null; + req_one_access_txt = "91;92"; dir = 1 }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"gCZ" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ + plane = -6 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gDk" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) "gDp" = ( /obj/structure/machinery/light{ dir = 4 @@ -19054,47 +25421,34 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"gDr" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"gDt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/crew/alt{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/transmitter/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Cells"; + pixel_x = 16 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) "gDH" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"gDK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"gDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/hydroponics) -"gDM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"gDQ" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) "gDX" = ( /obj/structure/sign/safety/nonpress_ag{ pixel_x = 32 @@ -19108,148 +25462,60 @@ "gEh" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"gEm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +"gEo" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"gEv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"gEn" = ( -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"gEJ" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"gER" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"gES" = ( +/area/almayer/engineering/upper_engineering/port) +"gEC" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/engineering/lower) "gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"gFc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/transmitter{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - pixel_y = 29 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"gFf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"gFh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"gFr" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"gFA" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 +"gFd" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes{ + pixel_y = 9 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"gFJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "gFP" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/stern_point_defense) -"gFZ" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"gGd" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"gGg" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"gGh" = ( +"gFR" = ( /obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gGj" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"gGk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"gGb" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gGf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) -"gGl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"gGo" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) +"gGr" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "gGs" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -19272,28 +25538,36 @@ }, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"gGA" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gGG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"gGw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"gHa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/hallways/lower/vehiclehangar) +"gGx" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gGI" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"gGJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "gHh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -19301,81 +25575,129 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"gHi" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"gHj" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/fridge/groceries/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "gHl" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"gHq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gHo" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"gHt" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"gHZ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"gIh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Chief Engineer's Bunk"; + no_panel = 1; + req_access = list(); + req_one_access_txt = "1;6" }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/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) -"gIp" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 +"gIz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/space_heater, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"gIy" = ( -/obj/structure/pipes/vents/scrubber, -/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/silver, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"gIL" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +"gIJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "gIO" = ( /obj/structure/bed/chair/bolted{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/interrogation) +"gIU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/tapes{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/tapes{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/tapes{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/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) -"gJo" = ( -/obj/structure/machinery/light{ - dir = 1 +"gJg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"gJp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gJv" = ( -/obj/item/stack/sheet/cardboard{ - amount = 50 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"gJC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gJE" = ( +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/interrogation) "gJF" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/s_stern) @@ -19389,55 +25711,30 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"gJZ" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/living/grunt_rnr) -"gKf" = ( +"gJP" = ( +/obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"gKj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gKn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17 +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"gKd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) "gKo" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) -"gKt" = ( -/obj/structure/disposalpipe/segment, +"gKv" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/upper/p_bow) "gKw" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -19445,35 +25742,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"gKx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"gKA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/vents/pump{ - dir = 1 +"gKB" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"gKF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"gKE" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"gKY" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"gKK" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/lower/repair_bay) +"gKR" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"gKZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/reagent_container/spray/cleaner, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/engineering/upper_engineering) "gLc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19488,41 +25787,50 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"gLk" = ( -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) "gLl" = ( /turf/closed/wall/almayer, /area/almayer/maint/upper/u_f_s) -"gLp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"gLm" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gLz" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gLq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"gLB" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) "gLD" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"gLF" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 +"gLE" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"gLG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) "gLN" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant{ @@ -19531,22 +25839,23 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"gLU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"gMc" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +"gLZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_2"; + name = "\improper Bathroom" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"gMd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/area/almayer/engineering/lower/workshop) "gMk" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sign/safety/maint{ @@ -19554,27 +25863,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"gMt" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"gMK" = ( -/obj/structure/surface/table/reinforced/prison, -/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_two) "gMN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -19606,6 +25894,22 @@ }, /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/plate, +/area/almayer/hallways/lower/port_umbilical) +"gMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/living/briefing) "gNg" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -19613,52 +25917,69 @@ /obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"gNi" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"gNj" = ( -/obj/structure/machinery/vending/cigarette, +"gNo" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"gNz" = ( +/area/almayer/maint/upper/u_m_p) +"gNp" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"gNq" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"gNy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "W" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Liasion's Bathroom" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"gNI" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/u_a_s) "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 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "gNZ" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"gOj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 4 +"gOa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) "gOk" = ( /obj/structure/largecrate/guns/merc{ name = "\improper dodgy crate" }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"gOr" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/starboard_hallway) +"gOC" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) "gOR" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -19666,25 +25987,37 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"gOZ" = ( -/obj/structure/machinery/light, +"gOS" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"gPc" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"gPA" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"gPS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/maint/upper/u_m_p) -"gPz" = ( -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) -"gPO" = ( -/obj/structure/window/framed/almayer, +"gPU" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gPR" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) +/area/almayer/hallways/lower/vehiclehangar) "gQk" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -19693,6 +26026,14 @@ /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, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -19701,12 +26042,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"gRb" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"gQO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"gQQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "gRc" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, @@ -19719,78 +26066,44 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gRi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"gRk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +"gRJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"gRn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/port_umbilical) +"gRP" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/structure/machinery/computer/working_joe{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/orange/west, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) -"gRp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 +"gSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"gRB" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/silver/west, +/area/almayer/engineering/port_atmos) +"gSk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"gRS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"gRW" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/mp_bunks) -"gRX" = ( -/obj/structure/machinery/vending/snack, -/obj/item/clothing/head/cmcap/boonie/tan{ - pixel_x = -2; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gSo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "gSy" = ( /obj/item/frame/rack{ layer = 3.1; @@ -19811,68 +26124,58 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/mp_bunks) -"gST" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"gTm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/fridge/organic, +"gSH" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gTn" = ( -/obj/structure/window/reinforced, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"gTu" = ( +/area/almayer/maint/hull/lower/l_m_s) +"gTk" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/morgue) -"gTG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"gTH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/skills{ + dir = 4; + pixel_y = 18 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"gTL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/machinery/computer/med_data/laptop{ dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" + pixel_y = -18 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gTQ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"gTK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gUf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gUg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/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) -"gUl" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) "gUn" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"gUt" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) "gUu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -19880,27 +26183,14 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"gUw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"gUx" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"gUz" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"gUB" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"gUG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/maint/hull/upper/u_a_s) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19917,49 +26207,43 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"gUT" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) +"gUS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"gUV" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/command/lifeboat) "gUX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"gUY" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"gVb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D4"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"gVn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"gVy" = ( +"gVq" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"gVz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"gVu" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/item/reagent_container/food/snacks/grown/banana{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "gVA" = ( /obj/structure/disposalpipe/down/almayer{ dir = 8; @@ -19967,75 +26251,44 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"gVB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) "gVF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"gVO" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +"gVW" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"gVV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer/red/west, -/area/almayer/living/offices/flight) +/area/almayer/hallways/upper/port) "gWm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) -"gWn" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +"gWt" = ( +/obj/structure/surface/table/almayer, +/obj/item/pipe{ + dir = 9 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) -"gWo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/crowbar/red{ + pixel_x = 17 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) "gWu" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -20054,38 +26307,52 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"gWS" = ( -/obj/structure/bed/chair{ - dir = 4 +"gXl" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"gXi" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"gXA" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/medical/upper_medical) +"gXs" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Right"; + name = "\improper ARES Operations Shutters" }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"gYb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"gYc" = ( +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gXx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"gXB" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"gYe" = ( /obj/structure/machinery/vending/sea, /turf/open/floor/almayer/plating/northeast, /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/silver, +/area/almayer/hallways/lower/repair_bay) "gYj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -20101,295 +26368,333 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"gYm" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +"gYl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"gYy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"gYC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"gYp" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + 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/silver/southwest, +/area/almayer/maint/upper/u_m_p) +"gYt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"gYx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gYM" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/briefing) -"gZh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"gYI" = ( +/obj/structure/platform{ dir = 4 }, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"gZi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"gZq" = ( -/obj/structure/machinery/light{ +/area/almayer/maint/hull/upper/u_a_p) +"gYU" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"gZI" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) "gZK" = ( /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"gZS" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"gZP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D4"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"gZU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"gZW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/port_fore_hallway) +"had" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"hal" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"ham" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"haz" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"haB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"gZV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"haD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower) +"haO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"haQ" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 3 }, +/obj/item/clothing/head/helmet/marine, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hao" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/hallways/lower/port_midship_hallway) -"haM" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +/area/almayer/living/offices) +"haR" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"haT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"haY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"hbl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/medical_science) -"hbh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"hbp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"hbv" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"hbz" = ( -/obj/structure/closet/toolcloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_stern) +"hbs" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"hbu" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) "hbA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) -"hbP" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/ce_room) -"hbT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"hbZ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +"hbE" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"hcb" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"hce" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hbI" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, /turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"hcn" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/area/almayer/medical/upper_medical) +"hcf" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/barricade/handrail{ dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + layer = 3.3; + pixel_y = 3 + }, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 3.3; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/engineering/port_atmos) +"hcw" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_1"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"hcz" = ( /turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"hcE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"hcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/area/almayer/living/cryo_cells) +"hcI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"hcX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"hdb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/almayer/engineering/lower/engine_core) +"hdd" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/starboard_missiles) +"hds" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"hde" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/offices) +"hdy" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hdE" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) -"hdk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/green, /area/almayer/squads/req) -"hdn" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"hdH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hdP" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"hdQ" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"hee" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_box/magazine/m4ra, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"hdV" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"hel" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"hec" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"heo" = ( +/obj/structure/machinery/power/apc/almayer{ + cell_type = /obj/item/cell/hyper; + dir = 1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/structure/sign/safety/rewire{ + pixel_x = -15; + pixel_y = 25 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"heC" = ( -/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 + icon_state = "E"; + pixel_x = 2 }, -/obj/item/device/reagent_scanner{ - pixel_x = -16; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"heG" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"heK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"heM" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/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) -"heU" = ( -/obj/effect/spawner/random/toolbox, +"heS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hfa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/squads/alpha_bravo_shared) "hfb" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -20400,29 +26705,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"hfd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"hfo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"hfr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"hfs" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) "hft" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -20431,79 +26713,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"hfx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = -28 +"hfv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"hfO" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 }, -/obj/item/clothing/glasses/hud/health, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"hfB" = ( +/area/almayer/maint/hull/lower/l_a_s) +"hfQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hgg" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"hfZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"hge" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"hgk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hgo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"hgf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"hgm" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower) +"hgp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"hgs" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hgB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/intel, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"hgD" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"hgE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hgI" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"hgL" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hgZ" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or3privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) "hhd" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat/orange{ @@ -20523,75 +26818,45 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"hhm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"hhg" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hhn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) "hhA" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"hhE" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, +"hif" = ( +/obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"hhF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"hhN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/area/almayer/hallways/hangar) +"hip" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/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/prison/kitchen, -/area/almayer/living/grunt_rnr) -"hin" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"hiG" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"hiH" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/open/floor/almayer/green/southeast, -/area/almayer/shipboard/brig/cells) -"hiJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer/orange/east, /area/almayer/maint/hull/lower/l_m_s) +"hiy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) "hiM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20599,68 +26864,73 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hiT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"hiZ" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"hjz" = ( -/obj/structure/disposalpipe/segment{ +"hiP" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hji" = ( +/obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"hjk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hjs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"hjO" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"hjA" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"hjB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"hjM" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/almayer/redcorner/east, +/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) -"hjZ" = ( -/obj/structure/machinery/cryopod, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"hjT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"hkc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, +/obj/structure/largecrate, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"hkp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Execution Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"hki" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"hkz" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) "hkB" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -20674,12 +26944,38 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) -"hkV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hkG" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/lower/repair_bay) +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"hkH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = 16; + pixel_y = 8; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "hkX" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -20704,32 +27000,61 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hlo" = ( +"hlj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"hlH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hlI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/transmitter/rotary{ + name = "Brig Wardens's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Warden's Office"; + pixel_x = 15 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"hlT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"hlU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"hlF" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hlL" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hlQ" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) "hlX" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -20740,6 +27065,14 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"hme" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/hydroponics) "hmj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -20751,36 +27084,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) +"hmv" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hmw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hmy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "hmA" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/upper/p_bow) -"hmO" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"hmC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hmQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 16; - req_access_txt = "3" +/area/almayer/squads/delta) +"hmF" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = 16; - pixel_y = 8; - req_access_txt = "3" +/obj/structure/sign/poster{ + pixel_x = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"hmS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) "hmV" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -20805,35 +27155,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"hnd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hny" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"hnB" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing everything you need to stop a CLF uprising."; - name = "\improper USCM crate 'FOB supplies'" +"hng" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/folded_tent/big{ - pixel_x = -6; - pixel_y = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; +/turf/open/floor/almayer/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/plate, -/area/almayer/living/port_emb) +/area/almayer/maint/hull/upper/u_a_p) +"hnE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"hnI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "hnP" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -20848,110 +27216,44 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) -"hoa" = ( -/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/plate, -/area/almayer/maint/hull/lower/p_bow) -"hov" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hoF" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"hoM" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"hoR" = ( -/obj/structure/bed/chair/comfy{ - dir = 5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hoY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"hoc" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc01"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = -23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"hph" = ( -/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/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"hpm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"hpp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"hoK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"hoT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hoW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/sign/safety/water{ +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"hpk" = ( +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hpw" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"hpx" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"hpJ" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, /turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"hpM" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) +/area/almayer/shipboard/weapon_room) +"hpN" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -20965,16 +27267,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"hpX" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) "hpY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -20985,13 +27277,9 @@ /obj/effect/step_trigger/clone_cleaner, /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/u_m_s) -"hqe" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) +"hqc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "hqh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -21005,86 +27293,79 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"hql" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +"hqm" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 - }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/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) -"hqw" = ( -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"hqC" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hqG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"hqN" = ( +"hqu" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hqS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_a_p) +"hqW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"hrb" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"hrI" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"hrM" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"hrm" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hrn" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + name = "\improper Research Reception Laboratory" }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"hrP" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"hrT" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"hse" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +/area/almayer/medical/medical_science) +"hro" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"hrF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"hrI" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"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/plate, +/area/almayer/hallways/lower/port_umbilical) "hsg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -21095,18 +27376,32 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hsm" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = 3; - vector_y = 1 +"hsh" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hsj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) "hsr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) +"hss" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) "hsu" = ( /obj/structure/bed/sofa/south/grey{ pixel_y = 12 @@ -21116,59 +27411,17 @@ "hsy" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/engine_core) -"hsF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) "hsK" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"hsL" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hsM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/item/storage/fancy/vials/empty{ - pixel_y = 10; - start_vials = 2 - }, -/obj/item/tool/pen{ - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hsQ" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hsR" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +"hsW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"hsT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) "hte" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -21176,102 +27429,101 @@ }, /turf/closed/wall/almayer, /area/almayer/hallways/lower/starboard_umbilical) +"htg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"htk" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/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) -"htv" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/carrotseed, -/obj/structure/machinery/light{ - dir = 1 +"hto" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/shipboard/brig/cells) -"htC" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northeast, -/area/space) -"htE" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"htq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"htG" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) "htI" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"htR" = ( -/obj/structure/pipes/vents/pump/no_boom{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver, -/area/almayer/command/aist_office) -"htS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"hui" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"hum" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"huv" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"htL" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "huD" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"huE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"huK" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/cryo_cells) +"huO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/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; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "hvd" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/interrogation) -"hvf" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"hvs" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) "hvv" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -21301,60 +27553,55 @@ /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" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"hvz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "hvH" = ( /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hvM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"hvY" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"hwc" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"hwi" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = -27; - req_one_access_txt = "4;28" +"hwB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"hwv" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"hwC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"hwP" = ( -/obj/structure/platform{ - dir = 8 +/area/almayer/engineering/upper_engineering) +"hwH" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hwZ" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/east, +/area/almayer/command/aist_office) "hxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hxh" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) "hxm" = ( /obj/item/paper_bin/uscm{ pixel_y = 4 @@ -21362,9 +27609,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"hxE" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/shipboard/brig/cic_hallway) "hxG" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -21374,42 +27618,54 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"hxI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"hxZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/obj/item/tool/shovel/spade{ + pixel_x = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"hyg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"hyA" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hyb" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hyO" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_y = -32 +/area/almayer/maint/hull/lower/l_a_s) +"hyk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"hyw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"hyE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "hyQ" = ( /turf/closed/wall/almayer, /area/almayer/living/synthcloset) @@ -21423,6 +27679,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) +"hyV" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"hza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) "hzb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; @@ -21433,34 +27705,31 @@ "hzc" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/notunnel) -"hzd" = ( -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) "hzg" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"hzh" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"hzk" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"hzs" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"hzu" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hzB" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) +"hzv" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -3; + vector_y = -1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) "hzG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21470,93 +27739,108 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/starboard_hallway) -"hzK" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) "hzN" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"hzW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) +"hAc" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hAf" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) "hAh" = ( /turf/closed/wall/almayer/outer, /area/almayer/hallways/lower/port_umbilical) -"hAk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"hAz" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"hAo" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"hAA" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/structure/catwalk{ - health = null +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"hAp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"hAy" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"hAG" = ( +/obj/structure/closet/crate/internals, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"hAU" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair/comfy/charlie{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"hAJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"hAZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/port_fore_hallway) -"hAN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_corner/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"hBc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"hAY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"hBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"hBa" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"hBk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"hBu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/airoom) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"hBz" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "hBF" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"hBX" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +"hBG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"hBL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"hBW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) "hCf" = ( /obj/structure/sign/safety/manualopenclose{ pixel_x = 15; @@ -21567,59 +27851,49 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"hCg" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"hCh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"hCk" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hCq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"hCN" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_p) +"hCt" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"hCW" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"hDb" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hCS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/item/tool/pen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = 32 }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"hDh" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hDl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"hDq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"hCV" = ( +/obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "hDw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -21627,200 +27901,119 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hDz" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"hDA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"hDK" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"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) -"hEs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 +"hDR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/syringe_case{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" +/obj/item/storage/syringe_case, +/obj/item/storage/syringe_case{ + pixel_x = -3; + pixel_y = -2 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "firearm_storage_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer/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/test_floor4, -/area/almayer/shipboard/brig/armory) -"hEE" = ( -/obj/structure/pipes/binary/pump/on{ +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/lower/port_fore_hallway) +"hDV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"hDX" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hEb" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"hEH" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"hEL" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hEM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"hEN" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = -6 +/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 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"hEP" = ( -/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 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"hEl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hEQ" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"hER" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = -1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hEm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/obj/item/clothing/mask/cigarette{ - pixel_y = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hEr" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 4; - pixel_y = 11 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"hET" = ( -/obj/structure/bed/chair, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/area/almayer/maint/hull/upper/u_a_s) +"hEw" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "hEV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hEX" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"hFf" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"hFz" = ( -/obj/structure/machinery/ares/processor/interface, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"hFB" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"hFG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"hFP" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hGe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"hFw" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"hFC" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"hFF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_access_txt = "25"; + req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"hGb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) "hGh" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/chemistry) -"hGv" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hGw" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"hGx" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"hGy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"hGB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) "hGG" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -21828,75 +28021,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) +"hGN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"hGO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"hGV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"hHe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) "hHl" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/pouch/general/large, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"hHn" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/cic) -"hHq" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"hHu" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/securestorage) -"hHH" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/command/lifeboat) -"hHZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"hHr" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"hIb" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"hIe" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"hIp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"hIt" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/area/almayer/maint/hull/lower/l_a_p) +"hIs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"hIv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"hIA" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/command/corporateliaison) "hIF" = ( /obj/structure/machinery/light{ dir = 1 @@ -21907,48 +28095,25 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"hIJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/starboard_umbilical) -"hIM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"hIN" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 +"hII" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"hIT" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"hIX" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hJd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/upper/u_a_p) +"hJg" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" }, /turf/open/floor/almayer/orange, /area/almayer/engineering/lower) @@ -21962,21 +28127,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hJr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"hJt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) "hJD" = ( /obj/structure/bed/sofa/south/grey/right{ pixel_y = 12 @@ -21989,30 +28139,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"hJK" = ( -/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 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hJN" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) "hKe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22022,42 +28148,51 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"hKi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hKl" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"hKS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"hKA" = ( +/obj/structure/pipes/vents/pump/no_boom{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"hLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build/white/ai_silver, +/area/almayer/command/aist_office) +"hKO" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"hLr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/bridge{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) +/area/almayer/medical/containment) "hLu" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -22065,75 +28200,59 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/p_bow) -"hLz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"hLL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"hLO" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"hLQ" = ( -/obj/structure/platform_decoration{ +"hLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"hLI" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"hLS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta{ dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"hLT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/fore_hallway) -"hLZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "hMi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hMy" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ +"hMk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) "hMG" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"hNc" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"hNt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"hNu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/folder/white{ - layer = 2.9; - pixel_x = -8 - }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +"hMM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"hMN" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"hNh" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hNv" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -22141,12 +28260,15 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/charlie) -"hNI" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"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" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) "hNM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -22156,70 +28278,66 @@ /obj/item/tool/shovel/etool/folded, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hNN" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/lifeboat) -"hNU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"hOg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"hNP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"hOs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"hOI" = ( +/area/almayer/engineering/lower/engine_core) +"hNY" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"hOd" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"hOn" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/hallways/upper/midship_hallway) +"hOu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 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/plate, -/area/almayer/squads/alpha) +/area/almayer/hallways/lower/starboard_fore_hallway) "hOV" = ( /turf/closed/wall/almayer, /area/almayer/maint/lower/constr) -"hPp" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"hPz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"hPH" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ - pixel_x = 5; - pixel_y = 9 +"hPe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, -/obj/effect/landmark/map_item{ - layer = 3.03; - pixel_x = -7; - pixel_y = 4 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hPh" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/auxiliary_officer_office) +"hPu" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"hPD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) "hPI" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/perma) @@ -22227,8 +28345,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"hPN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/hydroponics) "hPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -22239,81 +28366,90 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) +"hQc" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/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) -"hQr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +"hQw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southwest, +/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/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"hQU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"hQs" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"hQy" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters/clippers, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"hQW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"hQG" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"hQY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"hQK" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"hRa" = ( +/obj/structure/machinery/vending/snack{ + pixel_x = -7 + }, +/obj/structure/machinery/vending/coffee{ + pixel_x = 14 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"hRd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hRk" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "hRu" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/execution_storage) -"hRG" = ( -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -15; - pixel_y = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"hRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"hRJ" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/living/briefing) -"hRN" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/maint/hull/lower/l_f_s) "hRW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -22339,17 +28475,29 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"hSh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) +"hSb" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "hSk" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"hSt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/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/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "hSw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -22358,72 +28506,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"hSA" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hSI" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"hSB" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"hSC" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"hSH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"hSM" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hSX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/almayer/medical/morgue) +"hTc" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"hTh" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) +/area/almayer/squads/delta) +"hTf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "hTl" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -22434,109 +28540,120 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"hTz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"hTB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"hTt" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"hTF" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + isopen = 1; + starting_helmet_type = null; + starting_mask_type = null; + starting_suit_type = null; + starting_tank_type = null }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hTC" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"hTD" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"hTK" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/engineering/upper_engineering/port) +"hTP" = ( +/obj/structure/machinery/door_control{ + id = "crate_room2"; + name = "storage shutters"; + pixel_y = 26 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"hTL" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +/obj/structure/machinery/recharge_station{ + desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; + name = "Working Joe charging station" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"hTO" = ( -/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" +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 36 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) -"hTX" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"hTT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"hTU" = ( +/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/plate, -/area/almayer/squads/bravo) -"hUp" = ( -/obj/structure/largecrate/random/barrel/green, +/area/almayer/maint/hull/lower/l_a_p) +"hUb" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hUr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/area/almayer/maint/hull/upper/u_m_s) +"hUh" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"hUk" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"hUu" = ( /obj/item/device/radio/intercom{ - frequency = 1500; - name = "AI Core Intercom" + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"hUs" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"hUB" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"hUz" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing everything you need to stop a CLF uprising."; + name = "\improper USCM crate 'FOB supplies'" }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"hUI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/folded_tent/big{ + pixel_x = -6; + pixel_y = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"hUJ" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/manipulator/nano{ - pixel_y = -9 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"hUU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 }, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = 4; - pixel_y = 15 +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -12 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 17 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/shipboard/brig/execution_storage) "hUW" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -22547,78 +28664,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"hUZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"hVm" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"hVn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"hVf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"hVr" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"hVz" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/sign/safety/waterhazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"hVv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"hVG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"hVI" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"hVJ" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"hVL" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"hVU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) +/area/almayer/maint/hull/lower/l_f_p) "hWa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -22666,43 +28727,54 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) +"hWB" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "hWD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"hWG" = ( -/obj/structure/disposalpipe/segment{ +"hWH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "pipe-c" + pixel_x = 12; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hWK" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/maint/hull/lower/l_a_p) +"hWJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "hWM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"hXa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"hWO" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"hWP" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"hXb" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) "hXd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_box/magazine/misc/mre{ @@ -22723,26 +28795,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hXg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"hXl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/box/handcuffs, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "hXm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -22760,26 +28812,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"hXS" = ( +"hXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"hXX" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/port) +"hXY" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"hYf" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hYj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"hYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/port_fore_hallway) -"hYh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "hYE" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -22794,10 +28865,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"hZc" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) "hZe" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -22818,103 +28885,118 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"hZq" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) "hZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"hZy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"hZE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"hZF" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"hZZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"iat" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"hZJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"iax" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"iaP" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"hZN" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"iaZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"iby" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"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/redfull, +/area/almayer/command/cic) +"iag" = ( /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/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"iah" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ibF" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack{ - amount = 40; - pixel_x = -4; - pixel_y = -4 +/area/almayer/command/cichallway) +"ial" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/stack/sheet/plasteel/small_stack{ - amount = 15 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"iaq" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"iat" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ibI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"iav" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"iaF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"iaO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"iaR" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"ibc" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"ibf" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/lower/s_bow) "ibP" = ( /obj/structure/sign/safety/maint{ pixel_x = -19; @@ -22927,59 +29009,16 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"ibS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ibU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"icg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"ict" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, +"icp" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"icw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"icu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"icJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + dir = 10 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) "icM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22990,71 +29029,43 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"icO" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"icX" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"icY" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/squads/req) -"ide" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"icQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"idl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/fore_hallway) +"icZ" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"idx" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -29 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"idu" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"idL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"idy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"idz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"idP" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"idZ" = ( -/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/lower/l_f_p) +"idX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "ied" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -23071,46 +29082,57 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"ieA" = ( -/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 +"ieu" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ieC" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/upper/midship_hallway) -"ieG" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"ieH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/stack/sheet/metal{ + layer = 4.1; + pixel_x = -3; + pixel_y = 14 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/tool/weldingtool{ + layer = 4.1; + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"ieO" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ieS" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/living/port_emb) +"iey" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -23125,29 +29147,19 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"ifi" = ( -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 +"iff" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"ifw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"ifI" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"ifN" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" +/area/almayer/lifeboat_pumps/north1) +"ifz" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = 25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) "igb" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -23155,54 +29167,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"igj" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"igl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/life_support{ - pixel_x = -17 +"igr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"igx" = ( -/obj/structure/closet/secure_closet/fridge/fish/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"igC" = ( +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"igs" = ( /obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"igN" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"igO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"igR" = ( -/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/cargo, +/area/almayer/engineering/lower/engine_core) +"igw" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "igS" = ( @@ -23216,31 +29202,20 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"igW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"ihi" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Left"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +"iho" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"iht" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"ihw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) "ihI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23248,85 +29223,87 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"iic" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"iih" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"iis" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/structure/bed{ - can_buckle = 0 +"ihM" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/engineering/port_atmos) -"iiB" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"iiD" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"iiE" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"iiI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"iiN" = ( /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"iiY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/squads/delta) +"ihW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ihX" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"ihY" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"ijm" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"ijo" = ( +/area/almayer/squads/bravo) +"iit" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"ijs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"ijH" = ( -/obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) +/area/almayer/medical/hydroponics) +"iiU" = ( +/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/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"iiZ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"ijd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"ijf" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ijr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "ijQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -23346,70 +29323,28 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"ijU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ikg" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"iki" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ikq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/living/offices) -"ikB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"ikL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +"ikl" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/vehiclehangar) +"iks" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"ikN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"ikv" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/weapon_room) -"ikO" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"ikA" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/area/almayer/maint/hull/lower/s_bow) "ikQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/stamp/hop{ @@ -23434,52 +29369,25 @@ "ikT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"ila" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"ilb" = ( +"ilq" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"ily" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ilG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ild" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/shipboard/brig/medical) -"ilo" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"ilx" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"ily" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ilB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) "ilJ" = ( /obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ @@ -23487,44 +29395,21 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"imd" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"ime" = ( -/obj/structure/disposalpipe/segment, +"ilZ" = ( +/turf/closed/wall/almayer/aicore/white/hull, +/area/almayer/command/aist_office) +"iml" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"imo" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) -"img" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"imk" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"imm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ims" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) +"imp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) "imt" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -23536,21 +29421,21 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"imz" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 +"imS" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"imM" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/lifeboat) -"imT" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/disposalpipe/up/almayer{ + id = "ares_vault_in"; + name = "aicore"; + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "inh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -23561,24 +29446,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"inl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "ins" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"inv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) "inw" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -23586,69 +29459,49 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"inC" = ( -/obj/structure/machinery/sentry_holder/almayer/mini/aicore, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"inS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"inX" = ( +"inL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ioh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ios" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, /obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/mp_bunks) -"iot" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ioy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"ioC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"iow" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; - req_one_access_txt = "3;19" + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_y_offset = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"ioD" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8; - autoname = 0; - c_tag = "AI - Core Chamber" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"ioH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +/turf/open/floor/almayer/red/northwest, +/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" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "ioU" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) @@ -23659,10 +29512,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"ioW" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) "ipa" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/warning_stripes{ @@ -23684,87 +29533,82 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/lower/l_f_s) -"ipq" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = 3; - vector_y = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, -/area/almayer/command/aist_office) -"ipt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"ipz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"ipM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"ipV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"ipn" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"iqb" = ( -/obj/structure/pipes/vents/pump{ +/area/almayer/maint/hull/lower/l_m_s) +"ipB" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"ipE" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"ipK" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ipQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -29 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "iqd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iqh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/port_missiles) -"iqs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"iqo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"iqL" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"iqp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "37" }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"iqH" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"iqO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/trash/cheesie, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"iqR" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -16 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"ird" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) "irr" = ( /obj/structure/stairs{ dir = 1; @@ -23777,6 +29621,12 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) +"iry" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) "irJ" = ( /obj/item/tool/wirecutters{ pixel_y = -7 @@ -23788,12 +29638,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"irL" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) "irS" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/heavyduty{ @@ -23808,114 +29652,86 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"irV" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"irY" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) -"isi" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/port) -"isv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"isO" = ( +"irU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"isY" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 + icon_state = "S" }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"itc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"ish" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"iso" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/upper/midship_hallway) +"isq" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"itd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"itg" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"itu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"itG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Cafeteria" +/area/almayer/maint/hull/upper/u_m_p) +"isI" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"itH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"isN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"itg" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"itJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ito" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/mp_bunks) -"itO" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) "itR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"iue" = ( +"itX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"iub" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"iuf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/p_bow) "iun" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, @@ -23925,24 +29741,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"iuB" = ( -/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 +"iur" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"iuz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"iuE" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "iuG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, @@ -23954,11 +29770,15 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"ivb" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/brown, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) +"ivf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ivg" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) "ivs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23969,57 +29789,66 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"ivJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - name = "\improper Chief MP's Bedroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) +"ivz" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "ivL" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) +"ivM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ivS" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "iwf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"iwk" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +"iwB" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"iwr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"iwI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"iwA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"iwJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iwG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"iwO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cic) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/almayer/medical/containment/cell) "iwV" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -24036,62 +29865,44 @@ /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"ixc" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"ixt" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"ixz" = ( -/obj/structure/machinery/prop{ - desc = "It's a server box..."; - icon_state = "comm_server"; - name = "server box" - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"ixB" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"ixO" = ( -/obj/structure/platform{ - dir = 1 +"iwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"ixj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"ixu" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ixP" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/area/almayer/maint/hull/upper/u_a_s) +"ixv" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ixD" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/machinery/door_control{ - id = "medicalemergency"; - name = "Medbay Lockdown"; - pixel_y = -23; - req_one_access_txt = "2;3;12;19" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ixN" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) +/area/almayer/squads/req) "ixQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -24099,62 +29910,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"iyd" = ( +"ixT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"iyi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"iyp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/radio/headset, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"iyr" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"iyx" = ( -/obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) +/turf/open/floor/almayer/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) -"izc" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +"iyE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"ize" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"iyF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"iyS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "izf" = ( /obj/structure/disposalpipe/up/almayer{ dir = 4; @@ -24163,47 +29951,27 @@ }, /turf/closed/wall/almayer/aicore/hull, /area/almayer/command/airoom) -"izh" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or01"; - name = "Operating Theatre 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"izk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_one) -"izi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"izS" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"iAd" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"iAf" = ( -/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 +/area/almayer/living/offices) +"izX" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/aicore/no_build/white/ai_silver, +/area/almayer/command/aist_office) +"izY" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"iAg" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/mp_bunks) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -24215,31 +29983,23 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iAH" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"iAS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"iAW" = ( +"iAz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"iAE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iBa" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, +/area/almayer/engineering/lower/engine_core) +"iAI" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/maint/upper/u_a_s) "iBl" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -24253,77 +30013,52 @@ "iBn" = ( /turf/closed/wall/almayer/aicore/white/hull, /area/space) -"iBo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 5 - }, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 +"iBu" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"iCc" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/p_bow) +"iBY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"iCg" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/upper/midship_hallway) +"iCu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "pipe-c" + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"iCf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"iCt" = ( +/area/almayer/command/cichallway) +"iCD" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"iCF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/bed/chair/office/dark{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer/green/southwest, +/turf/open/floor/almayer/green/southeast, /area/almayer/living/offices) -"iCJ" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"iCL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 14 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"iCN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"iCQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iCS" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) "iCT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24333,98 +30068,53 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"iDe" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iDi" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"iDo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"iDp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"iDJ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"iDX" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"iDY" = ( +"iDa" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/red/southwest, +/area/almayer/maint/upper/u_a_p) +"iDk" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"iEj" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_2"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, +/area/almayer/maint/hull/lower/l_m_p) +"iDs" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"iEk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"iEn" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, +/area/almayer/maint/hull/upper/u_a_s) +"iDK" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"iEa" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/upper/p_bow) +"iEg" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/auxiliary_officer_office) "iEr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"iEy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"iEw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iEx" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "iEz" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant{ @@ -24433,90 +30123,46 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iEB" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"iEG" = ( -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"iEH" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"iEZ" = ( -/obj/structure/machinery/light{ - dir = 8 +"iEM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"iFb" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/starboard_midship_hallway) "iFc" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"iFg" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"iFh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"iFl" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"iFn" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"iFp" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"iFm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iFA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"iFr" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"iFv" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"iFB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +/area/almayer/maint/hull/upper/u_f_p) +"iFC" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) +/obj/effect/landmark/map_item, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) "iFD" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -24536,172 +30182,86 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) -"iFI" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"iGb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"iGE" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"iGF" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"iGG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"iFK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"iFM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"iGI" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"iHc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"iHd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"iHh" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"iHl" = ( +/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/plate, /area/almayer/maint/lower/cryo_cells) -"iHn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"iHv" = ( -/obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"iHA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"iHM" = ( -/obj/structure/ladder{ - height = 1; - id = "med2" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 7 +"iGc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iGi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"iHO" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"iHW" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/lower/starboard_fore_hallway) +"iGn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"iIp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"iGQ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"iIr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/obj/item/book/manual/chef_recipes, -/obj/structure/sign/safety/coffee{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"iIF" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iHc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"iHG" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"iIb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/sign/safety/twilight_zone_terminator{ - pixel_x = 8; - pixel_y = -24 +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"iIj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"iIH" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 14 +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"iIl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"iIO" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) "iIP" = ( /obj/structure/toilet{ pixel_y = 16 @@ -24727,47 +30287,31 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"iIX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"iJd" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"iJl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"iJo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"iIU" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/area/almayer/maint/upper/u_a_s) "iJs" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"iJw" = ( -/obj/structure/sign/safety/water{ +"iJB" = ( +/obj/structure/sign/safety/galley{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"iJS" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) "iJT" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -24775,34 +30319,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"iKd" = ( +"iKb" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"iKc" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) "iKf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iKv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"iKw" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"iKx" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iKy" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) "iKD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -24810,6 +30352,32 @@ /obj/item/device/binoculars, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"iKI" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"iKK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"iKM" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"iKV" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iKZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) "iLd" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -24825,29 +30393,12 @@ /obj/structure/machinery/computer/disk_reader, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iLj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"iLl" = ( -/obj/structure/machinery/door_control{ - id = "ROlobby1"; - name = "RO Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/line_nexter_control{ - id = "line1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "1;21" +"iLh" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "iLm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24863,6 +30414,21 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"iLs" = ( +/obj/structure/ladder{ + height = 1; + id = "med2" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) "iLG" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -24871,49 +30437,48 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"iLQ" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/living/briefing) +"iLL" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"iLO" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) "iMm" = ( /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"iMo" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +"iMr" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"iMx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "iMD" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"iMF" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"iMP" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"iMI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"iMX" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"iNe" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"iNh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Brig Cells" }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "iNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -24921,20 +30486,18 @@ /obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"iNu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"iNH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"iNP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/port_fore_hallway) "iNR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -24942,26 +30505,6 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"iNT" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"iNX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) "iNY" = ( /obj/structure/machinery/status_display{ pixel_x = 32; @@ -24969,12 +30512,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iOe" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/perma) -"iOm" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower) "iOo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24990,24 +30527,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iOI" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"iOJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"iOY" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"iOX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "iPf" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, @@ -25018,31 +30543,46 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) +"iPt" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iPv" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/briefing) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"iPK" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"iPQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +"iPH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"iPW" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"iPN" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/frame/light_fixture, -/obj/item/frame/light_fixture, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/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/orange/northeast, +/area/almayer/maint/upper/mess) +"iPS" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "iQd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -25053,10 +30593,69 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"iQp" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +"iQi" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"iQj" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"iQt" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"iQB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4; + layer = 3.2; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 23; + layer = 2.99 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) "iQJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25067,56 +30666,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"iQO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"iQP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"iQQ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"iQT" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"iRc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cic) -"iRf" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"iRn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) "iRp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -25126,38 +30675,24 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/interrogation) -"iRs" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) "iRy" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, /area/almayer/living/gym) -"iRC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"iRO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"iRN" = ( +/obj/structure/machinery/light/containment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"iRZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"iSb" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) "iSd" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -25213,44 +30748,72 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_s) -"iSf" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"iSg" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/starboard_missiles) -"iSr" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"iSm" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + desc = "Do you remember who you are?"; + icon_state = "mirror_broke"; + name = "broken mirror"; + pixel_y = 32 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"iSE" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/sink{ + pixel_y = 24 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 11 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"iSF" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ +/obj/structure/machinery/door_control{ + id = "Delta_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/item/prop{ + 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 = 29 + }, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"iSx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"iSB" = ( +/obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"iSX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Upper Engineering" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/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" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/upper/u_a_p) "iSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25262,38 +30825,44 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"iTf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"iTd" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"iTe" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"iTm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"iTo" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"iTl" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) "iTq" = ( /obj/structure/curtain/red, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"iTv" = ( -/obj/structure/barricade/metal{ - dir = 1 +"iTt" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) +/obj/structure/largecrate/random/mini/med{ + density = 1; + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"iTw" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) "iTD" = ( /obj/effect/landmark/start/auxiliary_officer, /turf/open/floor/plating/plating_catwalk, @@ -25304,71 +30873,144 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"iTJ" = ( +"iTQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"iTW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +/area/almayer/shipboard/navigation) "iUh" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = -16 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"iUj" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"iUk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"iUn" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"iUm" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"iUo" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = -25 + }, +/obj/structure/surface/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/storage/box/sprays{ + pixel_y = -3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"iUG" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/machinery/power/apc/almayer, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/shipboard/brig/medical) +"iUW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"iUX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, +/obj/item/device/taperecorder, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"iUv" = ( -/obj/structure/machinery/cm_vending/clothing/engi/delta, +/area/almayer/shipboard/brig/interrogation) +"iVy" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"iVz" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"iUB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/area/almayer/maint/upper/u_a_s) +"iVD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + dir = 1; + name = "\improper Brig" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"iUF" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/upper/s_bow) "iVE" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iVL" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/living/briefing) -"iVN" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "containmentlockdown_S"; - name = "\improper Containment Lockdown" +"iVG" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"iVT" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"iVP" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) "iWa" = ( /obj/structure/sign/safety/water{ pixel_x = 8; @@ -25376,127 +31018,76 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) -"iWb" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) "iWc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"iWl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"iWn" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"iWx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"iWA" = ( -/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/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"iWB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"iWO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"iWQ" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"iWS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"iWT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Brig Cells" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"iWX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"iXd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"iXg" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"iXj" = ( -/obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"iWn" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"iWx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"iXq" = ( -/obj/structure/sign/safety/high_voltage{ +/obj/structure/sign/safety/maint{ + pixel_x = 8; pixel_y = -32 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"iWB" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"iXz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iWH" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"iWJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/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) +"iWR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"iXb" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/shipboard/panic) "iXA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25509,37 +31100,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) -"iXG" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"iXJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"iXK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"iXN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) "iXT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, @@ -25555,55 +31115,48 @@ /obj/item/book/manual/evaguide, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iXY" = ( +"iXW" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"iYe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"iYf" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"iYm" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"iYt" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"iYx" = ( +/obj/structure/bed/chair, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"iYa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"iYp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"iYA" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"iYO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"iYY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"iZb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) +/area/almayer/living/gym) +"iZd" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "iZg" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -25613,55 +31166,28 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iZo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 5 +"iZE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/obj/item/tool/pen, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"iZr" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"iZP" = ( +/obj/structure/platform{ + dir = 8 }, /obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"iZs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"iZA" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"iZK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = -29 +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "iZU" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/disposalpipe/segment, @@ -25673,12 +31199,26 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"jae" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"jac" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jaf" = ( +/obj/structure/bed/chair/comfy/bravo{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) +/obj/effect/decal/cleanable/dirt, +/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/almayer/plate, +/area/almayer/living/briefing) "jak" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25697,15 +31237,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"jaq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "jas" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -25715,10 +31246,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"jaA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) +"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/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jaz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) "jaI" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -25732,87 +31273,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"jaQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"jaS" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"jaZ" = ( -/obj/structure/bed/chair{ - dir = 4 +"jaR" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 8; + pixel_y = -1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -19; - pixel_y = -6 +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -7; + pixel_y = -1 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"jba" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"jbd" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/midship_hallway) -"jbi" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/trash/crushed_cup{ + pixel_y = 12 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "jbq" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/command/lifeboat) -"jbs" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"jbw" = ( +"jbt" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jbH" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jbK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jbz" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/maint/upper/u_a_p) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "jbN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light{ @@ -25846,68 +31348,49 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"jbY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"jca" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) "jcf" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"jck" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"jcu" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"jcw" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"jcE" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"jcx" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jcP" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/engineering/upper_engineering/starboard) +"jdl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"jdm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/trash/USCMtray, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"jdn" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) "jdu" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, @@ -25916,25 +31399,39 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"jdP" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge4" +"jdG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/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) -"jea" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) "jeb" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) +"jei" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jeq" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "jer" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -25942,82 +31439,58 @@ }, /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_a_p) -"jex" = ( -/obj/structure/machinery/door_control{ - id = "or02"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"jeN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"jev" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"jeP" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"jeW" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES AIST"; - name = "\improper Privacy Shutters" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 }, -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper AIST Office"; - dir = 1; - masterkey_resist = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jew" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"jez" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/aist_office) -"jeY" = ( /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/red/northwest, -/area/almayer/living/offices/flight) -"jft" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/light, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"jeO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"jeQ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/cryo_cells) +"jeR" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jfz" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_three) -"jfE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/shipboard/brig/perma) +"jfK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) "jfS" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12; @@ -26025,10 +31498,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"jfX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) "jfY" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -26041,9 +31510,31 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"jgi" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/living/briefing) +"jfZ" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"jge" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jgg" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) "jgk" = ( /obj/structure/machinery/shower{ dir = 1 @@ -26058,9 +31549,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"jgv" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) +"jgl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"jgr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "jgw" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 @@ -26081,51 +31595,49 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"jgD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"jgF" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jgJ" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/command/cichallway) +"jgK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"jgG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/area/almayer/maint/hull/lower/l_m_s) +"jgR" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/obj/structure/surface/rack, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"jgY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"jgZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/surface/table/almayer{ - layer = 3 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jha" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) "jhb" = ( /obj/structure/sign/safety/cryo{ pixel_x = -6; @@ -26136,33 +31648,32 @@ "jhc" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) -"jhj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"jhl" = ( -/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/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) +"jhn" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/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; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "jhx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) +"jhy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) "jhA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -26180,6 +31691,10 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) +"jhK" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "jhQ" = ( /obj/structure/closet, /obj/item/clothing/under/marine, @@ -26206,13 +31721,19 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"jis" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"jhW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"jic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/lobby) "jiM" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -26224,79 +31745,23 @@ /obj/item/frame/table, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"jiO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jiU" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"jja" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4; - layer = 2.99; - pixel_y = 4 - }, -/obj/structure/machinery/computer/almayer_control{ - dir = 4; - layer = 2.99; - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jjb" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes, -/obj/item/circuitboard/airalarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"jjc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"jjd" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jjg" = ( -/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/cargo, -/area/almayer/engineering/lower/engine_core) -"jji" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 + icon_state = "W" }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"jjk" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) "jjl" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 8; @@ -26304,41 +31769,28 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"jjm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 +"jjS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/storage/box/syringes, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"jjA" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"jjE" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"jjQ" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"jjZ" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/medical_science) +"jkj" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"jkl" = ( +/obj/structure/morgue, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"jkb" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"jke" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) +/area/almayer/medical/morgue) "jkq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -26360,56 +31812,102 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"jku" = ( -/obj/structure/largecrate/random/barrel/blue, +"jkz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/box/handcuffs, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jkx" = ( +/area/almayer/living/briefing) +"jkB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"jkD" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/upper/mess) -"jkP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"jkS" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/port_missiles) -"jld" = ( -/obj/structure/machinery/cm_vending/gear/executive_officer{ - density = 0; +/area/almayer/living/briefing) +"jkN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jkT" = ( +/obj/structure/machinery/status_display{ pixel_y = 30 }, -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"jkY" = ( +/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 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"jle" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"jlc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"jlA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"jlq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"jlD" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"jlE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) "jlG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -26423,26 +31921,6 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"jlI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"jlM" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) "jlN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -26465,22 +31943,42 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"jlU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"jlX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"jmi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"jmn" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/dirty{ + pixel_y = 5 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jmK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"jmP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "jmQ" = ( /obj/effect/landmark/start/maint, /obj/structure/machinery/light{ @@ -26488,46 +31986,57 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"jnm" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Oxygen Supply Console" +"jmY" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"jnc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/universal{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/area/almayer/hallways/lower/port_midship_hallway) +"jne" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"jnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/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) -"jnr" = ( +"jnp" = ( /obj/structure/surface/table/almayer, -/obj/item/device/reagent_scanner{ +/obj/item/cell/high{ pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clipboard{ - pixel_x = 8 - }, -/obj/item/paper{ - pixel_x = 8 + pixel_y = 8 }, -/obj/effect/spawner/random/toolbox{ +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; pixel_x = 5; - pixel_y = -3 + pixel_y = 1 }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"jnD" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) "jnI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -26544,160 +32053,175 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) -"jov" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +"joG" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"joM" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"joU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jpl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"joX" = ( -/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/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"jpo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/almayer/medical/medical_science) +"jpn" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"jpp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) "jpt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"jpy" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"jpF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +"jpD" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"jpI" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend, +/obj/item/desk_bell{ + pixel_x = -6; + pixel_y = 10; + anchored = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "jpW" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"jqo" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +"jqP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"jqH" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/living/briefing) -"jqM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "jqY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"jre" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/north, +/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) -"jrk" = ( -/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 - }, +"jrm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/upper/aft_hallway) -"jro" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"jrw" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/bed/chair/comfy, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jrE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/pilotbunks) +"jru" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"jrB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"jrC" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "jrH" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"jrL" = ( -/obj/structure/machinery/vending/cola, +"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/plate, -/area/almayer/living/bridgebunks) +/area/almayer/maint/hull/upper/u_f_p) +"jrJ" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver, +/area/almayer/command/aist_office) +"jrM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) "jsa" = ( /obj/structure/machinery/light{ dir = 8 @@ -26709,42 +32233,51 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"jsg" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"jsn" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"jso" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"jsd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"jsr" = ( -/obj/effect/landmark/railgun_computer, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"jss" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"jsu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jsx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"jsA" = ( +/turf/open/floor/almayer/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) -"jsG" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, -/area/almayer/command/airoom) -"jsI" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"jsJ" = ( -/obj/structure/platform{ +"jsP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) "jsR" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -26753,95 +32286,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/vehiclehangar) -"jsY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"jti" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"jtm" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"jtp" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"jtt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jtM" = ( -/obj/structure/platform_decoration{ - dir = 8 +"jtj" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"jts" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) "jtU" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"jtV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"jtW" = ( -/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/plate, -/area/almayer/shipboard/panic) -"jtY" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 +"jtZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"juj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"jum" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "juo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"juC" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) "juD" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -26849,46 +32326,60 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"juE" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"juS" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"juN" = ( -/obj/structure/sign/safety/security{ - pixel_x = -17; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"juX" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"juR" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jva" = ( +/obj/structure/closet, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_one) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) "jvc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/mp_bunks) -"jvh" = ( -/obj/structure/bed/chair{ - dir = 8 +"jvp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) "jvt" = ( /obj/item/tool/warning_cone{ pixel_x = -20; @@ -26900,9 +32391,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"jvJ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) +"jvB" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/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/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) "jvM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -26913,89 +32415,83 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"jvW" = ( +"jvP" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"jvX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) "jvY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/telecomms) -"jwf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"jwi" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/toy/deck{ + pixel_x = -9 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "jwq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) +"jwr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) "jwJ" = ( /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) +"jwK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) "jwP" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"jwT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) -"jxc" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"jxf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"jxj" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 - }, -/obj/structure/largecrate/random/mini/med{ - density = 1; - pixel_x = 3; - pixel_y = 11 + pixel_x = -1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"jxi" = ( +/obj/structure/machinery/sleep_console, /turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) +"jxq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) "jxu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -27017,37 +32513,15 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"jxG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/brig/processing) -"jxZ" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"jyr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ +"jxX" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/obj/structure/largecrate/random/secure{ - pixel_x = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"jyx" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"jyz" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jyb" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) "jyE" = ( /obj/structure/machinery/light, /turf/open/floor/wood/ship, @@ -27066,24 +32540,45 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/medical_science) -"jyP" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +"jyR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"jzM" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/command/lifeboat) -"jzQ" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, /turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) +/area/almayer/hallways/hangar) +"jyY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"jzD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"jzE" = ( +/obj/structure/closet/secure_closet/bar{ + name = "Success Cabinet"; + req_access_txt = "1" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "jzT" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -27091,97 +32586,54 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"jAl" = ( -/obj/structure/largecrate/random/barrel/green, +"jzZ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jAe" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jAn" = ( +/area/almayer/command/corporateliaison) +"jAj" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"jAo" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 3"; - layer = 3.2; - name = "Cell 3 Control"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 2"; - layer = 3.2; - name = "Cell 2 Control"; - pixel_x = 16; - pixel_y = 16 + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 2"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = 7; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 3"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = -6; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"jAE" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"jAW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jAz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) -"jAY" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"jBh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"jAB" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"jAJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"jBn" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/midship_hallway) -"jBN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/area/almayer/engineering/upper_engineering/port) +"jBy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -27196,19 +32648,6 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"jBR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Warden's Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"jCe" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) "jCg" = ( /obj/docking_port/stationary/escape_pod/south, /turf/open/floor/plating, @@ -27224,86 +32663,53 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"jCp" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"jCu" = ( +"jCn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"jCr" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"jCv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jCP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/almayer/maint/hull/lower/s_bow) +"jCx" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"jCK" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) "jCX" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/shipboard/brig/starboard_hallway) -"jDa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"jDd" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jDg" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 4; - c_tag = "AI - AIST Office"; - autoname = 0 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/west, -/area/almayer/command/aist_office) -"jDn" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_cargo, -/area/almayer/command/aist_office) -"jDM" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +"jDk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/surface/rack{ - layer = 2.5 +/obj/structure/transmitter{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"jDz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) "jDO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27321,22 +32727,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"jEe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"jEk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"jEx" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) "jEA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27354,19 +32744,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) +"jEM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "jES" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"jFe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"jEV" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/mp_bunks) "jFf" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -27389,251 +32786,174 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) -"jFS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"jGy" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"jHa" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"jHe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 +"jFx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"jHh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"jHj" = ( -/obj/structure/stairs{ - dir = 4 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = -2 }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"jHt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) -"jHE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"jHH" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"jFy" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"jFE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"jHQ" = ( -/obj/structure/machinery/crema_switch{ - pixel_x = -24; - req_access_txt = "25" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"jHU" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"jHX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"jFI" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jFM" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jFY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"jGn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"jIh" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jGI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jGQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_x = 1; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jGR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"jIo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"jHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"jIq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"jIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"jIu" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"jID" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/cups{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"jIO" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"jIS" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +/area/almayer/shipboard/brig/cic_hallway) +"jHn" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"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/item/trash/candle, -/obj/item/tool/match/paper, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"jJj" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"jJn" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/maint/upper/u_a_p) -"jJx" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/lower/s_bow) +"jHt" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) +"jHC" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"jHL" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jJO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "37" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jHQ" = ( +/obj/structure/machinery/crema_switch{ + pixel_x = -24; + req_access_txt = "25" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"jJT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jKa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"jIs" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"jIC" = ( +/obj/structure/machinery/computer/working_joe{ dir = 4; - icon_state = "pipe-c" + pixel_x = -17 }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jKc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"jIJ" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/aft_hallway) -"jKh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/area/almayer/maint/hull/lower/l_f_s) +"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) +"jIV" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"jKo" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jJk" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"jKx" = ( -/obj/structure/machinery/power/apc/almayer/hardened, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"jKn" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"jKz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"jKB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "jKF" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -27648,105 +32968,55 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"jKN" = ( -/obj/structure/machinery/door_control{ - id = "agentshuttle"; - indestructible = 1; - name = "Shutters"; - pixel_y = 25; - req_one_access_txt = "201"; - use_power = 0 +"jKI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"jKQ" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/safety/cryo{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"jKU" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "tcomms" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"jLg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_aft_hallway) +"jLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"jLk" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"jLn" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"jLs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"jLH" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jLS" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jMa" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"jLr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"jLB" = ( -/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/test_floor4, -/area/almayer/maint/upper/mess) -"jLN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"jLO" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/area/almayer/hallways/lower/port_fore_hallway) +"jMm" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"jLP" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/obj/item/clothing/mask/rebreather/scarf, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jLQ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"jMc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) -"jMq" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/navigation) +/area/almayer/living/pilotbunks) "jMr" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -27762,9 +33032,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"jMw" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) "jMx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -27775,10 +33042,29 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"jMy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jMG" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) "jML" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"jMM" = ( +/obj/effect/landmark/late_join/aist, +/obj/effect/landmark/start/aist, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, +/area/almayer/command/aist_office) "jMQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -27798,50 +33084,55 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"jMU" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"jMZ" = ( -/obj/structure/machinery/light{ - dir = 8 +"jNc" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 3"; + locked = 1; + name = "\improper Containment Cell 3"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 3"; + name = "\improper Containment Cell 3" }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"jNe" = ( -/obj/item/storage/firstaid/fire/empty, -/obj/item/storage/firstaid/o2/empty, -/obj/item/storage/firstaid/rad/empty, -/obj/item/storage/firstaid/toxin/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"jNf" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"jNl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"jNm" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"jNq" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/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/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/red/west, +/area/almayer/hallways/lower/port_fore_hallway) "jND" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27854,88 +33145,110 @@ /obj/effect/spawner/random/balaclavas, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"jNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jNN" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"jNQ" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) "jNT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) -"jOb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"jOi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"jOl" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"jOk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "line2"; + pixel_x = -4; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "ROlobby2"; + name = "RO Line 2 Shutters"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "jOo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) +"jOq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "jOt" = ( /obj/item/trash/barcardine, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"jOO" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"jOY" = ( -/obj/structure/disposalpipe/segment{ +"jOx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"jOD" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jOE" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "pipe-c" + pixel_x = 24 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"jPd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"jPq" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"jPh" = ( -/obj/structure/platform_decoration{ - dir = 4 +/area/almayer/engineering/upper_engineering/starboard) +"jPu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"jPJ" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 29 +/area/almayer/shipboard/panic) +"jPx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/shipboard/brig/medical) -"jPO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "jPP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27948,61 +33261,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jQj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jQl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D3"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"jQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"jQG" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"jQK" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"jQM" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"jRf" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 1"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"jRg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"jPU" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"jRm" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jQt" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"jRc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/engineering/lower/workshop) "jRp" = ( /obj/structure/largecrate/supply/supplies/water, /obj/item/toy/deck{ @@ -28010,22 +33284,6 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"jRs" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) -"jRv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) "jRz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -28039,20 +33297,45 @@ }, /turf/closed/wall/almayer/outer, /area/space) -"jSa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"jSu" = ( +"jRC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"jRK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"jRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/hangar) +"jSo" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jSp" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"jSw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "jSy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -28062,52 +33345,53 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"jSM" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"jSO" = ( -/obj/structure/pipes/standard/cap/hidden{ +"jSU" = ( +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4 }, -/obj/structure/machinery/cryo_cell{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"jSV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"jTf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"jTj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"jTu" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"jTt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"jTv" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"jTC" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) +/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/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jTB" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) "jTH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28122,60 +33406,70 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"jTN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) +"jTI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) "jTU" = ( /obj/structure/bed, /obj/item/bedsheet/red, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/warden_office) -"jUg" = ( -/obj/structure/disposalpipe/segment{ +"jUb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/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) -"jUr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"jUA" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -4 +"jUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jUq" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"jUE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, -/obj/item/restraint/handcuffs, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jUx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-2"; + req_access = null }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"jUF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/area/almayer/engineering/lower/workshop) +"jUM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) "jUV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28186,6 +33480,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) +"jUY" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) "jVa" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) @@ -28198,18 +33495,17 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"jVo" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, +"jVr" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"jVq" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"jVs" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/squads/alpha) "jVt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -28219,87 +33515,42 @@ }, /turf/open/floor/almayer/research/containment/corner3, /area/almayer/medical/containment/cell) -"jVB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"jVG" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"jVI" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"jVK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"jVP" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 +"jVE" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"jWb" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jVU" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/area/almayer/engineering/lower/engine_core) "jWh" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/port) -"jWi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jWl" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Left"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) "jWr" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"jWJ" = ( -/obj/structure/bed/chair{ - dir = 4 +"jWu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/living/offices) +"jXc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) "jXd" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -28308,67 +33559,87 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"jXn" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +"jXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"jXp" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"jXu" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"jXk" = ( +/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/plate, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "jXN" = ( /obj/docking_port/stationary/escape_pod/south, /turf/open/floor/plating, /area/almayer/maint/upper/u_m_s) -"jXT" = ( -/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 +"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/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jYa" = ( +/obj/structure/machinery/vending/hydroseeds, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"jYe" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 +/area/almayer/maint/upper/u_a_s) +"jYc" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"jYj" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"jYk" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"jYn" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"jYG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/device/binoculars, -/obj/item/storage/bible, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 + }, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"jYm" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/area/almayer/maint/hull/upper/p_stern) "jYH" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/warning_stripes{ @@ -28381,13 +33652,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"jYJ" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "jYM" = ( /obj/structure/ladder{ height = 1; @@ -28399,14 +33663,13 @@ }, /turf/open/floor/plating/almayer, /area/almayer/maint/hull/lower/p_bow) -"jYS" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"jYV" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) +"jZd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) "jZe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28416,19 +33679,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"jZf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"jZl" = ( -/obj/structure/machinery/light/small{ +"jZo" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"jZs" = ( +/obj/structure/machinery/light/containment{ dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) "jZu" = ( /obj/structure/machinery/door_control{ id = "CIC_Conference"; @@ -28443,100 +33711,166 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"jZv" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jZC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jZS" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper AIST Office"; + dir = 1; + req_one_access_txt = "31;92"; + masterkey_resist = 1 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) "jZU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/medical/containment/cell/cl) -"kaf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) +"jZY" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"kac" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"kaj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"kak" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"kam" = ( +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "kan" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"kar" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" +"kaq" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"kaw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kaB" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"kaA" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"kaC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"kaE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/upper/midship_hallway) +"kaI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kaK" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"kaO" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"kaQ" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"kaP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"kaS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"kbc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 8 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"kaY" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/area/almayer/squads/bravo) +"kbl" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"kbo" = ( -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = -6 +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) "kbv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"kbA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"kbw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"kbH" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.2; - pixel_x = -7; - pixel_y = 10 +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kbx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 3; - pixel_y = 12 +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"kbJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) "kbV" = ( /obj/structure/platform{ dir = 1 @@ -28553,14 +33887,15 @@ /obj/structure/machinery/camera/autoname/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"kci" = ( -/obj/structure/barricade/handrail, +"kcg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"kck" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) +/area/almayer/hallways/lower/port_midship_hallway) "kcl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -28568,14 +33903,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/bravo) -"kco" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "kcp" = ( /turf/closed/wall/almayer, /area/almayer/living/auxiliary_officer_office) @@ -28585,151 +33912,89 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"kcy" = ( -/obj/structure/platform_decoration{ +"kcx" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"kcA" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"kcG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "kcH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) -"kcJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) "kcN" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/commandbunks) -"kcT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) "kde" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"kdg" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kdu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"kdz" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/living/briefing) -"kdF" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Computer Lab" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"kdL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"kdT" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +"kdi" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kdn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"kdW" = ( -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kdo" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kec" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/area/almayer/maint/hull/lower/l_f_s) +"kdv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ken" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"kdB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"keG" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"kew" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"keO" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"keA" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) +/area/almayer/maint/hull/lower/l_a_p) "keR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"keZ" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"kfa" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"kfl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"kfn" = ( -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"kfx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"kfA" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) "kfB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -28737,22 +34002,38 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"kfC" = ( -/turf/open/floor/almayer_hull/outerhull_dir/north, -/area/space) -"kfQ" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 +"kfE" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"kfI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "kfU" = ( /turf/open/floor/plating, /area/almayer/powered/agent) -"kgg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) +"kgp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/transmitter{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) "kgs" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -28771,80 +34052,66 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"kgu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = 32 +"kgD" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kgE" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Right"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/area/almayer/maint/hull/lower/l_m_s) +"kgS" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"kgI" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"kgN" = ( -/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"kgU" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"khh" = ( -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"kho" = ( +/area/almayer/hallways/lower/vehiclehangar) +"kgV" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 1 + 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"; - pixel_x = -1 + layer = 3.3 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"khp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S"; + layer = 3.3 }, -/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/plating/northeast, +/area/almayer/hallways/upper/aft_hallway) +"khd" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"khs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Cryogenics Bay" +/area/almayer/squads/charlie_delta_shared) +"khf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"khQ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"kib" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"khD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"khE" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"khI" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -28858,79 +34125,99 @@ /obj/item/storage/belt/utility, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"kiH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"kiW" = ( -/obj/structure/machinery/power/apc/almayer{ +"kin" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kio" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/closet, +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"kjc" = ( -/obj/structure/pipes/vents/scrubber{ +/area/almayer/living/port_emb) +"kiy" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"kjd" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"kiG" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"kjf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"kiM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"kiR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kjm" = ( -/obj/structure/sign/safety/fibre_optics{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"kiT" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"kiU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"kjz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"kiV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"kiX" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kjk" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"kjw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) "kjD" = ( /obj/structure/machinery/computer/demo_sim{ dir = 4; @@ -28944,143 +34231,64 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"kka" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"kkb" = ( -/obj/vehicle/powerloader, +"kjO" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower/engine_core) +"kjW" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"kke" = ( -/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/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"kkg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"kki" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"kkm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"kko" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"kkz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"kkC" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"kjY" = ( /obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kkG" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"kkS" = ( -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"kkT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"klk" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"kln" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"klo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/maint/hull/lower/l_a_s) +"kkk" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"klp" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"kls" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"kkt" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"kkv" = ( +/obj/structure/toilet{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/light/small, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/chief_mp_office) +"kkx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kkN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"klO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"klR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/hallways/lower/starboard_aft_hallway) +"kkW" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"klH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "klT" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, @@ -29094,67 +34302,71 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"kme" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"kmj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"kmp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"kmv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/window/reinforced/ultra{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"kmC" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"kmA" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/west, +/area/almayer/command/aist_office) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"kmK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"kmT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"knf" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/sign/safety/security{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/fore_hallway) +"knb" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"kng" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) +/area/almayer/living/pilotbunks) +"knl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_aft_hallway) "knm" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) -"kny" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side, +"knH" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 + }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lower_medical_lobby) "knK" = ( /obj/structure/kitchenspike, @@ -29162,23 +34374,19 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"knZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"knL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"knU" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"kon" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"kos" = ( -/obj/structure/machinery/door_control{ - id = "kitchen2"; - name = "Main Kitchen Shutters"; - pixel_x = -28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/area/almayer/maint/upper/u_a_p) "kow" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -29186,97 +34394,185 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) +"kox" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4; + id = "civ_uniforms" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/gym) "koB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"koJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"koC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"koX" = ( -/obj/structure/machinery/door/poddoor/almayer/blended{ - id = "RoomDivider"; - layer = 3.1; - name = "\improper Room Divider" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) +/area/almayer/squads/bravo) +"kph" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/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) -"kps" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"kpS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"kpV" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"kpo" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kpL" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kpQ" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"kqa" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kqb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kqd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) "kqm" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"kqq" = ( -/obj/structure/machinery/light{ - dir = 1 +"kqo" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"kqt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) "kqv" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"kqD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"kqy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"kqG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"kqO" = ( -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/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/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"kqV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 8 +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kqC" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"krz" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"kqK" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"krp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kry" = ( +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "krA" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -29286,22 +34582,61 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) +"krG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/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) -"krM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"krN" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"krW" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"krO" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"krS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"krU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/tool/screwdriver, +/obj/item/bananapeel{ + desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; + icon = 'icons/obj/items/weapons/guns/attachments.dmi'; + icon_state = "iffbarrel"; + name = "Broken B8 Smart-Scope"; + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"krZ" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) "ksg" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -29311,44 +34646,22 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"ksh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) "ksm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/starboard_hallway) -"ksv" = ( -/obj/structure/morgue{ - dir = 8 +"ksp" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "ksw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_stern) -"ksx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ksP" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +"ksN" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/living/briefing) "kti" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -29357,69 +34670,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"ktk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"ktp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"kts" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"ktB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"ktC" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +"ktl" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ktF" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ktI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"ktV" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"ktQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, +/area/almayer/command/airoom) +"ktR" = ( +/obj/item/trash/crushed_cup, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/l_m_s) +"ktX" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/living/grunt_rnr) "kui" = ( /obj/structure/sign/safety/hazard{ pixel_y = 32 @@ -29444,96 +34723,73 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"kux" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"kuC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_p) -"kuF" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"kuN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"kuU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"kuY" = ( -/obj/item/frame/light_fixture{ - anchored = 1; - desc = "A broken fluorescent tube light."; - dir = 8; - icon_state = "tube-broken"; - name = "broken light fixture" +"kuw" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/living/briefing) +"kuJ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"kuK" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kvf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"kvy" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kvB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/area/almayer/engineering/lower/workshop) +"kvh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"kvE" = ( +/area/almayer/engineering/upper_engineering) +"kvL" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/red{ - pixel_x = -4 +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4 }, -/obj/item/folder/blue{ - pixel_x = 4 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"kvU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"kwc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/light{ +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kwd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"kvR" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"kwg" = ( +/obj/structure/bookcase/manuals/medical, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"kvU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "kwi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -29544,91 +34800,59 @@ /obj/structure/surface/rack, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"kwu" = ( -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = 7 +"kws" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kwQ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"kwx" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"kwz" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"kwW" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" +/area/almayer/hallways/hangar) +"kxd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"kwY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"kxe" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kxh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"kxm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "southcheckpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" +/area/almayer/maint/hull/lower/p_bow) +"kxo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kxn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kxr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kxL" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"kxT" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"kxU" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/green/north, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) +"kxP" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/mp_bunks) "kya" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -29650,9 +34874,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_p) -"kyb" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) "kyh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -29666,36 +34887,20 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"kyl" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"kyv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +"kyr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) "kyw" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_m_s) -"kyz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +"kyN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) "kyP" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_f_p) @@ -29714,27 +34919,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) +"kyY" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "kzb" = ( /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer, /area/almayer/living/briefing) -"kzh" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) +"kzc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "kzk" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/computerlab) -"kzq" = ( -/obj/structure/machinery/light{ - dir = 1 +"kzr" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 6 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) "kzs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29742,104 +34960,181 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"kzu" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +"kzy" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"kzC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"kzK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"kzx" = ( -/obj/structure/platform, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kzB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "7;19" +/area/almayer/living/port_emb) +"kzO" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"kzJ" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kAh" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"kAj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"kAm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "kAv" = ( /obj/structure/largecrate/supply/ammo/shotgun, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"kBa" = ( -/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/greencorner, -/area/almayer/hallways/lower/port_fore_hallway) -"kBt" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"kBG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"kBJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kBN" = ( -/obj/structure/bed/chair{ +"kAL" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"kAU" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"kBS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/south2) +"kBo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"kBy" = ( +/obj/structure/machinery/ares/processor, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"kBP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"kBY" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"kCd" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) "kCi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_missiles) -"kCK" = ( -/obj/structure/machinery/light{ - dir = 1 +"kCj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"kCl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = 7 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"kCL" = ( -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"kCP" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-3"; - req_access = null +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"kCW" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) +/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/plate, +/area/almayer/maint/upper/u_m_s) +"kCm" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kCu" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kCE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"kCY" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) "kDd" = ( /obj/structure/sign/safety/water{ pixel_x = 8; @@ -29847,26 +35142,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"kDf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"kDs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kDu" = ( -/obj/structure/closet/secure_closet/fridge/groceries, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"kDw" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +"kDk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) "kDH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -29881,16 +35172,16 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"kDT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +"kDR" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"kDW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) "kEc" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -29901,215 +35192,173 @@ /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"kEe" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-4"; - req_access = null +"kEg" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kEp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) "kEq" = ( /obj/structure/machinery/door/window/ultra{ dir = 8; req_access_txt = "3" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"kEs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"kEt" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) +"kEA" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) "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) -"kEI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Weyland-Yutani Office" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) "kEW" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"kFc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/u_a_s) -"kFj" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"kFF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"kFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kFI" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, +/area/almayer/living/pilotbunks) +"kFs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/area/almayer/living/briefing) +"kFv" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"kFO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room2"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/almayer/plating/northeast, +/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) -"kFW" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) "kFY" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7 }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"kGg" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"kGh" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) "kGi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"kGp" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"kGB" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"kGH" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; +"kGu" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kGI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"kGw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"kGF" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/emerald/southeast, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) -"kGL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"kGO" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"kGV" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 4"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 +"kGQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, /turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell/cl) -"kGW" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"kGX" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"kHg" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/securestorage) -"kHh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"kHm" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/area/almayer/medical/containment/cell) +"kGS" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"kHd" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"kHx" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"kHo" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"kHW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/device/camera_film, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"kHS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"kHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/orange/north, +/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) -"kIh" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/engine_core) "kIk" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; @@ -30125,44 +35374,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"kIo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"kIy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"kIJ" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kIW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"kIZ" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kJa" = ( -/obj/structure/platform{ - dir = 8 +"kIP" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) "kJc" = ( /obj/structure/ladder{ height = 1; @@ -30174,13 +35391,6 @@ }, /turf/open/floor/plating/almayer, /area/almayer/maint/hull/lower/s_bow) -"kJg" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) "kJh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -30189,74 +35399,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) +"kJi" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "kJm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"kJv" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/toy/deck/uno{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kJy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/transmitter{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 +"kJH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/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/sterile_green, -/area/almayer/medical/lockerroom) -"kJC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/closet/secure_closet/freezer/industry, +/obj/item/reagent_container/glass/beaker/silver, +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kJF" = ( -/obj/structure/closet/secure_closet/securecom, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"kJQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/wy, -/obj/structure/machinery/computer/cameras/containment{ - dir = 4; - layer = 2.981; - name = "Research Cameras"; - pixel_y = 16 - }, -/obj/item/clothing/accessory/stethoscope, -/obj/structure/closet/secure_closet/professor_dummy{ - pixel_x = -32 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"kJU" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) +/area/almayer/engineering/lower/workshop/hangar) "kJW" = ( /obj/structure/machinery/door/window/westright, /obj/structure/machinery/shower{ @@ -30270,67 +35433,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"kKe" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"kKi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"kKC" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/mp_bunks) -"kKD" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, +"kJZ" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"kKK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/area/almayer/maint/hull/lower/l_a_s) +"kKk" = ( +/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/sterile_green_corner/north, -/area/almayer/medical/operating_room_three) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"kKB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/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) -"kKW" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"kLd" = ( -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"kKY" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kLc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) -"kLf" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +"kLk" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "kLm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30341,52 +35482,47 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"kLu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"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/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"kLz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8; - pixel_y = 2; - autoname = 0; - c_tag = "AI - Reception Corridor" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"kLC" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/squads/req) +"kMa" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kMp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"kLJ" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"kLY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"kMl" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/red/east, +/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/plate, -/area/almayer/engineering/lower) -"kMs" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -30397,6 +35533,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"kMK" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/port) +"kMR" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "kMV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -30404,6 +35555,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) +"kMW" = ( +/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/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/plating/northeast, +/area/almayer/shipboard/panic) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -30429,34 +35599,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"kNF" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"kNI" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/structure/sign/safety/hvac_old{ - pixel_y = -26 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) "kNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -30470,41 +35612,54 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"kNV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"kNX" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "kNY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"kOg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"kOo" = ( +"kOv" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kOp" = ( -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"kOz" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"kOB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = -6 + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, /turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) +/area/almayer/living/pilotbunks) +"kOH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/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!"; @@ -30516,83 +35671,83 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"kON" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 16 +"kOR" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"kOW" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"kOQ" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"kOV" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"kPe" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"kPa" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/upper/fore_hallway) +"kPx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"kPB" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_aft_hallway) -"kPk" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"kPl" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"kPs" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_one_access_txt = "7;23;27" +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"kPG" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) "kPH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"kPK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"kPJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"kPR" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"kPV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"kPY" = ( -/obj/structure/largecrate/machine/bodyscanner, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 + }, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/engineering/upper_engineering/port) "kPZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -30603,29 +35758,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"kQc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"kQl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kQo" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) "kQr" = ( /obj/structure/surface/table/almayer, /obj/item/trash/pistachios, @@ -30634,113 +35766,49 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"kQv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) -"kQE" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 1"; - locked = 1; - name = "\improper Containment Cell 1" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 1"; - name = "\improper Containment Cell 1"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"kQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"kQM" = ( -/obj/structure/sink{ - pixel_y = 32 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"kRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"kQQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"kQV" = ( -/obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"kQZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/engineering/port_atmos) -"kRr" = ( +/area/almayer/medical/operating_room_three) +"kRg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"kRh" = ( /obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kRt" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"kRv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kRw" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"kRA" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/projector{ +/obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; - vector_x = -3; - vector_y = -1 + vector_x = 3; + vector_y = 1 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"kRJ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"kRO" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) +"kRD" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light{ - dir = 1 + unacidable = 1; + unslashable = 1 }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -30750,54 +35818,49 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"kRW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ +"kRQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; pixel_y = 7 }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"kSb" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"kSe" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17; + pixel_y = -6 }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"kRU" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "Delta_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"kSi" = ( +/obj/structure/machinery/cm_vending/gear/intelligence_officer{ + density = 0; + pixel_x = -32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"kSq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"kSn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/p_bow) +"kSv" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/hangar) "kSy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -30811,10 +35874,20 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"kSD" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) +"kSA" = ( +/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/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"kSC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "kSH" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -30827,48 +35900,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"kSP" = ( -/obj/structure/machinery/status_display{ +"kSU" = ( +/obj/structure/transmitter/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; pixel_y = 30 }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"kSS" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"kTc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"kTf" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/machinery/power/apc/almayer, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/shipboard/brig/medical) -"kTk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/squads/req) "kTp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -30876,35 +35916,17 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/medical) -"kTu" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kTB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"kTH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"kTv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"kTR" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"kTS" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kTN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/ce_room) "kTY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -30915,73 +35937,64 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"kUt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"kUg" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"kUu" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 4"; - pixel_x = -24 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"kUh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + dir = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"kUx" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "kUA" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) -"kUD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"kUI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kUJ" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"kUF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kVw" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 +/area/almayer/maint/upper/u_f_s) +"kUL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kUR" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"kUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) -"kVD" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, /turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) +/area/almayer/lifeboat_pumps/south2) "kVV" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -31003,50 +36016,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"kWm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"kWk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"kWq" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"kWI" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"kWN" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_x = -27 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"kWs" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/turf/open/floor/almayer/bluefull, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"kWu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"kWv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"kWG" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 3"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"kWL" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) "kWR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/transmitter/rotary{ @@ -31058,31 +36063,58 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"kXG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"kWT" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/living/pilotbunks) +"kXa" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"kXQ" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/area/almayer/squads/bravo) +"kXf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kXU" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"kXm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"kYg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"kXt" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"kXu" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"kXw" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"kXN" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kYb" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) @@ -31092,23 +36124,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"kYo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"kYq" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "Access Hall"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"kYs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/disk_reader, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) "kYt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible{ @@ -31127,96 +36142,98 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"kYD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"kYv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kYF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"kYQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/maint/upper/u_f_s) +"kYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/chief_mp_office) -"kZx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/hangar) -"kZz" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kZA" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kZF" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kYU" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/item/clothing/glasses/welding{ - pixel_y = 6 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"kYV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"lac" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"laf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +/area/almayer/living/offices) +"kZc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lak" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/area/almayer/maint/upper/u_a_s) +"kZN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"lal" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Garden" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/auxiliary_officer_office) +"kZV" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lab" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"lah" = ( +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/living/gym) "lat" = ( /obj/structure/toilet{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) -"lav" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) "laD" = ( /obj/docking_port/stationary/escape_pod/north, /turf/open/floor/plating, /area/almayer/maint/upper/u_m_p) +"laI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"laM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) "laO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31226,6 +36243,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"laQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "laU" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -31249,21 +36274,12 @@ }, /turf/open/floor/plating, /area/almayer/command/cic) -"laZ" = ( -/obj/structure/surface/table/reinforced/prison, -/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/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"lbf" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) "lbs" = ( /obj/structure/sign/safety/biolab{ pixel_x = -17; @@ -31275,57 +36291,38 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"lbD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"lbH" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/cryo_cells) -"lbT" = ( +"lbB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"lbO" = ( /obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lbW" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"lci" = ( -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/area/almayer/maint/upper/u_m_p) +"lbX" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"lcz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"lcH" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/area/almayer/squads/charlie) +"lcg" = ( +/obj/structure/machinery/ares/substrate, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"lcy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"lcJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"lcM" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) "lcV" = ( /obj/structure/bed/chair{ dir = 4 @@ -31341,6 +36338,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) +"ldb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) "ldc" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/workshop) @@ -31350,47 +36353,31 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"ldq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"ldu" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"ldl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ldA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_container/food/condiment/sugar{ - pixel_x = 10 - }, -/obj/item/clothing/head/chefhat, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/lifeboat_pumps/north2) +"ldt" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ldC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "ldF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) -"ldJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) +"ldW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "lea" = ( /obj/structure/sink{ dir = 4; @@ -31409,22 +36396,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"lel" = ( +"lef" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"leo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" + dir = 6 }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"leg" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) "let" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -31435,71 +36418,20 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"leB" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"leI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"leO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"leP" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"leX" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/cic) -"lfc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"lfh" = ( -/obj/structure/barricade/handrail, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"lfm" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"lfo" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, +"leM" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/hull/upper/s_stern) +"leY" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"lft" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "lfx" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) @@ -31507,33 +36439,12 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"lfA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"lfF" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"lfS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"lfT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"lfH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "lfZ" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/mre_pack/meal5, @@ -31544,21 +36455,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_f_s) -"lgh" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-5"; - req_access = null +"lgk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lgt" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"lgn" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/mirror{ + pixel_x = 28 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) "lgy" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -31568,66 +36482,51 @@ id = "Firing_Range_2"; name = "range shutters" }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"lgz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"lgR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"lgV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"lgY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"lhf" = ( +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"lgF" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"lhk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ - dir = 2 +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"lhm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access_txt = "19;27;22" +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) +/area/almayer/living/briefing) +"lhj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"lhs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lht" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"lhv" = ( +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + pixel_y = -20; + req_access_txt = "5" + }, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) "lhB" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -31640,37 +36539,13 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"lhF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 +"lhJ" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 12; + pixel_y = 25 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"lhN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"lhS" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -31678,67 +36553,49 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"lie" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"lij" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"lin" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"liq" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"liD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 +"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/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lib" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/lower/stern) +"lid" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "liJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"liK" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"liM" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/status_display{ +"liY" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 5"; + layer = 2.1; + name = "Mounted Flash"; pixel_y = 30 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"liR" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) "liZ" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck, @@ -31749,16 +36606,25 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"ljk" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"ljn" = ( -/obj/structure/machinery/flasher{ - id = "Perma 1"; - pixel_y = 24 +"ljf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ljm" = ( +/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/plate, -/area/almayer/shipboard/brig/perma) +/area/almayer/maint/hull/lower/l_f_p) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, /obj/effect/landmark/late_join/bravo, @@ -31767,38 +36633,23 @@ "ljv" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_a_p) -"ljJ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"ljG" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ljO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) -"ljL" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"ljN" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"ljR" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) "ljS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -31809,21 +36660,23 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"ljX" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null +"ljW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lka" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "lkd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -31833,67 +36686,58 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"lkn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"lkA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" +"lkf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_y = -2; + req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"lkE" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/offices/flight) +"lkm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"lkL" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/bed/chair/comfy/bravo{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/barricade/deployable{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"lkH" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "lkV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"lkX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) +"lkW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/marine, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/tool/portadialysis, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) "lla" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -31904,113 +36748,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) -"lli" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"llq" = ( -/obj/structure/machinery/sentry_holder/almayer/mini/aicore{ +"llo" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"llK" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "Stairway Shutters"; - pixel_x = 36; - req_one_access_txt = "31;92"; - pixel_y = -2 - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "Corridor Shutters"; - pixel_x = 36; - pixel_y = 4; - req_one_access_txt = "31;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "Core Shutters"; - pixel_x = 36; - pixel_y = 10; - req_one_access_txt = "31;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES Railing"; - indestructible = 1; - name = "Core Railings"; - needs_power = 0; - pixel_x = 28; - req_one_access_txt = "31;92"; - pixel_y = 7 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "Records Room Shutters"; - pixel_x = 28; - pixel_y = 1; - req_one_access_txt = "31;92" - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) -"lly" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"llN" = ( -/obj/structure/closet/basketball, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"llT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"llV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/evidence_storage) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"llO" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/hangar) "lma" = ( /obj/structure/sign/safety/security{ pixel_x = 15 }, /turf/closed/wall/almayer, /area/almayer/hallways/lower/starboard_umbilical) -"lmg" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"lmk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) +"lmi" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -32030,182 +36790,168 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"lmz" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/space) -"lmI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 2"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"lmT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lmV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"lnd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command{ - department = "AI Core"; - pixel_y = 8 - }, -/obj/structure/transmitter/rotary{ - name = "AI Core Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Core"; - pixel_x = 8; - pixel_y = -8 - }, -/obj/item/device/radio/intercom{ - frequency = 1500; - name = "AI Core Intercom"; - pixel_x = 28 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"lnf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"lnl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"lnu" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/gym) -"lnD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/basketball) -"lnH" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"lmz" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/space) +"lmA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lnM" = ( -/obj/structure/platform{ +/area/almayer/living/numbertwobunks) +"lmG" = ( +/obj/structure/stairs{ dir = 8; - layer = 2.7 + icon_state = "ramptop" }, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"lne" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"lnh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Chief MP's Office" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/uscm/directional/west, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"lnm" = ( +/turf/open/floor/almayer/orangecorner, /area/almayer/living/briefing) -"lnO" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silver, +"lnt" = ( +/turf/open/floor/almayer/silvercorner, /area/almayer/shipboard/brig/cic_hallway) -"lnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +"lnu" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/gym) +"lnP" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"lnS" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"loh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "35" +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"loj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"lok" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lol" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"lou" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 + icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"loq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"loy" = ( +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_x = 27 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "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, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "loP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) +"loS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) "loV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -32220,88 +36966,62 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"loZ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"lpD" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"lpX" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"lqc" = ( -/obj/structure/filingcabinet, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 +"loY" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"lpg" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + req_access = list(1) }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"lqm" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"lpl" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"lqu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"lpt" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"lpy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/chief_mp_office) -"lqA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"lql" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"lqF" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_lobby) +"lqK" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"lqL" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"lqP" = ( -/obj/structure/machinery/power/terminal{ +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"lqN" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"lqY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"lra" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) "lrq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"lry" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) "lrE" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -32311,23 +37031,21 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lrP" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "\improper Security Vault"; - req_access = null; - req_one_access_txt = "91;92"; - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ - plane = -6 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) +"lrH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "lrT" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"lrW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "lrX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -32338,69 +37056,79 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"lsf" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) +"lsn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/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) -"lst" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"lsw" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"lsE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"lsp" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_umbilical) -"lsT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"lsD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/red/east, +/area/almayer/living/offices/flight) +"lsV" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ltb" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) "ltc" = ( /obj/effect/landmark/late_join/working_joe, /obj/effect/landmark/start/working_joe, /turf/open/floor/plating/plating_catwalk/aicore, /area/almayer/command/airoom) -"ltg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +"ltm" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lto" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"ltv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"lts" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/area/almayer/hallways/lower/port_fore_hallway) "ltw" = ( /obj/structure/largecrate/supply, /turf/open/floor/almayer, @@ -32415,86 +37143,102 @@ /obj/item/tool/weldingtool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"luu" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 +"ltI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 +/turf/open/floor/almayer/emerald/northeast, +/area/almayer/squads/charlie) +"ltO" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" + }, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"ltU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"lul" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/living/commandbunks) "luE" = ( /obj/structure/sign/poster{ pixel_y = 32 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"luO" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"luT" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"luS" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = -3 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 1 +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"luV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"luY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"luZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "lvb" = ( /obj/structure/machinery/door_control/cl/office/door{ pixel_y = 25 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"lvq" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"lvh" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"lvw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lvJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/lower) -"lwd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +"lvA" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"lwh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"lwo" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "lwp" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -32504,13 +37248,6 @@ /obj/structure/machinery/cm_vending/sorted/tech/circuits, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"lwq" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) "lwC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -32520,87 +37257,51 @@ pixel_x = 2 }, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"lwI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"lwK" = ( -/obj/structure/bed/chair/bolted{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"lwL" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"lwT" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"lwU" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 + dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"lwV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"lwG" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"lxf" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 +/area/almayer/hallways/lower/port_umbilical) +"lwJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"lxg" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie) +"lwY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/obj/structure/closet/bombcloset, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"lxd" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"lxI" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"lxK" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/almayer/hallways/lower/starboard_umbilical) +"lxo" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/window/reinforced/ultra{ - dir = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"lxL" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/living/briefing) -"lxN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"lya" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lxE" = ( +/obj/structure/machinery/cm_vending/clothing/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"lxW" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/living/auxiliary_officer_office) "lyh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/surgery/scalpel{ @@ -32618,27 +37319,55 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"lyu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +"lyk" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"lym" = ( +/obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) +"lyq" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) "lyw" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lyM" = ( -/obj/structure/machinery/light{ - dir = 8 +"lyz" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 + }, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 }, -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/upper/u_m_p) +"lyE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/computerlab) +"lyP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/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{ + req_access = null; + req_access_txt = 37; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "lza" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey/top{ @@ -32646,46 +37375,12 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lzc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Lobby"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"lzf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"lze" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"lzg" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lzi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "lzq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -32693,27 +37388,25 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"lzv" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"lzz" = ( +"lzt" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"lzE" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"lzH" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/obj/item/weapon/gun/rifle/l42a{ + pixel_x = 17; + pixel_y = 6 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/upper/u_m_s) +"lzA" = ( +/obj/structure/bed/chair/comfy{ + dir = 5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "lAa" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer{ @@ -32727,6 +37420,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) +"lAl" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"lAu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "lAy" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 @@ -32736,154 +37438,89 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lAK" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"lAU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"lAQ" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) +/obj/structure/machinery/light, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) "lAW" = ( /obj/docking_port/stationary/escape_pod/east, /turf/open/floor/plating, /area/almayer/maint/upper/u_m_p) -"lAY" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) +"lBg" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "lBl" = ( /obj/structure/sink{ pixel_y = 24 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/lower/s_bow) -"lBm" = ( +"lBv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"lBr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Lifeboat Control Bubble"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"lBA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"lBB" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"lBF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"lBI" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 + icon_state = "S" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"lBL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"lCg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"lBM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 12 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"lCm" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"lBP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"lBV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +/area/almayer/maint/hull/upper/s_bow) +"lCr" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lCt" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"lCE" = ( +/obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"lCb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"lCA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lCL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"lCB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"lCG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"lCU" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"lCY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) +/turf/open/floor/almayer/red/southwest, +/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 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "lDn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -32891,12 +37528,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lDx" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) "lDA" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = 8; @@ -32904,28 +37535,39 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"lDJ" = ( -/obj/structure/surface/rack{ - layer = 2.5 +"lDL" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/storage/box/matches, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"lDP" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"lDN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lDT" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) "lDV" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -32945,31 +37587,16 @@ dir = 1 }, /area/almayer/medical/containment/cell/cl) -"lEi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"lEp" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"lEu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryogenics Bay" +"lEj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"lEv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"lEz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) "lEF" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -32980,16 +37607,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"lEJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"lEK" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "lEO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -32997,31 +37614,9 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"lEW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"lEX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"lEV" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"lFd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) +/area/almayer/hallways/lower/vehiclehangar) "lFe" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -33031,9 +37626,46 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"lFh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"lFj" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"lFn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/morgue) "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/orange/west, +/area/almayer/maint/upper/mess) +"lFt" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) "lFw" = ( /obj/structure/machinery/light{ dir = 1 @@ -33045,99 +37677,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"lFx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"lFK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"lGd" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"lGh" = ( -/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/midship_hallway) -"lGn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"lGs" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"lGJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lGM" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" +"lFA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lGP" = ( +/area/almayer/engineering/upper_engineering/port) +"lFK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lFL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"lGT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lGg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"lGh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"lGZ" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/command/lifeboat) -"lHa" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver, -/area/almayer/command/aist_office) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) "lHk" = ( /obj/structure/closet/firecloset, /obj/effect/decal/warning_stripes{ @@ -33145,43 +37722,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"lHL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"lHU" = ( -/obj/structure/sign/safety/rewire{ - layer = 2.4; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"lHY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"lHu" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/living/grunt_rnr) +"lHB" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lHG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_2"; - name = "\improper Bathroom" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) +/area/almayer/living/grunt_rnr) "lIj" = ( /turf/closed/wall/almayer, /area/almayer/maint/upper/mess) @@ -33194,74 +37753,48 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lIq" = ( -/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/plate, -/area/almayer/maint/hull/upper/s_stern) -"lIs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"lIK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"lIu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) +/area/almayer/hallways/lower/starboard_fore_hallway) +"lII" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/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) -"lJf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, +"lIU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"lIY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"lJh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lJm" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"lJu" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "lJv" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -33271,64 +37804,73 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"lJN" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +"lJD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"lJR" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lJG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"lJY" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"lKm" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"lJK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"lJL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"lKo" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"lJM" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"lKu" = ( +/area/almayer/maint/hull/lower/s_bow) +"lJO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/weapon_room) -"lKD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"lJY" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lKa" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"lKG" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +/area/almayer/engineering/laundry) +"lKb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lKL" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) "lKM" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -33340,30 +37882,27 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"lKV" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lLj" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"lLr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"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/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"lLt" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"lLA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) "lLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -33374,54 +37913,66 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"lLU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"lLZ" = ( -/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/plate, -/area/almayer/maint/upper/u_m_s) -"lMf" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie) -"lMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/cryo_cells) -"lMn" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small{ - dir = 8 +"lLS" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lMb" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"lMc" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "lMp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lMr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) +"lMv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/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/plating_striped/west, +/area/almayer/squads/req) +"lMx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) "lMy" = ( /obj/structure/machinery/fuelpump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"lMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "lMO" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -33430,61 +37981,45 @@ /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; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/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) -"lNl" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"lNI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"lNJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"lNK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" +"lNw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"lNM" = ( -/obj/structure/barricade/plasteel/metal{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"lNN" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lNL" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) "lNR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"lNW" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/port_missiles) -"lOi" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) "lOn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33494,12 +38029,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"lOo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "lOr" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -33509,38 +38038,31 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"lOK" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" +"lOH" = ( +/obj/structure/sink{ + pixel_y = 32 }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"lOM" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"lOR" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"lON" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"lOW" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"lOX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"lPd" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "lPm" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -33548,51 +38070,58 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"lPB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) "lPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"lPH" = ( -/obj/structure/toilet{ - dir = 1 +"lPO" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"lPY" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"lQa" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"lPN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"lQf" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"lQg" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/securestorage) -"lQm" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"lQt" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"lQx" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/galley{ +/obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lQz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "lQB" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -33601,56 +38130,39 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"lQC" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"lQG" = ( +/obj/structure/machinery/computer/tech_control, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"lQO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"lQG" = ( -/obj/structure/machinery/computer/tech_control, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"lRf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_three) +"lRh" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/midship_hallway) +"lRs" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 20 + }, +/turf/open/floor/almayer/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) -"lRy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"lRz" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"lRA" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"lRB" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - anchored = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) "lRE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -33660,80 +38172,41 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lRK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) "lRP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lSd" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lSg" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +"lRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"lRZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"lSy" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"lSD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"lSs" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 5"; + pixel_x = -24 }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"lSJ" = ( +/obj/structure/machinery/light/small, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"lSF" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"lSG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 + icon_state = "N" }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/area/almayer/maint/hull/upper/s_bow) "lSN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33743,36 +38216,27 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) -"lSO" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +"lST" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) "lSX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"lTh" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"lTu" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ +"lTt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) "lTE" = ( /obj/structure/surface/table/almayer, /obj/item/storage/bible{ @@ -33781,119 +38245,44 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lTI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"lUc" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"lUi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"lUv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"lUO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"lVa" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/barricade/handrail{ - dir = 4; - layer = 3.3; - pixel_y = 3 - }, -/obj/structure/barricade/handrail{ - dir = 8; - layer = 3.3; - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/engineering/port_atmos) -"lVc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"lVd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"lUA" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"lUQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lVm" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"lVn" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_a_p) "lVo" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lVz" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"lVR" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"lVH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/area/almayer/maint/hull/upper/u_a_p) +"lVS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "south_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "lVW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -33905,23 +38294,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"lVY" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) +"lVX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "lVZ" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"lWK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/command/telecomms) +"lWr" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"lWt" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "lWO" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ @@ -33929,15 +38334,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/mess) -"lWW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"lWS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"lWZ" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/maint/upper/u_f_s) +"lWY" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "lXb" = ( @@ -33949,70 +38353,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"lXt" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"lXy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper AIST Office"; - req_access = null - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"lXC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"lXg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lXG" = ( -/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/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"lXT" = ( +/area/almayer/engineering/upper_engineering) +"lXl" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"lXO" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/trash/popcorn{ + layer = 3.1; + pixel_x = -3; + pixel_y = 13 }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"lXX" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"lXR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) "lYg" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"lYr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/black, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"lYk" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"lYt" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"lYK" = ( -/obj/item/toy/deck{ - pixel_y = 12 +/area/almayer/maint/hull/upper/u_a_p) +"lYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"lYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/surface/table/woodentable/poor, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/hangar) "lYS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -34034,85 +38432,72 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"lZj" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/upper/midship_hallway) -"lZn" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"lZo" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"lZv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"lZw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"lZs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"lZL" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"lZN" = ( -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/upper/fore_hallway) -"maf" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lZI" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"mah" = ( -/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"mai" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"mas" = ( -/obj/structure/platform{ +/area/almayer/maint/hull/lower/l_m_p) +"lZJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"lZM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mau" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/starboard) -"maG" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/airoom) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"lZZ" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"may" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/starboard_hallway) +"maI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/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, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "maO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -34123,62 +38508,35 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"mbt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"maT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"mby" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mbI" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 + dir = 4 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"mbx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"mbN" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/red/north, +/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) -"mbX" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +"mcp" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mcL" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_two) -"mca" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, -/area/almayer/command/aist_office) -"mci" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"mcq" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"mcB" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/flare, -/obj/item/mortar_shell/flare, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"mcJ" = ( -/obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/living/gym) "mcW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves, @@ -34187,25 +38545,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"mdc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"mdh" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) "mdk" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 4; @@ -34216,42 +38555,16 @@ "mdm" = ( /turf/closed/wall/almayer, /area/almayer/hallways/upper/midship_hallway) -"mdA" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"mdD" = ( -/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 +"mdo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mdC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/green/north, +/turf/open/floor/almayer/emerald/west, /area/almayer/hallways/lower/port_midship_hallway) -"mdF" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/briefing) -"mdQ" = ( -/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/test_floor4, -/area/almayer/hallways/upper/aft_hallway) "mdW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ @@ -34266,35 +38579,12 @@ /obj/item/folder/white, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"mee" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"meg" = ( -/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/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"mej" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"mea" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"mel" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/mp_bunks) "mem" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -34308,80 +38598,62 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) -"meO" = ( +"meu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"meE" = ( /obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 + pixel_x = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "meQ" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) +"meT" = ( +/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/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "meY" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/alpha) -"mfa" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - name = "\improper Brig Prisoner Yard" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +"mfL" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"mff" = ( -/obj/structure/machinery/vending/snack, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"mfg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mfj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/maint/upper/u_f_s) +"mfM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"mfr" = ( -/obj/structure/closet/secure_closet/bar{ - name = "Success Cabinet"; - req_access_txt = "1" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"mfG" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/briefing) "mfO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -34392,106 +38664,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) -"mfU" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - desc = "Do you remember who you are?"; - icon_state = "mirror_broke"; - name = "broken mirror"; - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 11 - }, -/obj/structure/machinery/door_control{ - id = "Delta_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/item/prop{ - 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 = 29 - }, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 24 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) +"mfQ" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/living/pilotbunks) "mgb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"mgm" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" +"mgd" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"mgj" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"mgu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"mgs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) "mgy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"mgG" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"mgP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"mgQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_x = 8 - }, -/obj/structure/transmitter/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -4; - pixel_y = 6 +"mgF" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/device/toner{ - pixel_x = -2; - pixel_y = -11 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"mgX" = ( +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) +/area/almayer/maint/hull/upper/u_a_p) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -34499,58 +38718,61 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"mhq" = ( -/obj/structure/bed/chair{ - dir = 8 +"mhd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/blue/north, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) -"mhC" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +"mhm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"mho" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "mhG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"mhS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +"mhI" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/squads/alpha) "mis" = ( /turf/open/floor/plating, /area/almayer/maint/upper/u_f_s) -"miu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = -6 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +"miy" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 29 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"miv" = ( -/obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"miA" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/shipboard/brig/medical) "miE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -34561,47 +38783,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"miI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/almayer/medical/containment/cell) -"miP" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8; - pixel_y = 2; - c_tag = "AI - Main Corridor"; - autoname = 0 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"miR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"miS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) "miV" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -34609,45 +38790,28 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"miX" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"mjp" = ( +"mje" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mjs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"mju" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/holohoop{ - density = 0; - pixel_y = 29 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 + icon_state = "NW-out"; + layer = 2.5 }, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"mjF" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/maint/hull/upper/p_bow) +"mjt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"mjy" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) -"mjP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) "mjS" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -34657,51 +38821,137 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"mkh" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"mkc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/item/reagent_container/food/snacks/margheritaslice{ + desc = "A slice of classic pizza ruined by the corps."; + name = "dirty margherita slice"; + pixel_x = -3; + pixel_y = 3 + }, +/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 + }, +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/stack/medical/ointment{ + layer = 3.5; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"mki" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mkl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"mkn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer/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/orange, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) "mkx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"mky" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"mkF" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"mkE" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/area/almayer/maint/hull/upper/p_bow) +"mkG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"mkH" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"mkK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/surface/rack{ + layer = 2.5 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"mkR" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"mkV" = ( -/obj/structure/sign/safety/medical{ +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mkI" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"mkL" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"mkP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) "mlb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -34713,82 +38963,43 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"mle" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"mlo" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"mlD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"mlL" = ( -/obj/structure/bed/chair/comfy/bravo{ +"mlm" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"mlz" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mlR" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"mlF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mlX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/engine_core) -"mmb" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_a_p) -"mmh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"mmr" = ( -/obj/item/stack/sheet/mineral/plastic{ - amount = 15 - }, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 +"mlH" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"mlP" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"mmw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"mmI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ - dir = 2 +/area/almayer/command/corporateliaison) +"mmn" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer{ + density = 0; + pixel_x = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) +/obj/structure/machinery/light{ + dir = 8; + pixel_x = -32; + alpha = 0 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) "mmN" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -34801,84 +39012,59 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"mmT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mmX" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mmZ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) "mnc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) -"mnk" = ( -/turf/open/floor/almayer/silver/northwest, +"mnf" = ( +/turf/open/floor/almayer/silver/southeast, /area/almayer/hallways/upper/midship_hallway) -"mnx" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer/red/southwest, -/area/almayer/maint/upper/u_a_p) +"mng" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/briefing) "mnA" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mnD" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"mnL" = ( +"mnB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"mnI" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/briefing) +"mnW" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/device/reagent_scanner{ + pixel_x = -8; + pixel_y = 4 }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"mnX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 +/obj/item/clipboard{ + pixel_x = 8 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/item/paper{ + pixel_x = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mog" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = -3 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"mom" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or4privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"moc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) "mor" = ( /obj/structure/machinery/light{ dir = 8 @@ -34889,12 +39075,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mot" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) "mov" = ( /obj/structure/bed/chair{ dir = 1 @@ -34910,55 +39090,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"moV" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - name = "Autopsy"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +"moK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"moX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mpx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/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/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"moM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"moQ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"mph" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"mpB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"mpn" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mpP" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"mpV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"mpG" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"mpQ" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/squads/bravo) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) "mpZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34974,117 +39155,146 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"mqu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"mqg" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"mqv" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"mqh" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"mqA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 3; - pixel_y = 4 + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"mqG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mqt" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"mqB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"mqJ" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "AIST Office"; dir = 8 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/starboard_hallway) -"mqT" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, +/area/almayer/command/aist_office) +"mqK" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"mqV" = ( -/obj/structure/machinery/door_control{ - id = "crate_room"; - name = "storage shutters"; - pixel_x = -25; - pixel_y = -1 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"mqU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) "mqZ" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"mrr" = ( -/obj/structure/largecrate/random/barrel/white, +"mrD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"mrC" = ( +/area/almayer/hallways/hangar) +"mrL" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"mrM" = ( +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"msg" = ( /obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/sign/safety/waterhazard{ + pixel_y = -32 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"mrR" = ( -/obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"msn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"msi" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = 7; + pixel_y = 16 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"msK" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) -"msX" = ( -/obj/structure/filingcabinet{ +/obj/structure/filingcabinet/filingcabinet{ density = 0; + layer = 2.9; pixel_x = -8; - pixel_y = 18 + pixel_y = 16 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/taperecorder, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"msm" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/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/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"msP" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/interrogation) +/area/almayer/engineering/upper_engineering/starboard) +"msS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"msZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "mtl" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution) -"mtn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) "mto" = ( /obj/item/tool/mop{ pixel_x = -6; @@ -35092,34 +39302,44 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"mtt" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"mtz" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"mtO" = ( -/obj/structure/platform{ - dir = 8 +"mtr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"muo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/status_display{ + pixel_y = -29 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"mtD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"mtM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"mtZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mua" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"mub" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "muq" = ( /obj/structure/bed/sofa/vert/grey/bot, /obj/structure/bed/sofa/vert/grey{ @@ -35127,32 +39347,23 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"muv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/obj/structure/machinery/light/built, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"muF" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"muN" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"muP" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, +"mux" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"muy" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"muT" = ( -/obj/item/tool/wet_sign, +/area/almayer/squads/alpha) +"muQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "muV" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine/uscm/command/capt{ @@ -35165,49 +39376,41 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"muW" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) "mvg" = ( /obj/docking_port/stationary/escape_pod/west, /turf/open/floor/plating, /area/almayer/maint/hull/lower/l_m_p) -"mvp" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"mvq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"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." }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"mvx" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"mvF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"mws" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"mvI" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) "mww" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35224,38 +39427,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"mwG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"mwK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) "mwL" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"mwO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"mwM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"mwP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"mwQ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "mwR" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down4"; @@ -35265,142 +39457,102 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"mwT" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/tomatoseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"mwW" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) "mxo" = ( /obj/docking_port/stationary/escape_pod/south, /turf/open/floor/plating, /area/almayer/maint/upper/u_f_p) -"mxt" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"mxD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"mxH" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/device/helmet_visor{ - pixel_x = 8; - pixel_y = 13 +"mxq" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"mxK" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -16 +/area/almayer/hallways/upper/midship_hallway) +"mxT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"mxV" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"mxQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/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; + dir = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"mxS" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"myo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"myJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"mxU" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"myP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"mxV" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"mza" = ( +/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/lower/stern) -"mxY" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"myc" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 11 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"myw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"myB" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "5" +/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/test_floor4, +/area/almayer/shipboard/brig/armory) +"mzg" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"mzn" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"myF" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"myY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" +/area/almayer/hallways/upper/fore_hallway) +"mzq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 4"; - locked = 1; - name = "\improper Containment Cell 4" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell/cl) -"mzd" = ( -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/hydroponics) "mzs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -35424,15 +39576,13 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"mzL" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +"mzI" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "mzP" = ( /obj/structure/stairs{ dir = 1 @@ -35444,10 +39594,12 @@ }, /turf/open/floor/plating, /area/almayer/command/airoom) -"mAa" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) +"mzS" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"mzV" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) "mAe" = ( /obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ @@ -35475,43 +39627,85 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"mAK" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"mAF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mBf" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"mAV" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"mAY" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"mBg" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mBa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mBc" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"mBn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"mBe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"mBk" = ( +/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_x = 4; + pixel_y = 15 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/tool/surgery/bonegel/empty{ + layer = 3.01; + pixel_x = -5; + pixel_y = 19 + }, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"mBx" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"mBz" = ( -/obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) +/area/almayer/shipboard/brig/processing) "mBJ" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -35522,60 +39716,13 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"mBM" = ( -/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/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"mBQ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"mBU" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/req) -"mBZ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"mCd" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"mCe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, +"mBO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) -"mCm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) +"mCg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) "mCo" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -35583,131 +39730,53 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"mCp" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mCr" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"mCy" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"mCC" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/cic) -"mCG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -4; - pixel_y = 19 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"mCJ" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_p) -"mCL" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"mCT" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/numbertwobunks) -"mCU" = ( -/obj/structure/machinery/light{ +"mCx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "\improper AI Reception"; + req_access = null; + req_one_access_txt = "91;92"; dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 15; - pixel_y = 27 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"mCY" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"mCZ" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_four) -"mDb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs1"; + name = "\improper ARES Reception Shutters" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mCE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"mDc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"mDg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"mDi" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Commanding Officer's Quarters"; - req_access = null; - req_access_txt = "31" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mCJ" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"mCL" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"mDq" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"mDj" = ( +/obj/structure/machinery/photocopier, +/obj/item/paper{ + color = "grey"; + info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; + name = "photocopied image"; + pixel_y = 5 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) +/turf/open/floor/almayer/green, +/area/almayer/squads/req) "mDG" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -35715,32 +39784,44 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"mDI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"mDJ" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"mDL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/mousetraps, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/platform_decoration, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"mDT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"mDW" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/briefing) +"mDX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mDJ" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) "mDZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35748,23 +39829,30 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"mEa" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"mEs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"mEj" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"mEw" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) "mEE" = ( /obj/structure/platform{ dir = 4; @@ -35776,74 +39864,77 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"mEZ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mFa" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"mFn" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, +"mFc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"mFB" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"mFq" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_y = 29; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"mFL" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mFN" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Right"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mFO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"mFJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"mFP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "mFQ" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/lower/s_bow) +"mGb" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "mGe" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"mGg" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"mGk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mGv" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"mGI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) +"mGu" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) "mGT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -35859,55 +39950,23 @@ /obj/item/device/portable_vendor/corporate, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"mGV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - access_modified = 1; - dir = 2; - name = "\improper Chief Engineer's Office"; - req_one_access = null; - req_one_access_txt = "1;6" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"mHa" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"mHb" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"mHm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"mHo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"mHr" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 5; - pixel_y = 29 +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"mHw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "mHx" = ( /obj/structure/bed/chair{ dir = 4 @@ -35926,36 +39985,50 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"mHC" = ( +"mHD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"mHG" = ( -/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"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/plate, -/area/almayer/maint/hull/upper/p_bow) -"mHH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/maint/hull/lower/l_f_p) +"mHO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"mHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"mHR" = ( /turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/maint/upper/u_a_s) "mHY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) -"mIg" = ( -/obj/structure/bed, +"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/plate, -/area/almayer/shipboard/brig/perma) +/area/almayer/maint/hull/upper/u_m_s) "mIi" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -35970,38 +40043,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"mIt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mIu" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/aluminum{ - amount = 20 - }, -/obj/item/stack/sheet/copper{ - amount = 20; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/silver{ - amount = 5; - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) "mIy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -36012,105 +40053,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"mIA" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +"mIz" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "mIJ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 6 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"mIK" = ( -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -10; - pixel_y = 10 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/weapon/broken_bottle{ - layer = 4.51; - pixel_x = 9; - pixel_y = 1 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mIL" = ( -/obj/structure/machinery/cm_vending/clothing/combat_correspondent, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"mIM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"mIY" = ( -/obj/structure/sign/poster/music{ - pixel_x = -27 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/item/tool/pen{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mIZ" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 +"mIP" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"mJb" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"mJf" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/engineering/upper_engineering/port) +"mIR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"mJa" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/boonie, +/obj/item/trash/chunk/hunk, +/obj/item/trash/crushed_cup, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"mJe" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "mJi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36125,110 +40117,122 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/alpha) -"mJt" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/upper/fore_hallway) "mJu" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/cic) -"mJA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"mJx" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mJL" = ( +/turf/open/floor/almayer/blue/northeast, +/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; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"mJG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"mJH" = ( +/area/almayer/squads/bravo) +"mKb" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; icon_state = "pottedplant_22"; name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"mJO" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) -"mJW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"mJZ" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"mKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/hangar) -"mKk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) "mKq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/bridgebunks) -"mKC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/living/offices/flight) -"mKN" = ( -/obj/effect/landmark/start/pilot/cas_pilot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"mKO" = ( -/obj/structure/machinery/door_control{ - id = "or2privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 +"mKs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"mKT" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) -"mKW" = ( -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"mKw" = ( +/obj/structure/disposalpipe/junction{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"mLa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"mKx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mKy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"mLc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/command/lifeboat) +"mKJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"mKN" = ( +/obj/effect/landmark/start/pilot/cas_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) "mLe" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -36245,24 +40249,14 @@ "mLg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) -"mLn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"mLw" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/clipboard{ - pixel_x = 12 +"mLz" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/living/pilotbunks) "mLF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36287,12 +40281,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"mLQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) "mLR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36302,101 +40290,86 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"mLT" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"mMi" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"mMj" = ( -/obj/structure/bed/chair/comfy/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mME" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) "mMP" = ( /obj/effect/landmark/start/intel, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"mMY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"mNd" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"mMV" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) "mNm" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"mNo" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, +"mNG" = ( /obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"mNA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"mNC" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - 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/orange, -/area/almayer/engineering/lower) -"mNQ" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mNI" = ( +/obj/structure/machinery/door/window/westleft{ + dir = 2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"mNV" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/machinery/shower, +/obj/item/tool/soap, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"mNK" = ( +/obj/structure/closet/secure_closet/brig/restraints, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"mNX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"mOb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"mOg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "mOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/airoom) -"mOB" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -16 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"mOM" = ( -/obj/structure/machinery/light{ - dir = 1 +"mOE" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mOZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) "mPc" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -36404,6 +40377,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) +"mPf" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/lifeboat) +"mPh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "mPj" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -36425,131 +40412,126 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"mPE" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"mPJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"mPS" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"mPM" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"mPR" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"mPU" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"mQg" = ( +"mQc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"mQi" = ( -/obj/structure/pipes/unary/outlet_injector, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"mQl" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/device/reagent_scanner, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"mQo" = ( -/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"mQd" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mQt" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"mQv" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/lower/vehiclehangar) +"mQn" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/engine_core) -"mQw" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) +"mQx" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) "mQC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"mQH" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ +"mQY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"mQI" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"mRn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"mRc" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/terminal{ + pixel_x = -18; + pixel_y = -8 }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"mRD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = -18; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mRq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mRR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/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" }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"mRI" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"mRJ" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"mRQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/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) -"mRY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/ce_room) "mSi" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 @@ -36564,17 +40546,34 @@ /obj/item/clothing/glasses/mgoggles, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) +"mSo" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "mSr" = ( /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"mSE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"mSs" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"mSz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"mSK" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) "mSM" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -36582,23 +40581,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"mSW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/hallways/lower/vehiclehangar) -"mSX" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) +"mSU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) "mTc" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/emails{ @@ -36614,103 +40600,85 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"mTh" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 1; - name = "\improper Requisitions Storage" - }, -/obj/structure/disposalpipe/up/almayer{ +"mTi" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"mTm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"mTp" = ( +/obj/structure/window/reinforced{ dir = 4; - id = "almayerlink_OT1_req" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"mTj" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" + health = 80 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"mTn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"mTo" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"mTA" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"mTr" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"mTE" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"mTG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Crew Chief's Room" +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 8; + pixel_y = 2; + c_tag = "AI - Main Corridor"; + autoname = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"mTL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "mTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"mTS" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -11; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"mTV" = ( +"mUq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/freezer/industry, -/obj/item/reagent_container/glass/beaker/silver, -/obj/structure/machinery/light{ - dir = 1 + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"mUC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 +/area/almayer/living/offices) +"mUx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"mUE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_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/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"mVh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"mVr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"mUU" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"mUX" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "mVA" = ( /obj/item/reagent_container/glass/bucket, /obj/item/tool/mop{ @@ -36722,62 +40690,86 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"mVH" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"mVO" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"mVE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"mWf" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_y = 26; + req_one_access_txt = "3;22;19;7" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mVF" = ( +/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/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"mWl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/upper/mess) +"mWs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"mWo" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"mWu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"mWy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 2 }, -/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/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"mWD" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"mWw" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"mWJ" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"mWM" = ( -/obj/item/device/radio/intercom{ - frequency = 1500; - name = "AI Core Intercom"; - pixel_x = -32 +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"mWQ" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) "mWV" = ( /obj/structure/bed/chair/comfy/blue, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36785,13 +40777,12 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"mXc" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mXf" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) +"mWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) "mXj" = ( /turf/closed/wall/almayer, /area/almayer/living/commandbunks) @@ -36801,42 +40792,6 @@ /obj/item/tool/wrench, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/p_bow) -"mXG" = ( -/obj/structure/surface/table/reinforced/prison, -/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_one) -"mXM" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"mXY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"mYr" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/maint/upper/u_m_p) "mYt" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -36852,44 +40807,97 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"mYO" = ( +"mYA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"mZb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer/silver/southeast, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/command/cichallway) -"mYS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"mZc" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/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/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mZd" = ( +/area/almayer/maint/hull/lower/l_m_s) +"mZf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mZr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"mZF" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"mZL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mZM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" +/turf/open/floor/almayer/red/west, +/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 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"mZQ" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) "naa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36899,6 +40907,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) +"nac" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"nah" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/item/desk_bell{ + anchored = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/lobby) "naj" = ( /obj/structure/machinery/door_control{ id = "ARES JoeCryo"; @@ -36920,55 +40949,51 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nax" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"naz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 +"naw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"naB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/perma) +"naK" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"naR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/machinery/sleep_console{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"naA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"naV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Gym" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"naB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/perma) -"naS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"nbt" = ( -/obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) "nbu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -36984,137 +41009,129 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"nbJ" = ( -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"nbL" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"nbW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +"ncf" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/tool/pen, -/obj/structure/sign/safety/med_cryo{ +/obj/structure/machinery/status_display{ pixel_x = 32 }, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"nca" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) "nci" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"ncD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 +"ncl" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"ncp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"ncJ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"ncx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"ncE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autodispenser{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"ndu" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, /turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"ndC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 27 - }, -/obj/structure/barricade/handrail{ - dir = 8 +"ncG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"ncT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"ndG" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"ndl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ndK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/maint/hull/lower/l_m_p) +"ndm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"ndZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"ndN" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"ndS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Brig Equipment" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"nec" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nef" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ner" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"new" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/general_equipment) -"ndU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"neh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"nem" = ( -/obj/structure/machinery/vending/cola, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"neo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) -"net" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) +"neC" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "neE" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"neG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"neH" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"neO" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) "neS" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -28 @@ -37130,20 +41147,27 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"nfd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"neZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Nurse Office"; - req_access_txt = "20"; - req_one_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lockerroom) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"nff" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "nfC" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -37151,74 +41175,88 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"nfD" = ( -/obj/structure/machinery/light{ - dir = 1 +"ngf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"nfN" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"nfS" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"nfV" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 +/area/almayer/lifeboat_pumps/south1) +"ngl" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nfW" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room"; - req_one_access = list(19,7); - req_access = list() +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"ngh" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ngn" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"ngr" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = 6 +/obj/structure/bed/sofa/south/grey/left, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/lobby) +"ngw" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ngA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"ngI" = ( +/turf/open/floor/almayer/redcorner/west, /area/almayer/living/briefing) -"ngl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"ngK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ngB" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"ngQ" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) "ngU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37226,22 +41264,38 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"nhl" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cichallway) -"nhq" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Field Surgery Equipment"; - req_access_txt = "20"; - req_one_access = null +"ngV" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"nhi" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"nhr" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/workshop) "nhw" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, @@ -37272,10 +41326,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"nhF" = ( -/obj/structure/closet/secure_closet/fridge/meat/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) "nhG" = ( /obj/item/newspaper{ name = "character sheet" @@ -37310,156 +41360,145 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_p) -"nhO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/fore_hallway) -"nhR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/scrubber, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"nhS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"nib" = ( -/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 - }, +"nhV" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/p_bow) "nic" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/stern) -"nie" = ( +"nig" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"nii" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"nik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"nix" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"niz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"niC" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"nim" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + access_modified = 1; + dir = 2; + name = "\improper Chief Engineer's Office"; req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_y_offset = 0 + req_one_access_txt = "1;6" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"niI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"niV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"nis" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"niF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"niL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"niR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"niY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "nja" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"njf" = ( +"njd" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"njk" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) "njn" = ( /turf/closed/wall/almayer, /area/almayer/maint/upper/u_m_s) -"njw" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"njy" = ( +"njD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"njJ" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"njA" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"njB" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"njK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"njM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/toy/crayon/blue{ + pixel_x = -9; + pixel_y = -5 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"njV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"njO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"njS" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"nkc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "nkj" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -37473,34 +41512,76 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nko" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"nkp" = ( -/obj/structure/platform{ - dir = 8 +"nkx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"nkP" = ( -/obj/structure/machinery/light/small{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"nkF" = ( +/obj/structure/bed/chair/bolted{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"nkH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"nkK" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"nkT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"nkX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) "nlh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"nlo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/offices/flight) "nlz" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = 32; @@ -37508,56 +41589,43 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"nlD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"nmb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"nmo" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"nmB" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"nmF" = ( -/obj/structure/bed/chair{ +"nlB" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/living/briefing) +"nlI" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"nlW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"nme" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"nmh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/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 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "nmH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -37568,19 +41636,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) +"nmK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"nmV" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) "nmY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/workshop/hangar) -"nmZ" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"nnq" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, +"nne" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/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/orangecorner, +/area/almayer/hallways/lower/port_aft_hallway) "nny" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -37588,51 +41676,65 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nnK" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"nnD" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) "nnL" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/corporateliaison) -"nnT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"nnU" = ( -/obj/structure/closet/secure_closet/fridge/dry/stock, +"nnX" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"noe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"noa" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 +/area/almayer/hallways/upper/aft_hallway) +"noj" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"nov" = ( -/obj/structure/machinery/door/airlock/almayer/command{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"noo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ access_modified = 1; - name = "\improper Senior Enlisted Advisor's Office"; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; req_access = null; - req_access_txt = "19;29" + req_one_access_txt = "3;19" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) +/area/almayer/shipboard/navigation) +"nop" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"nos" = ( +/obj/structure/machinery/chem_storage/medbay{ + dir = 1 + }, +/obj/structure/machinery/chem_storage/research{ + dir = 1; + layer = 3; + pixel_y = 18 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"nou" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) "noy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -37661,25 +41763,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"noV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"npb" = ( -/obj/structure/machinery/alarm/almayer{ +"noP" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"npc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "nph" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -37687,24 +41777,6 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"npm" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) "npq" = ( /obj/structure/disposalpipe/down/almayer{ dir = 8; @@ -37713,6 +41785,23 @@ }, /turf/closed/wall/almayer/aicore/hull, /area/almayer/command/airoom) +"npt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"npw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) "npA" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -37730,33 +41819,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) +"nqe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) "nqx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nqA" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"nqF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"nqO" = ( +/obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"nqI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) -"nqR" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) "nqV" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -37767,6 +41848,12 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"nqW" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "nrb" = ( /obj/item/robot_parts/arm/l_arm, /obj/item/robot_parts/leg/l_leg, @@ -37778,51 +41865,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"nre" = ( -/obj/structure/largecrate/supply/supplies/mre, +"nri" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"nrt" = ( +/area/almayer/engineering/lower/workshop) +"nrw" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"nrv" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"nrG" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"nrN" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"nrO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"nrS" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"nrQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nrT" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"nrV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"nrW" = ( -/obj/structure/machinery/power/apc/almayer/hardened, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/obj/item/device/radio/intercom{ + frequency = 1500; + name = "AI Core Intercom" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) "nsc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -37845,135 +41926,143 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"nsE" = ( -/obj/structure/machinery/light{ - dir = 8 +"nsr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"nsH" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/midship_hallway) +"nsQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/captain_mess) "nsY" = ( /turf/closed/wall/almayer, /area/almayer/living/port_emb) -"nsZ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"ntc" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/cic) +"ntd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 12 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/structure/sign/poster/propaganda{ + pixel_y = 34 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) "ntj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/computerlab) -"ntw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ntx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_2"; + name = "\improper Bathroom" }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"ntz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"ntB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/area/almayer/living/port_emb) "ntI" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"ntL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"ntQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"nuj" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"nux" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" }, -/obj/item/storage/pouch/tools, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) "nuA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"nuE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"nuK" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"nuM" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) "nuN" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nva" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"nvl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"nuZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/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/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out" }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"nve" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"nvp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/area/almayer/maint/hull/upper/u_m_p) +"nvz" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"nvG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/sink{ + pixel_y = 16 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"nvJ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nvK" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/obj/structure/mirror{ + pixel_y = 21 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"nvI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +/area/almayer/maint/hull/lower/l_a_s) "nvM" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -37981,10 +42070,16 @@ }, /turf/open/floor/plating, /area/almayer/medical/chemistry) -"nvV" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) +"nvT" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "nvX" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver{ @@ -37997,9 +42092,6 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"nvZ" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) "nwb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -38009,144 +42101,122 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"nwc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"nwi" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"nwj" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"nwl" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ - density = 0; - pixel_x = -32 +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"nwx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"nwD" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/command/cic) +"nwG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"nwH" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"nwO" = ( -/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"nwL" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"nxa" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/area/almayer/living/pilotbunks) +"nwU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"nxN" = ( -/obj/structure/transmitter{ - name = "Brig Offices Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Main Offices"; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"nwW" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"nxW" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/shipboard/port_missiles) +"nwY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"nyn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"nxb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/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" }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_midship_hallway) -"nyr" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nxx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"nyj" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"nyP" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"nyw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"nyK" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/upper/fore_hallway) "nyQ" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nyW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"nza" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"nzf" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"nzn" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) +"nyS" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/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, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) "nzD" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer, /area/almayer/hallways/upper/port) -"nzE" = ( -/obj/structure/morgue, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"nzM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "north_central_checkpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "nzO" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/warning_stripes{ @@ -38158,15 +42228,16 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"nzX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nzT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"nAb" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/upper/midship_hallway) +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + name = "\improper Brig Lobby" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "nAd" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -38177,14 +42248,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"nAs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) "nAv" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -38201,23 +42264,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"nBe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 3"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"nBa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) "nBi" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -38234,66 +42291,57 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"nBn" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"nBs" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"nBC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/bluefull, +"nBw" = ( +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/briefing) +"nBE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"nBF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "nBJ" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/s_bow) -"nBN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"nCa" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/briefing) +"nBK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"nBV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"nCe" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) "nCf" = ( /obj/effect/landmark/start/marine/tl/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nCh" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +"nCn" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"nCp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"nCi" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"nCv" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"nCw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "nCx" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -38319,31 +42367,42 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"nCE" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "\improper AI Reception"; - req_access = null; - req_one_access_txt = "91;92"; - dir = 1 +"nCD" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"nCM" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"nCR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs1"; - name = "\improper ARES Reception Shutters" +/obj/structure/mirror{ + pixel_x = 29 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"nCK" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cic) -"nCZ" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer{ - density = 0; - pixel_x = -30 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"nCT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"nDa" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) "nDb" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -38351,9 +42410,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_umbilical) -"nDe" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) "nDo" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -38366,75 +42422,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"nDq" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"nDy" = ( +/obj/structure/bed/chair/comfy/ares{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"nDu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Core Chamber" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/cic) -"nDG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"nDH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "nDM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nDW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"nDX" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nEe" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) +"nEc" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/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) -"nEn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) "nEo" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -38443,17 +42461,11 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"nEv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) "nEw" = ( -/obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/obj/item/bedsheet/yellow, +/obj/structure/bed, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, +/area/almayer/command/aist_office) "nEF" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_1"; @@ -38461,91 +42473,91 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"nEL" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/maint/upper/u_a_s) -"nEM" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 +"nEH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"nEP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/machinery/computer/research{ + dir = 4; + pixel_y = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = -5 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"nEO" = ( +/mob/living/simple_animal/mouse/brown, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"nER" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"nET" = ( -/obj/structure/machinery/cm_vending/gear/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) +/area/almayer/maint/lower/s_bow) "nEZ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/lower/s_bow) -"nFd" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +"nFm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"nFp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/command/cichallway) +"nFs" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"nFq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/white{ - pixel_x = -12 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"nFA" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/obj/item/tool/pen/fountain{ - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nFI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/tool/pen/fountain{ - pixel_y = 9 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver, -/area/almayer/command/aist_office) +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "nFK" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nFM" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 3"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +"nFX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "N" }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "nGh" = ( /obj/structure/bed/chair{ buckling_y = 5; @@ -38557,37 +42569,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"nGi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/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) -"nGy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"nGM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"nHg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"nHr" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"nGY" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/area/almayer/lifeboat_pumps/north2) "nHu" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/structure/machinery/light{ @@ -38602,40 +42607,75 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"nHI" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +"nHJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"nHL" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "nHX" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 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_s) +"nIj" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"nIt" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/starboard_missiles) +"nID" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nIn" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) -"nIu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/silver/southeast, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) -"nIB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"nIE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"nIG" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) "nIN" = ( /turf/closed/wall/almayer, /area/almayer/maint/upper/u_m_p) @@ -38645,60 +42685,34 @@ }, /turf/open/floor/almayer, /area/almayer/living/basketball) -"nJl" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/lower/repair_bay) -"nJr" = ( +"nJa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower/engine_core) +"nJs" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "nJu" = ( /obj/item/newspaper, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nJN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"nJZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"nKk" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/command/cic) -"nKs" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"nJH" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"nKq" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"nKw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) "nKO" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -38714,181 +42728,157 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"nKV" = ( -/obj/structure/machinery/door_control{ - id = "crate_room2"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/structure/machinery/recharge_station{ - desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; - name = "Working Joe charging station" - }, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"nLc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"nKP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/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 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nLl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/device/lightreplacer, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) +"nLk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "nLp" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_f_p) -"nLu" = ( -/obj/structure/machinery/cm_vending/clothing/leader/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"nLv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"nLt" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"nLI" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"nLC" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer{ +/obj/structure/machinery/chem_simulator{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"nLE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nLJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nLG" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"nMv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"nMe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orangefull, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"nMp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) -"nML" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nMW" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/stack/sheet/metal{ - layer = 4.1; - pixel_x = -3; - pixel_y = 14 - }, -/obj/item/tool/weldingtool{ - layer = 4.1; - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 +"nMV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) "nNg" = ( /obj/structure/bed, /obj/item/bedsheet/red, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"nNl" = ( -/obj/structure/machinery/light, +"nNt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nNv" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"nNx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"nNI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"nNN" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"nNA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"nNH" = ( +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/living/briefing) "nNT" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) -"nNW" = ( +"nNV" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"nNX" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nNY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "E" }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nOc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/engineering/upper_engineering) +"nOb" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"nOu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 }, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"nOw" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/area/almayer/command/corporateliaison) +"nOp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) "nOx" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk, @@ -38896,30 +42886,19 @@ "nOC" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nOJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"nOM" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"nOX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"nOP" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"nOS" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"nPa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "nPb" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -38927,174 +42906,135 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nPc" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"nPe" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +"nPf" = ( +/obj/structure/machinery/computer/cameras/almayer/containment{ + dir = 8; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"nPo" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"nPr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = -5; + pixel_y = -4; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "nPs" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"nPR" = ( -/obj/structure/pipes/vents/scrubber{ +"nPx" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"nPS" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, /turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"nPB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/hangar) -"nQd" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-6"; - req_access = null +"nPE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"nQf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"nQi" = ( -/obj/structure/machinery/light/containment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nPO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/lower/l_m_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."; + dir = 4; + id = "crate_room4"; + name = "dilapidated storage shutters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"nPY" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"nQn" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/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) -"nQp" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"nQv" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) "nQA" = ( /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"nQJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) -"nQK" = ( -/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/test_floor4, -/area/almayer/maint/upper/mess) -"nRd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"nRg" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"nRB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 4 +"nRA" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) "nRE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"nRJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"nRT" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"nRH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"nRX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"nSe" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_1"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"nRN" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nRR" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nRX" = ( +/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 }, /turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"nSg" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/u_a_p) "nSq" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -39109,9 +43049,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"nSr" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/hallways/upper/midship_hallway) "nSu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -39120,13 +43057,10 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nSA" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +"nSw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) "nSG" = ( /obj/structure/machinery/door_control{ id = "tcomms"; @@ -39139,52 +43073,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"nSJ" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Commanding Officer's Mess" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"nSR" = ( -/obj/structure/pipes/valve/digital/open{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) "nSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"nSU" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"nTc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, +"nTl" = ( +/turf/open/floor/almayer/red/north, /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/sterile_green, +/area/almayer/medical/lockerroom) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -39195,31 +43107,10 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"nTt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) "nTA" = ( /obj/structure/bed/chair/comfy/blue, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"nTC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/syringe_case{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/syringe_case, -/obj/item/storage/syringe_case{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) "nTH" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -39227,58 +43118,60 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nTJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nTP" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_m_p) "nTR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"nTT" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"nTZ" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/living/gym) +"nUa" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"nTV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"nUf" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"nUd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.2; + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"nUj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 2"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/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/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_s) "nUn" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -39287,25 +43180,37 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nUq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"nUH" = ( -/obj/structure/platform_decoration{ +"nUv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nUT" = ( +/obj/structure/platform{ dir = 8 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) -"nVh" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"nVl" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/hallways/lower/starboard_midship_hallway) +"nVi" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"nVm" = ( +/obj/structure/machinery/door_control{ + id = "firearm_storage_armory"; + name = "Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) "nVn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -39313,46 +43218,30 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"nVr" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8 +"nVq" = ( +/obj/structure/sign/safety/security{ + pixel_x = -17; + pixel_y = 6 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"nVu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"nVz" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) "nVB" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) -"nVO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"nVE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nVF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"nVP" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/officer_study) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) "nVQ" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/security{ @@ -39367,65 +43256,46 @@ "nVR" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/perma) -"nVT" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/light{ - dir = 4 +"nVX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nWe" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"nWf" = ( /obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"nWw" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"nWG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + pixel_x = 8; + pixel_y = 32 }, -/obj/item/tool/crowbar/red, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"nWM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nWj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) "nWN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"nXj" = ( -/obj/structure/machinery/light{ - dir = 8 +"nWS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) -"nXA" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"nXH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"nXJ" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"nXK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) +/area/almayer/shipboard/brig/medical) +"nXo" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) "nXO" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/fancy/cigar{ @@ -39447,6 +43317,30 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"nXU" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"nXV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nYc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) "nYd" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -39456,17 +43350,21 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"nYe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"nYg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"nYi" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"nYl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) +/area/almayer/maint/hull/upper/p_bow) "nYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39476,58 +43374,33 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"nYo" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"nYp" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"nYq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/silver/west, /area/almayer/living/briefing) -"nYt" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/obj/structure/machinery/meter, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"nYx" = ( -/obj/structure/machinery/light{ - dir = 8 +"nYD" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_four) +"nYE" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/lifeboat) +"nYR" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nYN" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"nYP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/area/almayer/hallways/lower/starboard_aft_hallway) +"nZf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) "nZm" = ( /obj/structure/machinery/door_control{ id = "OTStore"; @@ -39542,29 +43415,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"nZo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14; - wrenchable = 0 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nZq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -39573,17 +43423,6 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nZA" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) "nZG" = ( /obj/structure/platform{ dir = 4 @@ -39596,13 +43435,12 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"nZQ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration{ - dir = 1 +"nZR" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) "nZW" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/souto/blue{ @@ -39611,21 +43449,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"nZZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) -"oaA" = ( -/obj/structure/largecrate/random/barrel/yellow, +"oap" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"oaw" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/p_stern) "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/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) "oaP" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -39638,29 +43482,10 @@ /obj/item/clothing/head/cmcap, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) -"obb" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/u_a_s) -"obh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"obn" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +"oaW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) "obo" = ( /obj/structure/disposalpipe/up/almayer{ dir = 8; @@ -39668,37 +43493,48 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"obN" = ( -/obj/item/mortar_kit, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"obP" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"oby" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"obC" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/engineering/port_atmos) +"obE" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) +/area/almayer/squads/alpha_bravo_shared) "obQ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"obX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"ocf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"ocm" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/command/cichallway) -"obZ" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) +/obj/structure/machinery/space_heater, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "ocB" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -39724,84 +43560,71 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"ocG" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/stern_point_defense) -"ocH" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"ocI" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ +"ocL" = ( +/obj/structure/machinery/cryopod/right{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/starboard_missiles) -"ocT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"ocV" = ( -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_x = -27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"odc" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"odd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"odb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/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/red/east, -/area/almayer/hallways/upper/port) -"odf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/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) -"odr" = ( -/obj/structure/machinery/firealarm{ +"odt" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; pixel_y = 28 }, -/obj/structure/closet, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"odu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"odw" = ( -/obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"ody" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"odB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"odD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, /turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) +/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/plate, +/area/almayer/maint/hull/upper/u_a_s) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -39812,19 +43635,25 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"odR" = ( -/obj/structure/disposalpipe/segment{ +"odV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"oem" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"oee" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/command/lifeboat) +"oef" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha_bravo_shared) "oer" = ( /turf/closed/wall/almayer{ damage_cap = 15000 @@ -39836,51 +43665,50 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"oeG" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +"oex" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"oeB" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"oeH" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oeM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "oeZ" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/medical) -"ofl" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"ofr" = ( -/obj/structure/platform{ +"ofH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ofs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"ofB" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"ofG" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"ofK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ofU" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ofN" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "ofY" = ( /obj/structure/surface/table/reinforced/almayer_B{ indestructible = 1; @@ -39894,46 +43722,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"ogi" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 1; - id = "Containment Cell 5"; - name = "Cell 5 Control"; - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 5"; - name = "Containment Lockdown"; - pixel_x = -8; - pixel_y = -3; - req_one_access_txt = "19;28" - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"ogv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ogw" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) "ogK" = ( /obj/structure/bed/bedroll{ desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; @@ -39954,67 +43742,54 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"ogY" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"ohb" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, +"ohi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"ohj" = ( +/obj/structure/machinery/cryopod, /turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) -"oho" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/squads/charlie) +"ohu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ohv" = ( -/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"ohA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"ohw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/shipboard/weapon_room) +"ohB" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ohE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/structure/platform{ +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 - }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"ohz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"ohG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 +"ohH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D3"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) "ohI" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/airlock, @@ -40032,38 +43807,61 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"ohK" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) "ohL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"ohU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "7;19" +"ohS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) +/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) -"oim" = ( -/obj/structure/machinery/door/airlock/almayer/security{ +"oih" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"oiq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" + dir = 8; + req_one_access = list(2,34,30) }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/area/almayer/maint/hull/upper/u_m_p) "oir" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -40073,24 +43871,13 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"oiv" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"oit" = ( +/obj/effect/landmark/railgun_computer{ dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"oiw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) "oix" = ( /obj/structure/machinery/power/apc/almayer, /obj/structure/sign/safety/rewire{ @@ -40098,39 +43885,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/warden_office) -"oiC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"oiP" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 +"oiz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/item/tool/pen{ - pixel_x = -9; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + dir = 1; + name = "\improper Warden's Office" }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"oiL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) "oiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -40144,6 +43918,19 @@ /obj/docking_port/stationary/vehicle_elevator/almayer, /turf/open/floor/almayer/empty/vehicle_bay, /area/almayer/hallways/lower/vehiclehangar) +"oiY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "ojh" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -40151,30 +43938,21 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"ojn" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"oju" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"ojG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ojF" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ojH" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/starboard) "ojQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_17"; @@ -40183,25 +43961,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"ojR" = ( -/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/silver/southeast, -/area/almayer/hallways/lower/repair_bay) "ojX" = ( /turf/open/floor/plating, /area/almayer/maint/upper/u_f_p) @@ -40210,54 +43969,45 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"okc" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"okr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"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) -"olu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"olw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"oly" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_three) -"olE" = ( -/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 +"oka" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"okd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"okg" = ( +/obj/structure/sign/safety/reception{ pixel_x = 8; - pixel_y = 6 + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/command/lifeboat) +"okD" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"okO" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"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) +"olF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) "olM" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -40277,6 +44027,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) +"olN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) "olO" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -40289,21 +44047,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"omg" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 25 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 15; - pixel_y = 25 - }, -/obj/structure/machinery/light{ - dir = 4 +"olU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cichallway) +"olW" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"omb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"ome" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) "omo" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -40314,6 +44076,18 @@ /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/cargo, +/area/almayer/maint/hull/lower/l_f_s) "omy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -40324,41 +44098,11 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"omA" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"omN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Alamo Remote Control Console"; - shuttleId = "dropship_alamo" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"omW" = ( -/obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"onh" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"onj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +"omP" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) "onn" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -40377,51 +44121,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"onD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"onF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"onK" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue Processing"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"onL" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) -"onM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) "onN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -40433,6 +44132,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"onQ" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) "onU" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -40447,23 +44153,15 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"onX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"oob" = ( -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17 +"onY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "oog" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -40480,6 +44178,18 @@ "oos" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) +"oou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "ooA" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40487,90 +44197,72 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"ooC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter, -/obj/structure/machinery/faxmachine/uscm, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"ooH" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/folder/black_random, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"ooV" = ( -/obj/structure/prop/cash_register/broken, -/obj/structure/machinery/light/small, +"opd" = ( +/obj/structure/barricade/handrail, /turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"ooZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"opc" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"opg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"opj" = ( -/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/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"opy" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/area/almayer/hallways/lower/port_midship_hallway) +"opu" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"opC" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) "opD" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) +"opF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/chief_mp_office) +"opH" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "opJ" = ( /obj/docking_port/stationary/emergency_response/external/port4, /turf/open/space/basic, /area/space) -"opR" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cic) -"oqa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"opV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"oqi" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"oqr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/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/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oqc" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_a_s) "oqt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"oqu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "oqv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -40580,6 +44272,14 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"oqw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "oqI" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, @@ -40598,43 +44298,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"oqV" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"oqX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) "oqY" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -40645,58 +44308,59 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"orh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +"oqZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 5 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 19 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"orp" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"ors" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 16 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ora" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 3 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 9; + pixel_y = 15 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"oru" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"orR" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"orx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"orX" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"orH" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/lifeboat) +"orN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) "osc" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /obj/structure/machinery/light{ @@ -40704,64 +44368,60 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"ose" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"osr" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/co2_knife{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"oso" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_a_p) -"osB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 +/area/almayer/maint/upper/u_f_p) +"osx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"osz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"osD" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"osK" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_lobby) -"osN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"osA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"osP" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower/engine_core) +/area/almayer/squads/bravo) +"osI" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop) +"osQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -40770,22 +44430,28 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"osW" = ( -/obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"otd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"otf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"otm" = ( -/obj/structure/largecrate/random/case/double, +"osU" = ( +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/living/briefing) +"osX" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"otp" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) "otq" = ( /obj/structure/machinery/line_nexter{ dir = 1; @@ -40797,13 +44463,6 @@ "otu" = ( /turf/closed/wall/almayer/research/containment/wall/connect_w, /area/almayer/medical/containment/cell) -"oty" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) "otC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40811,102 +44470,99 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"otF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = 7 +"otW" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ouf" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"otH" = ( -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"otO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"otU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"oum" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"oug" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/machinery/computer/squad_changer{ + dir = 8; + layer = 2.99; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ouw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/bombcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) "ouB" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ouG" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"ouP" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - name = "\improper Requisitions Storage" +"ouQ" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/north, +/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/test_floor4, -/area/almayer/squads/req) -"ovc" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ouW" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) "ove" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"ovr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"ovw" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ovH" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ovJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ovi" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"ovp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"ovG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"ovM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) "ovQ" = ( /obj/structure/machinery/light{ dir = 1 @@ -40916,80 +44572,27 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"ovW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"owh" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"owi" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"oww" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"owG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"owH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/item/storage/box/cups{ - pixel_x = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"owI" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +"owg" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) "owU" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) +"owW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "19;29" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) "oxc" = ( /obj/structure/bed, /obj/item/toy/plush/farwa{ @@ -41005,10 +44608,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"oxr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) +"oxl" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"oxn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "oxu" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 @@ -41027,50 +44642,16 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"oxG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"oxL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) "oxU" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"oxY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"oxZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"oyB" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"oya" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"oyw" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) -"oyz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) "oyC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -41096,64 +44677,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"oyT" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +"oyR" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"oyX" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"ozq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"oyW" = ( +/area/almayer/squads/alpha) +"ozz" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n150{ - pixel_x = -5; - pixel_y = 6 +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"ozH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"ozk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"ozK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"ozN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D2"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"ozT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"oAt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 9 }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"oAw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"oAa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"oAz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"oAJ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oAB" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) "oAK" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -41161,157 +44751,213 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"oAW" = ( -/obj/structure/closet/secure_closet/brig/restraints, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"oBk" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_two) -"oBl" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 +"oAO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/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/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oBo" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 +/area/almayer/maint/hull/upper/u_a_p) +"oBq" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) "oBr" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_a_s) -"oBw" = ( -/obj/structure/machinery/light{ - dir = 1 +"oBA" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"oBE" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"oBN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/computerlab) -"oBW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"oBZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"oBD" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Access Hall"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"oCa" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"oCw" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oCb" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"oCf" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"oCz" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"oCi" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"oCA" = ( -/obj/structure/closet/secure_closet/hydroresearch, -/obj/item/reagent_container/glass/watertank, -/obj/item/reagent_container/glass/watertank, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"oCl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/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) -"oCM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oDe" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, +"oDa" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/maint/upper/u_a_s) "oDh" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) +"oDi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "oDm" = ( /obj/structure/sign/safety/life_support{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"oDy" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"oDv" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/gym) +"oDx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"oDy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"oDE" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/turf/open/floor/almayer/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 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"oDL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"oDR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 9 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"oDD" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oDO" = ( -/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/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"oDZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"oDU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"oDY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"oEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"oEn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) "oEo" = ( /obj/effect/landmark/start/marine/medic/delta, /obj/effect/landmark/late_join/delta, @@ -41359,156 +45005,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"oEK" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"oEL" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"oER" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) -"oEQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ +"oEX" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/command/cic) -"oES" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +/turf/open/floor/almayer/red/north, +/area/almayer/living/port_emb) +"oFm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"oFn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"oET" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"oEW" = ( -/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/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"oFg" = ( -/obj/structure/machinery/computer/supplycomp, +/area/almayer/maint/hull/lower/l_f_p) +"oFr" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"oFk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) +/area/almayer/maint/hull/upper/u_a_s) "oFz" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"oFF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_y = 26; - req_one_access_txt = "3;22;19;7" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oFH" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"oFJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/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/plate, -/area/almayer/maint/hull/lower/l_f_s) -"oFN" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"oFP" = ( -/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/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"oFR" = ( -/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" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) "oFV" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -41524,27 +45053,43 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) +"oGh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"oGi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "oGj" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = -16 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"oGo" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +"oGm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"oGx" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"oGy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "oGC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -41555,19 +45100,38 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) +"oGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) "oGJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"oGS" = ( -/obj/structure/disposalpipe/segment{ +"oGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oGP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) +"oGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) "oGY" = ( /obj/item/device/flashlight/lamp/green{ pixel_x = 5; @@ -41584,18 +45148,49 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"oHq" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer2" +"oHc" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"oHr" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"oHf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"oHg" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"oHl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"oHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "oHt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41606,34 +45201,25 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"oHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"oHQ" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +"oHx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"oIa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"oHW" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"oHY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"oIh" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) "oIn" = ( /obj/effect/landmark/start/liaison, /turf/open/floor/plating/plating_catwalk, @@ -41656,6 +45242,10 @@ "oIB" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) +"oIY" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) "oJj" = ( /obj/structure/machinery/light{ dir = 8 @@ -41668,25 +45258,9 @@ "oJk" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop) -"oJl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"oJn" = ( -/obj/structure/surface/table/reinforced/prison, -/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_three) +"oJm" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) "oJp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -41698,125 +45272,51 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"oJq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"oJs" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"oJv" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/structure/machinery/light/small{ +"oJK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oJB" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"oJT" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"oKc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Engineering Reception" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"oKj" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"oKC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"oJL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"oKX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/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/plate, -/area/almayer/living/briefing) -"oKY" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/area/almayer/hallways/lower/port_fore_hallway) +"oKb" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"oKv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"oKx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/item/toy/plush/barricade, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"oKZ" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"oLg" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ +/area/almayer/living/bridgebunks) +"oLf" = ( +/obj/structure/sign/safety/security{ pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/maint/hull/upper/p_bow) "oLj" = ( /obj/effect/projector{ name = "Almayer_Up2"; @@ -41828,91 +45328,75 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"oLl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"oLn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ +"oLF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"oLs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "south_central_checkpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oLQ" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/transmitter/rotary{ - name = "AI Reception Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Reception" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Lobby"; + req_access = null }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"oLR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"oMc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ +/area/almayer/shipboard/brig/lobby) +"oLN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"oLU" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/hydroponics) +"oMe" = ( +/obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"oMd" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/area/almayer/squads/req) +"oMi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, -/area/almayer/command/airoom) -"oMl" = ( -/obj/structure/machinery/cm_vending/gear/engi, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"oMD" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/weapon_room) -"oMI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/living/auxiliary_officer_office) +"oMs" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"oMH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"oMP" = ( -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) "oMQ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oMZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) +"oNb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) "oNj" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -41921,49 +45405,51 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"oNn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"oNp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"oNJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "N" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"oNu" = ( -/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) "oNK" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"oNU" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +"oNM" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oNP" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"oNX" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oNW" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 24 +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) "oNY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18"; @@ -41974,59 +45460,89 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"oOa" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"oOb" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop) -"oOe" = ( -/obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"oOh" = ( +"oOp" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4 - }, +/obj/item/tool/wirecutters, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"oOm" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/area/almayer/maint/hull/upper/u_m_p) +"oOw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"oON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"oOO" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"oOK" = ( -/obj/structure/machinery/light{ +/area/almayer/command/lifeboat) +"oOW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"oOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) "oPf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"oPh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"oPy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"oPi" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"oPw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"oPz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oPE" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/cic) +"oPF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "oPH" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -42036,80 +45552,101 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"oPO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"oQa" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 +"oQn" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oQs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"oQy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"oQw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/port_umbilical) +"oQH" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/briefing) +"oQI" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/port) "oQJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"oQT" = ( -/obj/structure/platform{ +"oQL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oQM" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"oRb" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/tool/pen, +/obj/item/book/manual/marine_law{ pixel_x = 15; - pixel_y = -32 + pixel_y = 5 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/item/book/manual/security_space_law{ + pixel_x = 16; + pixel_y = 9 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"oRk" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"oRm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"oRu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"oRo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"oRw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) +"oRy" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"oRJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"oRR" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/surface/table/almayer{ + layer = 3 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oRO" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "oRV" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/warning_stripes{ @@ -42118,31 +45655,13 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"oSc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"oSh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"oRW" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"oSi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +/area/almayer/engineering/lower/workshop) "oSq" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -42151,20 +45670,20 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"oSt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"oSw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) -"oSA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"oSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/engineering/upper_engineering/port) "oSC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -42174,114 +45693,100 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"oSM" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oSY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"oSZ" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"oTa" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"oTf" = ( -/obj/structure/closet/emcloset, +"oSG" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"oTw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/almayer/maint/hull/upper/u_m_s) +"oSL" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"oTC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"oTN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"oTU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 +/turf/open/floor/almayer/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/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"oTW" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oTe" = ( +/obj/item/prop/almayer/box, +/obj/item/prop{ + desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m56c"; + item_state = "m56c"; + name = "broken M57 'Larry's Will' smartgun"; + pixel_x = -7; + pixel_y = 3 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"oUa" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 +/obj/item/frame/light_fixture/small{ + pixel_y = 17 }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 +/obj/structure/machinery/door_control{ + id = "crate_room4"; + name = "storage shutters"; + pixel_y = 26 }, -/obj/item/reagent_container/dropper, -/obj/structure/machinery/firealarm{ +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/packageWrap, +/obj/structure/machinery/computer/working_joe{ dir = 8; - pixel_x = -24 - }, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_y = 12 + pixel_x = 17 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"oUd" = ( -/obj/structure/sign/poster/propaganda{ - pixel_x = -27 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"oTA" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"oTH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oUi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oUr" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oTO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) +/turf/open/floor/almayer/plating/northeast, +/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; @@ -42289,123 +45794,120 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"oUy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"oUx" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oUz" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"oUH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer/silver, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/lower/repair_bay) -"oUS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 +"oUG" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"oUZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oUY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"oVe" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"oVg" = ( +/area/almayer/maint/hull/lower/l_m_p) +"oVf" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"oVn" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"oVs" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"oVv" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"oVw" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"oVy" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/area/almayer/shipboard/brig/general_equipment) +"oVk" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"oVU" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"oVo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "oVY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"oVZ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"oWf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"oWg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/northeast, +/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) -"oWu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"oWy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"oWx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"oWC" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"oWz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"oWE" = ( +/obj/structure/stairs, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower) -"oWD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) "oWF" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -42414,286 +45916,348 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"oWH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"oXa" = ( +"oWK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"oWN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/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) -"oXg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"oXm" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) "oXp" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"oXt" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"oXW" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"oYg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/morgue{ - dir = 8 - }, +"oXJ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"oYh" = ( -/obj/structure/pipes/vents/pump{ +/area/almayer/engineering/upper_engineering/port) +"oXM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"oXY" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - id_tag = "mining_outpost_pump" + name = "ship-grade camera" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) +/turf/open/floor/almayer/sterile_green_side/southeast, +/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) -"oYn" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"oYv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +"oYp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"oYB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/red/west, +/area/almayer/living/offices/flight) +"oYr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"oYO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"oZd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/upper/u_a_p) +"oYs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"oZk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - name = "\improper Warden's Office" +/turf/open/floor/almayer/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/structure/machinery/door/poddoor/shutters/almayer/open{ +/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; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" + pixel_x = -17 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"oYV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 8; + pixel_y = 2; + autoname = 0; + c_tag = "AI - Reception Corridor" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"oZo" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"oYZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"oZp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/prop/magazine/boots/n055{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/offices/flight) +"oZx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "oZy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"oZF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"oZD" = ( +/obj/structure/sign/poster/music{ + pixel_x = -27 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oZH" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Normandy Remote Control Console"; - pixel_y = -12; - shuttleId = "dropship_normandy" +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"oZS" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"oZT" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"pab" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bloodsoup{ +/obj/item/paper_bin/uscm{ + pixel_x = -7; pixel_y = 6 }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8; - pixel_y = 2 +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/item/tool/pen{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"pai" = ( -/obj/structure/closet/crate/ammo, -/obj/structure/machinery/light/small, -/obj/item/ammo_box/magazine/empty, -/obj/item/ammo_box/magazine/empty, -/obj/structure/machinery/door_control{ - id = "crate_room3"; - name = "storage shutters"; - pixel_x = -26 +/area/almayer/living/briefing) +"oZI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"pam" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 13 +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"oZV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"paa" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"pas" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 25 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"pan" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"paA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 25 + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"paF" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/crap, -/obj/item/tool/crowbar, -/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"pau" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, +/area/almayer/command/aist_office) +"pax" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Reception"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"paI" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"paR" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"paS" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/obj/item/device/lightreplacer, +/area/almayer/engineering/upper_engineering/starboard) +"paJ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"pca" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" +/area/almayer/maint/hull/upper/p_bow) +"paL" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/cic) +"pbm" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/mp_bunks) +"pbo" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"pbp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pbs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"pbV" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/command/cic) +"pbW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/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/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) -"pcn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"pcj" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"pcp" = ( -/obj/structure/machinery/light{ - dir = 1 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"pcl" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) "pcs" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"pcx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 +"pcv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"pcE" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"pcJ" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/living/briefing) -"pcK" = ( -/obj/item/clothing/mask/rebreather/scarf, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/area/almayer/living/gym) +"pcG" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 }, /turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) +"pcO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) "pcY" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ @@ -42701,138 +46265,68 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/mess) -"pdk" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"pdl" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pds" = ( -/obj/item/tool/screwdriver{ - layer = 2.9; - pixel_x = -21; - pixel_y = -14 +"pdo" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"pdp" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"pdA" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"pdB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/crew/alt{ - dir = 4 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Brig Cells Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Cells"; - pixel_x = 16 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"pdF" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/area/almayer/maint/hull/upper/p_bow) +"pdK" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"pdH" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13; +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"pdM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pec" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pdT" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) "pek" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/s_bow) -"pel" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"pem" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"pen" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) "pep" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_f_p) -"peF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"peS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +"peM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"peO" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -17; + pixel_y = 6 }, -/obj/item/desk_bell{ - pixel_x = -6; - pixel_y = 10; - anchored = 1 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -9 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) "pfa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) +"pfc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) "pfd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -42844,22 +46338,22 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/starboard_hallway) -"pfq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"pfp" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"pfw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) "pfD" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) +"pfH" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) "pfL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -42880,40 +46374,24 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"pgb" = ( -/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/plate, -/area/almayer/maint/upper/u_m_s) -"pgk" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, +"pfT" = ( +/obj/structure/machinery/ares/processor/interface, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"pga" = ( +/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/plate, /area/almayer/maint/upper/u_m_p) -"pgm" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"pgC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"pgw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) "pgD" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south1) @@ -42924,6 +46402,27 @@ }, /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; + pixel_y = 3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"pgN" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "pgP" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -42933,28 +46432,31 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"phf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"pha" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"phd" = ( +/obj/structure/sign/poster/safety{ + pixel_x = 27 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"pht" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"phj" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"phE" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"phI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"phw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "phN" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -42965,43 +46467,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"phS" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"phT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"phX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"pie" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"pif" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) "pij" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -43009,23 +46474,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"pil" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"pir" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) "piJ" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -43041,31 +46489,48 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"piL" = ( -/obj/structure/platform_decoration{ - dir = 8 +"piQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"pja" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) "pje" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"pju" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/hull/lower/l_m_s) +"pjh" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"pjj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"pjw" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_lobby) "pjz" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/p_bow) -"pjE" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) +"pjF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"pjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) "pjP" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -43082,154 +46547,84 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"pjX" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"pkf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"pkj" = ( -/obj/structure/machinery/power/smes/buildable, +"pkz" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"pkA" = ( +/obj/structure/closet/firecloset, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"pkm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"pky" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pkS" = ( +/obj/structure/stairs{ dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"pkC" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"pkL" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"pkP" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"pkY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"plc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 + icon_state = "ramptop" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"plj" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/cryo_cells) -"plp" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pld" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/northeast, +/area/almayer/maint/upper/u_a_p) "plv" = ( /turf/open/floor/plating, /area/almayer/maint/hull/lower/l_m_p) -"plA" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/maint/upper/u_a_s) -"plE" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southwest, -/area/space) +"plH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/west, +/area/almayer/command/aist_office) "plK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"plR" = ( +"pmd" = ( +/obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"pmq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"pma" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 16 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"pmv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/starboard_hallway) -"pme" = ( -/obj/structure/machinery/computer/ordercomp, -/obj/structure/sign/safety/galley{ - pixel_x = -17 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"pmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"pmm" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) -"pmn" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"pms" = ( -/obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"pmD" = ( -/obj/structure/morgue, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"pmX" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) +/area/almayer/living/briefing) +"pmV" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/computer/tech_control{ + pixel_y = 16; + density = 0 + }, +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) "pnh" = ( /obj/structure/ladder{ height = 2; @@ -43250,96 +46645,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"pnF" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"pnK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"pos" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"pot" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"poC" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"poD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"pnC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"pnL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"poL" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"poT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"pok" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"poU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_f_p) +"poA" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 10 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"poV" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/living/briefing) -"poX" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"poZ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"poD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/lower/port_fore_hallway) -"ppa" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - req_access = list(1) +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) "ppe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"ppw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +"ppn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "ppF" = ( /obj/structure/sign/safety/terminal{ pixel_x = -17 @@ -43355,79 +46718,48 @@ /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) +"ppG" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "ppM" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) -"ppU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"ppW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, +"ppV" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pqc" = ( /turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"pqf" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) +/area/almayer/living/pilotbunks) +"pqi" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/device/reagent_scanner, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) "pql" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"pqn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research/main_terminal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"pqp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"pqr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"pqv" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) "pqw" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"pqB" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) +"pqD" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) "pqF" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, @@ -43437,58 +46769,25 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"pqL" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"pqR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_container/food/drinks/cans/souto, -/obj/item/reagent_container/food/snacks/margheritaslice{ - desc = "A slice of classic pizza ruined by the corps."; - name = "dirty margherita slice"; - pixel_x = -3; - pixel_y = 3 - }, -/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 - }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/stack/medical/ointment{ - layer = 3.5; - pixel_x = -7; - pixel_y = 13 +"pqK" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"pqM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" }, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"pqP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"pqS" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "pqX" = ( /obj/structure/bed/chair{ dir = 4 @@ -43514,91 +46813,35 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"prm" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 +"prl" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"prq" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"prx" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"prG" = ( -/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 - }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"prE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/living/captain_mess) "prP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"prS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"prT" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - climbable = 0; - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/machinery/computer/cameras/almayer{ - pixel_y = 6; - pixel_x = 28 - }, -/obj/structure/machinery/computer/view_objectives{ - pixel_x = 12; - pixel_y = 6 - }, -/obj/item/device/radio/intercom{ - frequency = 1500; - name = "AI Core Intercom"; - pixel_y = 32 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 32; - pixel_x = 14 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, -/area/almayer/command/aist_office) "prX" = ( /obj/structure/ladder{ height = 2; @@ -43613,129 +46856,69 @@ /obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"prZ" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"pss" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"psy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/device/camera{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"psF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"psL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - id_tag = "CO-Office"; - name = "\improper Commanding Officer's Office"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"psT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"psW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/sleep_console{ +"psa" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"ptd" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"psk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"psK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/bedsheet/red{ - layer = 3.2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc02"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = 23 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"pte" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D2"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"psO" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) "ptf" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"ptk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"pth" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/obj/effect/landmark/map_item, +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"ptj" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"ptq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -43743,33 +46926,46 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"pty" = ( -/obj/structure/platform{ - dir = 8 +"ptA" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"ptJ" = ( -/obj/structure/platform{ +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"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/test_floor4, +/area/almayer/maint/hull/upper/s_stern) +"ptZ" = ( /obj/structure/platform{ - dir = 8 + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pub" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"ptK" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"ptW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) "pum" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -43784,6 +46980,12 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) +"pur" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) "puI" = ( /obj/structure/machinery/light{ dir = 4 @@ -43796,6 +46998,15 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"puP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/midship_hallway) "puT" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -43811,197 +47022,137 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"pvx" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_m_p) -"pvB" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pvF" = ( -/obj/structure/sign/safety/ladder{ +"pvi" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"pvI" = ( +/obj/structure/sign/safety/rad_haz{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"pvH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 + pixel_y = 32 }, -/obj/item/storage/firstaid/adv, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"pvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"pvL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"pvQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pvT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/computerlab) -"pwg" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"pwh" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "weapon targetting computer" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"pvK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/obj/structure/sign/safety/terminal{ +/obj/structure/machinery/firealarm{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"pwk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + pixel_y = 28 }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pwy" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pwE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/window/westright{ +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; - req_access_txt = "28" + pixel_x = -17 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"pvP" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/starboard_missiles) +"pwl" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"pwF" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/fore_hallway) +"pwx" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/squads/req) +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) "pwG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"pwQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"pwS" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/smg/m39{ - pixel_y = 6 - }, -/obj/item/weapon/gun/smg/m39{ - pixel_y = -6 - }, +"pxj" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"pwU" = ( -/obj/structure/pipes/vents/scrubber/no_boom{ +/area/almayer/command/combat_correspondent) +"pxo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"pxh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pxD" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"pxy" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"pxB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/vending/snack{ + pixel_x = -18; + pixel_y = 4 }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "pxG" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"pyd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"pxJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"pyc" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"pyi" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) "pyj" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"pyk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"pyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/perma) -"pyo" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) "pyx" = ( /obj/structure/machinery/door_display/research_cell{ dir = 4; @@ -44024,420 +47175,235 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"pyE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "returns outlet"; - pixel_y = 28; - range = 0; - pixel_x = -7 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"pyG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"pzf" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"pzg" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"pzi" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"pzq" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"pzW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) -"pzX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"pAb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, +"pyy" = ( +/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"pAf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cic) -"pAl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"pAm" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"pAn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/command/lifeboat) +"pyC" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"pAx" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"pAA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"pAO" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"pAP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"pAV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"pAW" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"pBc" = ( +/area/almayer/hallways/hangar) +"pyL" = ( +/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/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"pzc" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"pBj" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"pBl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"pzd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"pBx" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"pzj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pzw" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/green, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) -"pBy" = ( +"pzG" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"pzJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"pBB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"pBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"pBG" = ( -/turf/closed/wall/almayer, -/area/almayer/command/corporateliaison) -"pCq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"pCs" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pCy" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 5"; - locked = 1; - name = "\improper Containment Cell 5" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"pCz" = ( -/turf/open/floor/almayer/orangecorner/west, +/area/almayer/command/lifeboat) +"pzM" = ( +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) -"pCD" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 8 +"pzV" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/briefing) +"pzW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) +"pzX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"pCJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"pCU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"pCW" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"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" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliaison) +"pCq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"pDi" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"pCr" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/blend, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"pDk" = ( +/area/almayer/squads/req) +"pDh" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "N" }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"pDp" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"pDo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/area/almayer/shipboard/starboard_point_defense) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"pDs" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/obj/item/storage/firstaid/rad, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower) -"pDF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"pDL" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pDY" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"pEa" = ( -/obj/effect/step_trigger/clone_cleaner, +"pDt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "W" }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"pEw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"pEz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"pDB" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"pEB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"pEW" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"pDW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/officer_study) -"pFn" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/upper/midship_hallway) -"pFG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - name = "\improper Chief MP's Office" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + name = "ship-grade camera" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/chief_mp_office) -"pFL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"pFU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastleft{ - req_access = list(19) - }, -/obj/structure/machinery/door/window/westright, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/computerlab) -"pFX" = ( +"pEl" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/hvac_old{ +/obj/structure/ladder/fragile_almayer{ + height = 1; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ pixel_x = 8; - pixel_y = -32 + pixel_y = 24 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pGb" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"pEJ" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 2"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/structure/machinery/light/containment{ + dir = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"pGf" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"pEY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"pFq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pFr" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "pGh" = ( /obj/effect/decal/cleanable/cobweb{ pixel_x = -9; @@ -44445,26 +47411,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"pGr" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +"pGj" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"pGE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = 7 }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"pGs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/paper_bin/uscm{ + pixel_y = 5 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"pGz" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha_bravo_shared) -"pGF" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) +/obj/item/tool/pen, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "pGG" = ( /obj/effect/landmark/start/doctor, /obj/structure/sign/safety/maint{ @@ -44473,35 +47440,76 @@ /obj/effect/landmark/late_join/doctor, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) +"pGK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "pGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"pHl" = ( -/turf/open/floor/almayer/aicore/no_build/white/ai_silver, -/area/almayer/command/aist_office) +"pHc" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/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 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "pHp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) -"pHs" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or02"; - name = "Operating Theatre 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_two) "pHA" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"pHC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/transmitter/rotary{ + name = "Office Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AIST Office"; + pixel_x = 8; + pixel_y = 9 + }, +/obj/structure/machinery/aicore_lockdown{ + pixel_x = -5; + req_one_access_txt = "31;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES AIST"; + name = "Privacy Shutters"; + pixel_y = 11; + req_one_access_txt = "31;92"; + pixel_x = -5 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver, +/area/almayer/command/aist_office) +"pHD" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "pHF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44511,23 +47519,13 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"pHM" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"pHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"pHR" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/starboard_missiles) +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) "pId" = ( /obj/item/storage/box/nade_box/tear_gas, /obj/item/storage/box/nade_box/tear_gas{ @@ -44537,56 +47535,70 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"pIg" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"pIo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"pIA" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"pIH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/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" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"pIU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) "pIV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"pJk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" +"pIZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"pJn" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"pJC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/lifeboat_pumps/north1) +"pJq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"pJr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"pJQ" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) +/area/almayer/engineering/lower/engine_core) +"pJD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) "pJS" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ @@ -44594,29 +47606,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) -"pJW" = ( -/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/greencorner/north, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pKa" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"pKg" = ( -/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/plate, -/area/almayer/maint/lower/s_bow) "pKh" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -44625,42 +47614,29 @@ /obj/effect/landmark/late_join/nurse, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"pKm" = ( -/obj/structure/pipes/vents/scrubber{ +"pKB" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"pKH" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"pKr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/upper/midship_hallway) -"pKs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"pKz" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"pKL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" +/obj/structure/largecrate/random/secure{ + pixel_x = -5 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"pKE" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "pKU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44670,66 +47646,48 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/mp_bunks) -"pLg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"pLi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"pLj" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - name = "\improper Research Reception Laboratory" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"pKW" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"pLv" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/hallways/lower/repair_bay) +"pKZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"pLx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"pLa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"pLt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/transmitter/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pLE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"pLz" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"pLF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -44744,48 +47702,31 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"pLV" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"pMu" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -18 - }, +"pLW" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"pMv" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ +/area/almayer/living/pilotbunks) +"pMj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pMx" = ( +/area/almayer/living/captain_mess) +"pMk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "NE-out"; + pixel_y = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"pMp" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"pMC" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8; - c_tag = "AI - Reception Desk"; - autoname = 0 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/area/almayer/medical/morgue) +"pMA" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "pMH" = ( /obj/item/tool/wet_sign, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44802,120 +47743,111 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"pMN" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"pMR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +"pML" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"pNa" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"pMW" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"pNl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/area/almayer/command/cichallway) +"pNM" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"pNP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"pNJ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"pOa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/body_scanconsole{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"pOb" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"pOc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"pOe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"pOf" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/reagent_container/food/snacks/cheesewedge{ + pixel_x = -10; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) +/mob/living/simple_animal/mouse/white/Doc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "pOi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) -"pOy" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +"pOp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"pOB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/surgery/scalpel, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"pOG" = ( -/obj/structure/machinery/ares/processor, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"pOS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" - }, +/area/almayer/maint/hull/upper/s_bow) +"pOD" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pOH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"pON" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/cic) "pOW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"pOX" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Computer Lab"; - req_access = null +"pOY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"pPd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) +/area/almayer/shipboard/panic) +"pPv" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "pPy" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8; @@ -44924,155 +47856,191 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"pPB" = ( -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"pPF" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"pPP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"pPA" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 27; + serial_number = 12 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"pPV" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"pPY" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -3; - vector_y = -1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"pPM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"pPN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/port_missiles) +"pPQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"pQb" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) "pQc" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/offices) -"pQf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"pQk" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"pQm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "line2"; - pixel_x = -4; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/door_control{ - id = "ROlobby2"; - name = "RO Line 2 Shutters"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "1;21" - }, +"pQr" = ( +/obj/structure/bed, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"pQo" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) +/area/almayer/shipboard/brig/perma) "pQy" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"pQA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"pQz" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"pQF" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"pQI" = ( +/obj/structure/machinery/power/apc/almayer{ + cell_type = /obj/item/cell/hyper; + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) "pQN" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pQT" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"pQP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"pQW" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"pQV" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"pQY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"pRg" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"pRq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/living/offices) +"pRh" = ( +/obj/structure/machinery/sentry_holder/almayer/mini/aicore{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "Stairway Shutters"; + pixel_x = 36; + req_one_access_txt = "31;92"; + pixel_y = -2 + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "Corridor Shutters"; + pixel_x = 36; + pixel_y = 4; + req_one_access_txt = "31;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "Core Shutters"; + pixel_x = 36; + pixel_y = 10; + req_one_access_txt = "31;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES Railing"; + indestructible = 1; + name = "Core Railings"; + needs_power = 0; + pixel_x = 28; + req_one_access_txt = "31;92"; + pixel_y = 7 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "Records Room Shutters"; + pixel_x = 28; + pixel_y = 1; + req_one_access_txt = "31;92" + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) +"pRn" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "pRs" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"pRx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +"pRy" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell/cl) +"pRO" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"pRT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"pRL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8; + name = "\improper Tool Closet" }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"pRX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) "pRZ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -45080,100 +48048,80 @@ }, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"pSb" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"pSe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"pSm" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"pSn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"pSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"pSp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"pSx" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pSQ" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"pSU" = ( +/obj/structure/machinery/light, /obj/structure/machinery/photocopier, -/obj/item/paper{ - color = "grey"; - info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; - name = "photocopied image"; - pixel_y = 5 +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"pTj" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/sign/safety/rad_shield{ +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"pTI" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"pSG" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/pilotbunks) -"pSL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"pTS" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"pTc" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/hallways/upper/fore_hallway) +"pTX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"pTf" = ( -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_y = 28; - req_one_access_txt = "28" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/almayer/maint/hull/lower/l_f_p) +"pTY" = ( +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"pTN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"pTT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/silver, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"pUd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/mono, /area/almayer/command/computerlab) -"pUe" = ( -/obj/structure/platform{ - dir = 8 +"pUf" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) "pUg" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -45188,49 +48136,40 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"pUC" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"pUG" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"pVa" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n117{ - pixel_x = 2; - pixel_y = 5 +"pUp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 27 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"pVe" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"pVf" = ( -/obj/structure/bed/chair/comfy/alpha{ +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"pUv" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"pUA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced/ultra{ dir = 1 }, -/turf/open/floor/almayer/plate, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/almayer/silver/northeast, /area/almayer/living/briefing) +"pUD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/brig/processing) "pVh" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -45238,12 +48177,6 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) -"pVp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) "pVr" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -45254,6 +48187,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) +"pVx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) "pVA" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 2; @@ -45270,15 +48207,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"pVE" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -3; - vector_y = -1 +"pVB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/briefing) "pVF" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c1000/counterfeit, @@ -45294,102 +48234,96 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pWi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"pWd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pWr" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -1 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"pWk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = -2 +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 2 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"pWI" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/structure/sign/safety/hvac_old{ + pixel_y = -26 }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"pWw" = ( +/obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"pWO" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/cryo_cells) -"pXd" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"pXr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-1"; - req_access = null + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"pXt" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"pXI" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pWN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"pXl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"pXN" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"pXx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pXV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "pXZ" = ( /obj/effect/landmark/start/marine/spec/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"pYj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8 +"pYh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"pYk" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"pYp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/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/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pYo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) "pYu" = ( /obj/item/tool/warning_cone{ pixel_x = -12; @@ -45400,26 +48334,15 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"pYx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"pYN" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pYF" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"pYM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "pYQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -45427,22 +48350,15 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"pZb" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"pZd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 +"pYS" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"pZk" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"pZx" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/squads/delta) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pYX" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) "pZH" = ( /obj/structure/machinery/shower{ dir = 8 @@ -45452,33 +48368,27 @@ /obj/item/tool/soap/deluxe, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/corporateliaison) -"pZI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"pZK" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/port) +"pZR" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"pZN" = ( +/area/almayer/living/briefing) +"pZS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"qam" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pZV" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qah" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "qan" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, @@ -45493,13 +48403,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"qau" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "qax" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -45508,60 +48411,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/vehiclehangar) -"qaE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"qaV" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"qaW" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"qaH" = ( -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qaK" = ( -/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/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"qaQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door_control{ - id = "OTStore"; - name = "Shutters"; - pixel_y = -24; - access_modified = 1; - req_one_access_txt = "35" - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qbl" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) "qbw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) @@ -45571,46 +48429,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"qbz" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/sign/poster{ - pixel_x = -32 +"qby" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"qbA" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"qbJ" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"qbD" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"qbW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"qbO" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/pilotbunks) +"qbP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"qcg" = ( -/obj/structure/transmitter{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qbU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"qbZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + dir = 1; + name = "\improper Engineering Bunks" }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "qck" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/cameras/wooden_tv/almayer{ @@ -45618,100 +48474,69 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qcq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qcw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"qcy" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"qdk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"qcz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qcC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"qcI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/storage/box/cups, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"qcK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/almayer/living/grunt_rnr) +"qdv" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"qdb" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) -"qdc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"qdi" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"qdn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"qdr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/clothing/head/beret/royal_marine, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"qdz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"qdB" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"qdA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "qdJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45721,16 +48546,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"qdK" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/command/lifeboat) "qdQ" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 @@ -45743,26 +48558,60 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"qew" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"qec" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/red/east, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/port) -"qex" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) -"qeA" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"qeH" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"qej" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"qep" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Field Surgery Equipment"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"qer" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"qeF" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/command/lifeboat) +"qeK" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/device/helmet_visor{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "qeY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/beach_ball/holoball, @@ -45776,134 +48625,67 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"qfg" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/obj/structure/sign/safety/ref_chem_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"qfk" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"qfv" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"qfz" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"qfD" = ( -/obj/structure/bed/chair/office/dark{ +"qfh" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qfO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"qfq" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"qfy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"qfS" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/structure/transmitter{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"qfT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -6; - pixel_y = 9; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 6; - pixel_y = 9; - req_access_txt = "3" + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/computer/working_joe{ +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -11; pixel_y = 16 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"qgd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"qgf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/s_bow) -"qgk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 4; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/medical_science) +"qfA" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"qfD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qfI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qfQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) -"qgl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"qgo" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"qga" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"qgn" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) "qgr" = ( /obj/item/trash/plate{ pixel_x = 9; @@ -45921,34 +48703,17 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qgy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/ladder/fragile_almayer{ - height = 1; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 +"qgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"qgz" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"qgE" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"qgI" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/combat_correspondent) "qgN" = ( /obj/structure/bed/chair{ dir = 4 @@ -45961,53 +48726,46 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"qgS" = ( +"qgU" = ( +/obj/structure/machinery/power/apc/almayer/hardened, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qgV" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"qhh" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qhi" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"qhb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"qhg" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"qhj" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/area/almayer/maint/upper/u_f_s) +"qhx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qhB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"qhD" = ( +/obj/structure/closet{ + name = "backpack storage" }, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/mortarpack, +/obj/item/storage/backpack/marine/mortarpack, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +/area/almayer/engineering/lower/workshop/hangar) "qhG" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze{ @@ -46033,78 +48791,22 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"qhL" = ( -/obj/structure/machinery/door_control{ - id = "pobunk2"; - name = "PO2 Privacy Shutters"; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"qhN" = ( +"qhT" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"qhU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "19;29" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"qhR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"qhS" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"qhV" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"qhW" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lockerroom) -"qic" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "qid" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -46115,202 +48817,124 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"qil" = ( -/obj/structure/machinery/telecomms/receiver/preset_left, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"qig" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qih" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" }, -/obj/structure/sign/safety/radio_rad{ - pixel_x = 16; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/tankerbunks) +"qim" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qit" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "qiy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"qiC" = ( -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - layer = 3.2; - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - layer = 3.1; - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/masks{ - layer = 3.1; - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"qiD" = ( -/obj/structure/machinery/ares/processor/bioscan, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"qiI" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"qiO" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, +"qjz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"qiR" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"qiT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_x = -1; - pixel_y = 11 - }, +/area/almayer/living/bridgebunks) +"qjF" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"qjK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/mp_bunks) +"qjL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"qjc" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_m_s) +"qjN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qjV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"qjY" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qjm" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" }, -/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" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend/north, +/obj/item/desk_bell{ + pixel_x = -6; + pixel_y = -8; + anchored = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "qjZ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/stern_point_defense) -"qkb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "qki" = ( /obj/effect/landmark/start/marine/smartgunner/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"qkm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"qkp" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"qkv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"qkP" = ( +/obj/item/frame/light_fixture{ + anchored = 1; + desc = "A broken fluorescent tube light."; + dir = 8; + icon_state = "tube-broken"; + name = "broken light fixture" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"qkz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"qkD" = ( -/obj/structure/sink{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"qkO" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/cryo_cells) -"qkS" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"qkY" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12; - pixel_y = 5 +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = -1 }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 9 }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"qkT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/item/tool/pen{ + pixel_x = 5 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "qlm" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/warning_stripes{ @@ -46328,22 +48952,10 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qls" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"qlw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie) +"qlu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "qlz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -46361,42 +48973,115 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"qlT" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/living/grunt_rnr) -"qmd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"qmf" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/command/cic) -"qmg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) +"qlL" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) "qmh" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/hallways/lower/repair_bay) -"qmp" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"qmt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) +"qmk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/facepaint/green, +/turf/open/floor/almayer/bluecorner/east, +/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/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qmy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_windoor"; + name = "Windoor Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "28" + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/sign/safety/biohazard{ + pixel_y = -32 + }, +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_se_2"; + name = "Window Shutters"; + pixel_x = -7; + pixel_y = 4; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"qmD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"qmK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/fore_hallway) +"qmM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "qmP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"qmR" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) "qmU" = ( /obj/item/vehicle_clamp, /obj/item/vehicle_clamp, @@ -46407,6 +49092,10 @@ /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) +"qmW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) "qmY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -46414,13 +49103,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"qnb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/midship_hallway) "qnd" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -46436,22 +49118,17 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"qnm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, +"qni" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"qnn" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"qnx" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qnl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "qnA" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/tool/crowbar{ @@ -46460,140 +49137,93 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"qnY" = ( -/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/plate, -/area/almayer/maint/hull/lower/p_bow) -"qoi" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"qop" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qoq" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"qos" = ( -/obj/structure/reagent_dispensers/pacidtank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"qoD" = ( +"qnC" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"qnD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Crew Chief's Room" }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = -2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"qnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"qnX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"qom" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qon" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qpc" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"qpe" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"qpk" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"qpo" = ( -/obj/structure/closet/basketball, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qoJ" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"qpq" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"qpu" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"qoL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) -"qpE" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"qpF" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, -/obj/item/ammo_box/magazine/l42a{ - pixel_y = 14 +"qoM" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"qpL" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"qpP" = ( +/area/almayer/maint/upper/u_m_p) +"qoN" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qoR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 + icon_state = "SW-out" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qoY" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"qpx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/scrubber, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"qpQ" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) "qpV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46604,27 +49234,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"qqc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ +"qpY" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13; dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"qqa" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) "qqf" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"qql" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) "qqn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -46632,107 +49257,64 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"qqx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"qqr" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qqu" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/command/lifeboat) +"qqK" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qqG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_two) -"qqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"qrh" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"qrn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"qrs" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/medical/lower_medical_medbay) +"qqQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 16 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"qrM" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"qsd" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"qsh" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/mono, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/medical_science) -"qsi" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"qqS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"qra" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qrc" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"qsn" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"qrv" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "qsp" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"qsr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"qsw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer/green/west, +"qsC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) -"qsF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) "qsG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -46740,155 +49322,20 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"qsH" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/golden_cup{ - desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qsJ" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/starboard) "qsL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"qsP" = ( -/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/plate, -/area/almayer/maint/upper/u_m_s) -"qsU" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"qsW" = ( -/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/silver/northwest, -/area/almayer/maint/upper/u_m_p) -"qta" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"qtk" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical, +"qtv" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"qtQ" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"qtT" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"qtV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"qua" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"quf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) +/area/almayer/living/gym) "quj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"qum" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/medical_science) "quq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -46899,75 +49346,114 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"quv" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) "quJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"quN" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"quP" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"quQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"quS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"quT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"qvb" = ( -/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/red, -/area/almayer/shipboard/weapon_room) -"qvd" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc02"; + name = "\improper Treatment Center" }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"quV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"qvh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) "qvC" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, /turf/open/floor/plating, /area/almayer/living/port_emb) +"qvE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"qvF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) "qvI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"qvO" = ( -/obj/structure/window/reinforced{ - dir = 8 +"qvL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qwo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "qwp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46976,10 +49462,16 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"qwD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +"qwt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "qwJ" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -46995,20 +49487,36 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"qwQ" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/cic) -"qxf" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"qxg" = ( -/obj/structure/disposalpipe/segment, +"qwU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/port_umbilical) +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"qwY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"qxe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 3"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) "qxm" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -47021,50 +49529,69 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"qxp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"qxr" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"qxz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-5"; + req_access = null }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qxt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qxC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_1"; + name = "\improper Bathroom" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"qxy" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/area/almayer/living/port_emb) +"qxE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/biolab{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"qxG" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/upper/midship_hallway) +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qxI" = ( +/turf/open/floor/almayer/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) -"qxR" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) +"qxL" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"qxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) "qxS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light/small{ @@ -47072,23 +49599,34 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_f_s) -"qyf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +"qyi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"qyk" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"qyw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"qyo" = ( /turf/open/floor/almayer/blue/north, -/area/almayer/command/cic) +/area/almayer/command/cichallway) +"qys" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"qyA" = ( +/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"qyD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/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"; @@ -47103,9 +49641,25 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"qyS" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_midship_hallway) +"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 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"qyW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) "qyX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47113,126 +49667,124 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"qyY" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"qzn" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/living/port_emb) -"qzo" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +"qyZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/view_objectives, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/conference_room{ - pixel_x = -17 +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"qzc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"qAh" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-1"; - req_access = null +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"qAz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"qzA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"qAs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 8 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"qAy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/tool/pen, -/obj/item/book/manual/marine_law{ - pixel_x = 15; - pixel_y = 5 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qAA" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/item/book/manual/security_space_law{ - pixel_x = 16; - pixel_y = 9 +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"qAB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"qAC" = ( -/obj/structure/machinery/autolathe/armylathe/full, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"qAU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/area/almayer/engineering/lower) +"qAG" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"qBc" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/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/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"qBo" = ( +/area/almayer/maint/hull/upper/u_a_p) +"qAT" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"qBt" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 8 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"qBy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/device/reagent_scanner{ + pixel_x = -16; + pixel_y = 5 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"qBO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"qBl" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qBq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bathroom" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"qBP" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/almayer/living/commandbunks) +"qBM" = ( +/obj/item/storage/fancy/crayons{ + layer = 3.1; + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"qBV" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 +/turf/open/floor/almayer/green/west, +/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 }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/welding, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"qBZ" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) +/area/almayer/maint/hull/lower/stern) "qCc" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -47249,20 +49801,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"qCv" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/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/almayer/plate, -/area/almayer/living/briefing) "qCy" = ( /obj/effect/landmark/start/captain, /turf/open/floor/plating/plating_catwalk, @@ -47277,15 +49815,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) -"qCD" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) "qCG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -47293,83 +49822,91 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qCJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" +"qCH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"qCY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qDe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qCU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qDp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 +/obj/structure/sign/safety/terminal{ + pixel_x = 32; + pixel_y = -22 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) "qDq" = ( /obj/effect/landmark/start/marine/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"qDz" = ( -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/southeast, -/area/almayer/command/aist_office) -"qDA" = ( +"qDt" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Lifeboat Control Bubble"; + req_access = null + }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"qDG" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"qDM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"qDB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"qDP" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"qDU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"qDS" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"qEi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"qEl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qEs" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qEn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ + name = "\improper Research Hydroponics Workshop" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) "qEy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47377,31 +49914,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"qEG" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; +"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/reagent_dispensers/ethanoltank{ - anchored = 1 +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"qEA" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"qEL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"qEM" = ( +/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/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "qFi" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"qFk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) "qFu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -47411,13 +49973,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"qFy" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) "qFE" = ( /obj/structure/machinery/brig_cell/cell_5{ pixel_x = 32; @@ -47425,90 +49980,75 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"qFI" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) -"qFO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D2"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"qFR" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 - }, +"qFG" = ( +/obj/structure/window/framed/almayer, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"qFX" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/mp_bunks) -"qGa" = ( +/area/almayer/squads/charlie) +"qFK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"qGm" = ( -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"qGo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"qGB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/lower/l_a_s) +"qFX" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"qGc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"qGf" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"qGw" = ( +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 + }, +/turf/open/floor/almayer/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) -"qGT" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"qGY" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"qHt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"qHw" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +"qGF" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"qGU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"qHg" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"qHq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"qHz" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) "qHD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47519,6 +50059,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) +"qHG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"qHM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) "qHT" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -47526,11 +50079,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_p) -"qHZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) +"qIa" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "qIf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47540,52 +50094,110 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"qIj" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/upper/midship_hallway) -"qID" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = -3 +"qIx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null }, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qIF" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qIW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"qIL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/segment{ +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/item/storage/fancy/vials/empty{ + pixel_y = 10; + start_vials = 2 + }, +/obj/item/tool/pen{ + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"qJf" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"qJe" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "qJj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; pixel_y = -12 }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"qJo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/perma) +"qJx" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"qJy" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/storage{ + pixel_x = 33; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"qJS" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"qJY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 3.1; + pixel_x = -12; + pixel_y = 14 + }, +/obj/item/toy/deck/uno{ + layer = 3.1; + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/toy/handcard/uno_reverse_yellow{ + pixel_x = 6; + pixel_y = 5 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"qJm" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qJv" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/living/briefing) +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) "qJZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47608,89 +50220,98 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"qKw" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 +"qKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"qKl" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"qKH" = ( -/obj/item/device/radio/marine{ - pixel_x = 6 +/area/almayer/shipboard/panic) +"qKz" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"qKK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/radio/marine{ - pixel_x = 3 +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"qKY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/radio/marine, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"qKR" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"qKZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"qKU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qLg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"qLi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qKX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"qLf" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles{ - pixel_x = 6; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 6 +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"qLk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) "qLs" = ( /obj/effect/landmark/start/maint, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"qLv" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/command/cic) -"qLE" = ( +"qLt" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) +/obj/item/tool/wirecutters/clippers, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) "qLH" = ( /obj/structure/bed/chair{ buckling_y = 6; @@ -47699,11 +50320,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"qLL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +"qLS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qLV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/disk_reader, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) "qLY" = ( /obj/structure/bed/chair{ dir = 8; @@ -47711,42 +50336,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"qMc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_umbilical) -"qMj" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"qMm" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"qMv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"qMz" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) "qMD" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs, @@ -47770,74 +50359,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) +"qMP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) "qMR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qNe" = ( -/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; - icon_state = "bulb-burned"; - status = 3 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.78; - name = "circuit board"; - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/prop{ - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.79; - name = "circuit board"; - pixel_x = 8; - pixel_y = 7 +"qNc" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"qNy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"qNd" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"qNG" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/maint/upper/mess) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) "qNI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -47847,10 +50402,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"qNL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) +"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/cargo, +/area/almayer/maint/hull/lower/l_f_s) "qNR" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -47858,93 +50421,101 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"qOd" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +"qOf" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"qOk" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) "qOp" = ( /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"qOq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"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/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qOY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"qOt" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) -"qOu" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/basketball) -"qOL" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer5" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"qOT" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"qPi" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southeast, -/area/space) -"qPj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qOZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "qPk" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) +"qPn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) "qPD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"qPF" = ( -/obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qPJ" = ( -/obj/structure/bed/chair{ - dir = 4 +"qPE" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"qPL" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"qPS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "qPU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) -"qQd" = ( -/obj/structure/machinery/light{ - dir = 8 +"qPX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"qQc" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"qQj" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"qQl" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell/cl) +/area/almayer/medical/morgue) +"qQp" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "qQu" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) @@ -47955,95 +50526,77 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"qQD" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/intercom{ + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) "qQS" = ( /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"qQT" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"qQU" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"qQX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 8 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) "qRb" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"qRg" = ( -/obj/structure/stairs/perspective{ +"qRd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qRj" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "p_stair_sn_full_cap" + icon_state = "pipe-c" }, -/obj/structure/platform{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qRm" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"qRt" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"qRE" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; - pixel_y = 6 +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"qRr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"qSg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/command/corporateliaison) +"qRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) "qSm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"qSx" = ( +"qSE" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/squads/alpha) -"qSB" = ( +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"qSI" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) "qSK" = ( /obj/item/stack/sheet/metal{ layer = 2.9; @@ -48055,35 +50608,35 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"qTa" = ( -/obj/item/clothing/head/helmet/marine{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/grown/poppy, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"qTc" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qTf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"qSX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"qTi" = ( +/obj/structure/closet/crate, +/obj/item/ammo_box/magazine/l42a, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qTu" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"qTg" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"qTA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"qTQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) "qTS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -48095,22 +50648,30 @@ /obj/structure/machinery/gibber, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"qUj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"qUn" = ( -/obj/structure/platform{ - dir = 4 +"qUh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qUs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) +/area/almayer/hallways/hangar) +"qUp" = ( +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"qUq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"qUu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) "qUx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -48121,100 +50682,98 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"qUO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qUY" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"qVb" = ( +"qUz" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"qUK" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"qUL" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"qVi" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +"qUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qUZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "MTline"; + name = "Next button"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"qVq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"qVR" = ( -/obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"qVT" = ( +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"qVC" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/squad_changer{ - pixel_x = -9 - }, -/obj/structure/machinery/computer/card{ - pixel_x = 9 - }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qVZ" = ( -/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 +/area/almayer/living/captain_mess) +"qVE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qVF" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"qVS" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/conference_room{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qWj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"qWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/laser{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"qWm" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"qWr" = ( -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"qWu" = ( +/area/almayer/squads/delta) +"qWx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "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/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) "qWL" = ( /obj/structure/prop/holidays/string_lights{ pixel_y = 27 @@ -48222,61 +50781,112 @@ /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 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "qWR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"qWT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"qXr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"qXk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"qXo" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc01"; - name = "\improper Treatment Center" +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"qXp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"qXz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) "qXE" = ( /obj/structure/machinery/brig_cell/perma_1{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"qYj" = ( +"qXO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/effect/landmark/map_item{ + layer = 3.03; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qXS" = ( /obj/structure/stairs{ icon_state = "ramptop" }, -/obj/structure/platform{ +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"qXZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qYn" = ( +/area/almayer/hallways/hangar) +"qYd" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"qYq" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"qYr" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/catwalk{ + health = null + }, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"qYu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qYz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "qYC" = ( /obj/structure/disposalpipe/down/almayer{ dir = 4; @@ -48284,14 +50894,28 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"qYI" = ( +"qYG" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/lifeboat) +"qYN" = ( /obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"qYL" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/briefing) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/offices/flight) +"qYQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) "qYZ" = ( /obj/structure/sign/safety/security{ pixel_y = -32 @@ -48302,6 +50926,47 @@ }, /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, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"qZA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"qZF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/door_control{ + id = "perma_lockdown_1"; + name = "\improper Perma Cells Lockdown"; + pixel_x = -8; + pixel_y = -4; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"qZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "qZK" = ( /obj/structure/sign/safety/water{ pixel_x = 8; @@ -48309,51 +50974,51 @@ }, /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/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qZX" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "rae" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"rai" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Officer's Bunks"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, +"raE" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/port_atmos) -"rax" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"ray" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"raH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/hallways/lower/port_fore_hallway) +"raK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"raO" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"raS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/area/almayer/maint/hull/upper/u_f_p) +"rbd" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/item/tool/pen, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) "rbp" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -48361,9 +51026,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"rbu" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) "rby" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Left"; @@ -48374,20 +51036,37 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"rbC" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) +"rbB" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) "rbF" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"rbO" = ( -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering/port) +"rbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"rbK" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) "rbY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -48396,44 +51075,16 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"rcf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"rcw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 6"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"rcx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"rcz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/stamp/ro{ - name = "spare requisitions officer's rubber stamp"; - pixel_x = -7; - pixel_y = 11 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"rcB" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) "rcG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -48441,20 +51092,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"rcT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"rda" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 +"rcH" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) +"rcS" = ( +/obj/structure/machinery/computer/cryopod/eng{ + dir = 8 }, -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "rde" = ( /obj/structure/sign/prop1, /turf/closed/wall/almayer, @@ -48466,18 +51113,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rdk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"rdq" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) "rdt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -48487,145 +51122,208 @@ }, /turf/open/floor/almayer/research/containment/corner4, /area/almayer/medical/containment/cell) +"rdz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "rdA" = ( /obj/structure/sign/safety/maint{ pixel_x = -17; pixel_y = -34 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"rdI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"rdM" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer/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) -"rdX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"rdY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"rdS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/largecrate/random, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"rdT" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_fore_hallway) "rdZ" = ( /turf/open/floor/plating, /area/almayer/command/corporateliaison) -"rer" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) +"rec" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ren" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "reu" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"reX" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/starboard_missiles) +"reH" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"reL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/prison/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/orange, +/area/almayer/maint/upper/mess) +"reN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"rfa" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "rfb" = ( /turf/closed/wall/almayer/research/containment/wall/purple{ dir = 8; icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rfg" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"rfj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"rft" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) "rfB" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"rfD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" +"rfI" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/combat_correspondent) -"rfE" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"rfT" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 }, -/obj/structure/machinery/telecomms/broadcaster/preset_left, -/obj/structure/sign/safety/laser{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"rfU" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"rfW" = ( -/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." +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rfX" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rfY" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"rgk" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_a_s) "rgt" = ( /turf/closed/wall/almayer, /area/almayer/hallways/lower/port_umbilical) -"rgx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) "rgy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"rgH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"rgI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) +"rgK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 5; + pixel_y = 14 + }, +/obj/item/attachable/bayonet{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) "rgL" = ( /turf/open/floor/plating, /area/almayer/maint/upper/u_m_p) @@ -48636,250 +51334,198 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) -"rgU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"rgX" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"rhd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) +"rgW" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/living/briefing) "rhm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"rhn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +"rho" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"rht" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"rhx" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"rhA" = ( +/area/almayer/maint/hull/upper/s_stern) +"rhy" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -2; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) -"rhG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D4"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"rhH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 +"rhD" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"rhO" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "rhQ" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rig" = ( -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -5; - pixel_y = 1 +"rib" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"rik" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"riA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" +/area/almayer/shipboard/brig/perma) +"rir" = ( +/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/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) +/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) -"riM" = ( +"riC" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"riR" = ( -/obj/structure/machinery/cm_vending/clothing/medic/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"riW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"riX" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ - pixel_x = -4; - pixel_y = -4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"riE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = -4 +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"riJ" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"riP" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rewire{ + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"rjw" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"riT" = ( +/obj/structure/machinery/light/small{ dir = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"rjn" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"rjr" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"rjF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rjU" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 +/area/almayer/maint/hull/lower/l_f_s) +"rjG" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rjO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"rkr" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rjV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"rkv" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/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 }, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 }, -/obj/item/tool/soap, /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, +/turf/open/floor/almayer/blue/southeast, /area/almayer/living/port_emb) -"rkx" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = -17 +"rjX" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/bed/sofa/south/grey/left, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"rka" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "rkz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) -"rkC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"rkL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown_1"; - name = "\improper Perma Cells Lockdown"; - pixel_x = -8; - pixel_y = -4; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) "rkV" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -48897,46 +51543,82 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/warden_office) -"rle" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room2"; - name = "\improper Storage Shutters" +"rlc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"rlf" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rlh" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"rlx" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"rll" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"rlB" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/gym) -"rlE" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering) -"rlN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rlD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"rlQ" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rlZ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rmc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) -"rmd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"rmu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"rmf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering/starboard) +"rmk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"rmo" = ( +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, /turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) +/area/almayer/lifeboat_pumps/south2) +"rmx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) "rmz" = ( /obj/structure/sign/safety/conference_room{ pixel_x = 14; @@ -48944,73 +51626,40 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"rmB" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/folded_tent/cmd, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"rmG" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"rmJ" = ( -/obj/structure/disposalpipe/segment{ +"rmD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"rmE" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"rmT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_aft_hallway) -"rmW" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"rmG" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) "rna" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"rnd" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"rno" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/perma) -"rnv" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +"rnF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"rnz" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) "rnH" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -49022,78 +51671,54 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"rnK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"rnM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"rnN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"rnQ" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"rnT" = ( -/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/plate, -/area/almayer/maint/upper/u_m_p) -"rnY" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) "rob" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"rog" = ( -/obj/structure/machinery/cm_vending/gear/engi, +"roj" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rol" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 +/area/almayer/maint/hull/lower/p_bow) +"rou" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/auxiliary_officer_office) -"roy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"roG" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"roz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/hydroponics) -"roF" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/command/cic) -"roM" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"roO" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/area/almayer/shipboard/port_point_defense) +"roH" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Left"; + name = "\improper ARES Operations Shutters" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "roU" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -49101,67 +51726,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rpn" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) "rpp" = ( /obj/effect/landmark/start/executive, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"rpr" = ( -/obj/structure/machinery/light{ +"rpG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"rpt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"rpy" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi" - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"rpX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_m_s) +"rpK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"rpV" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"rpY" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"rqc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"rqb" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "rqj" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -49201,9 +51794,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/mess) -"rqP" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) +"rqE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "rqQ" = ( /obj/structure/machinery/door/poddoor/railing{ id = "vehicle_elevator_railing_aux" @@ -49211,32 +51810,35 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"rqT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"rra" = ( -/obj/structure/platform{ - dir = 8 +"rqS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red{ + pixel_x = -4 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rrr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/item/folder/blue{ + pixel_x = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"rrh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) +/area/almayer/maint/lower/constr) +"rrq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) "rrz" = ( /obj/structure/sign/safety/four{ pixel_x = -17 @@ -49247,6 +51849,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"rrB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) "rrK" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -49272,87 +51880,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"rrP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) "rrU" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"rrW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"rrX" = ( -/obj/structure/disposalpipe/segment, -/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 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"rsd" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"rse" = ( -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/west, -/area/almayer/command/aist_office) -"rsj" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/pilotbunks) -"rsk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, +"rsK" = ( +/obj/structure/sign/safety/hvac_old, +/turf/closed/wall/almayer, /area/almayer/squads/req) -"rsn" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"rsB" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"rsC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"rsL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"rsK" = ( -/obj/structure/sign/safety/hvac_old, -/turf/closed/wall/almayer, -/area/almayer/squads/req) +/area/almayer/hallways/lower/port_aft_hallway) "rsM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49376,15 +51920,34 @@ }, /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/plate, +/area/almayer/maint/hull/lower/l_f_s) "rsV" = ( /obj/structure/machinery/light, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"rsZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) +"rtc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/folder/black{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/device/camera_film{ + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49394,35 +51957,6 @@ "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rti" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"rtp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -6 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"rtt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -49435,32 +51969,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rtE" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"rtH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rtP" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rtS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) "rtV" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox{ @@ -49478,13 +51986,17 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"rue" = ( +"rub" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"ruc" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, /turf/open/floor/almayer/research/containment/floor2/west, /area/almayer/medical/containment/cell) @@ -49497,63 +52009,49 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"ruv" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/port_midship_hallway) -"ruG" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 +"rur" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"ruK" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rux" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"ruz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) "ruL" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop/hangar) -"ruZ" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"rvc" = ( -/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/plate, -/area/almayer/maint/hull/upper/s_bow) -"rvf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) "rvA" = ( /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) -"rvJ" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"rvQ" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"rvI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, +/obj/structure/largecrate/random, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/s_bow) +"rvT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) "rwe" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -49561,18 +52059,11 @@ /obj/structure/sign/safety/bulkhead_door{ pixel_x = -16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"rwk" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_y = 29; - req_access_txt = "28" - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"rwj" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) "rwq" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7; @@ -49584,16 +52075,11 @@ }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"rwr" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"rwA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) +"rwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "rwB" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -49615,6 +52101,11 @@ /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, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "rxl" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/disposal/delivery{ @@ -49637,35 +52128,13 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"rxm" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"rxn" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +"rxq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rxr" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"rxE" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/briefing) -"rxH" = ( -/obj/structure/pipes/vents/scrubber/no_boom{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) -"rxI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/area/almayer/maint/hull/lower/l_m_p) "rxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -49677,66 +52146,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"rxV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"ryh" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) "ryn" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/securestorage) -"ryu" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/obj/item/folder/black_random, -/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 = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ryy" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 +"ryt" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ryG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ryJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ryE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ryH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ryM" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"ryR" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "ryY" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/disposalpipe/down/almayer{ @@ -49745,64 +52175,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"rza" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"rzh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ +"rzk" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"rzs" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plate, +/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) -"rzV" = ( -/obj/structure/machinery/door_control{ - id = "tcomms_apc"; - name = "Telecommuncation Power"; - pixel_x = -25 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"rAa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) +"rzN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"rAb" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/briefing) "rAo" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -49811,27 +52201,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"rAp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"rAt" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) "rAw" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -49846,52 +52215,50 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/lower/l_f_s) -"rAB" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ +"rAx" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "rAC" = ( /obj/docking_port/stationary/emergency_response/external/port5, /turf/open/space/basic, /area/space) -"rAI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rAL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"rAO" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +"rAD" = ( +/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/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"rAN" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/red/southeast, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) +"rAP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) "rAS" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) -"rAW" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ - dir = 8 +"rBa" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) "rBb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -49902,25 +52269,27 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"rBc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) "rBj" = ( /obj/structure/machinery/processor, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rBr" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, +"rBv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) -"rBw" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +"rBx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/stamp/ro{ + name = "spare requisitions officer's rubber stamp"; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"rBD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) "rBY" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -49928,87 +52297,37 @@ /obj/item/tool/soap, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) -"rCg" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"rCp" = ( -/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/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rCq" = ( -/obj/structure/surface/table/reinforced/prison, -/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_four) -"rCr" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) -"rCu" = ( -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/east, -/area/almayer/command/aist_office) -"rCL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ +"rCh" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Combat Information Center" + icon_state = "pipe-c" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"rCM" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 2"; - name = "\improper cell shutter" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rCl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"rCD" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"rCK" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "rCO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rCT" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rCV" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) "rCZ" = ( /obj/docking_port/stationary/escape_pod/east, /turf/open/floor/plating, @@ -50019,39 +52338,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"rDe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 + }, +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/ashtray/plastic{ + pixel_y = -4 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) "rDf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) -"rDh" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"rDs" = ( -/obj/structure/machinery/door_control{ - id = "dccbunk"; - name = "DCC Privacy Shutters"; - pixel_x = 24 +"rDr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"rDt" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rDv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"rDw" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"rDF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/living/offices) +"rDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "rDH" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"rDN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) "rDO" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -50061,6 +52405,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) +"rDQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) "rDR" = ( /obj/structure/machinery/vending/coffee, /obj/item/toy/bikehorn/rubberducky{ @@ -50071,27 +52418,22 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"rDU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) "rDV" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"rDZ" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_m_s) +"rEd" = ( +/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/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "rEf" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -50108,26 +52450,24 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"rEn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"rEp" = ( -/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" +"rEr" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"rEG" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"rEt" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rEv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, /area/almayer/squads/delta) @@ -50144,91 +52484,83 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"rEQ" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"rFh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = -25 - }, -/obj/structure/sign/prop3{ - pixel_x = -32 - }, -/obj/structure/machinery/faxmachine/uscm{ - department = "SEA" +"rEY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/strata/faux_metal, -/area/almayer/shipboard/sea_office) -"rFr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"rFg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"rFv" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/area/almayer/shipboard/brig/chief_mp_office) +"rFs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/black, +/obj/item/tool/pen, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"rFw" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_four) -"rFZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"rGh" = ( +/area/almayer/living/bridgebunks) +"rFy" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/starboard) +"rFH" = ( +/obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"rGj" = ( +/turf/open/floor/almayer/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) -"rGw" = ( +"rGz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"rGE" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/fore_hallway) -"rGJ" = ( -/obj/item/clothing/under/shorts/black, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"rGP" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"rGL" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) "rGU" = ( /obj/structure/machinery/computer/skills{ req_one_access_txt = "200" @@ -50236,37 +52568,31 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"rGX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) "rHc" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) -"rHg" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/lower/port_midship_hallway) -"rHj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light{ - dir = 8 - }, +"rHf" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/area/almayer/squads/alpha_bravo_shared) +"rHo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc01"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "rHq" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -50274,6 +52600,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) +"rHr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rHw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "rHB" = ( /obj/item/ammo_box/magazine/misc/mre/empty{ pixel_x = 8; @@ -50285,77 +52624,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_stern) -"rHF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rHD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command{ + department = "AI Core"; + pixel_y = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/transmitter/rotary{ + name = "AI Core Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Core"; + pixel_x = 8; + pixel_y = -8 }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"rHK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/device/radio/intercom{ + frequency = 1500; + name = "AI Core Intercom"; + pixel_x = 28 }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "rHN" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"rHP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/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" +"rIj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/item/folded_tent/med{ - pixel_x = -8; - pixel_y = 14 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"rIc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"rId" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/obj/structure/machinery/door_control{ + id = "medicalemergency"; + name = "Medbay Lockdown"; + pixel_y = -23; + req_one_access_txt = "2;3;12;19" }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"rIi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rIq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rIr" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/medical/lower_medical_lobby) "rIw" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/lower/s_bow) -"rIC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) +"rID" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) "rIH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -50363,33 +52689,75 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"rIJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) -"rIM" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"rJg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rIO" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rIP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/west, +/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/plate, -/area/almayer/living/grunt_rnr) -"rJo" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) +/area/almayer/maint/hull/lower/l_a_s) +"rIW" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rJf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"rJh" = ( +/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 = 5; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"rJj" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"rJu" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/living/briefing) +"rJx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) "rJD" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -50397,65 +52765,40 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"rJG" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) "rJK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rJT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 +"rKd" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/cic) +"rKn" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + indestructible = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"rKh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"rKj" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"rKt" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"rKm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"rKs" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"rKA" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"rKE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rKK" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/living/auxiliary_officer_office) "rKO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -50465,141 +52808,72 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"rKR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"rKW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rKX" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"rKY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) -"rLf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rLi" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"rLn" = ( -/obj/structure/closet/emcloset, +"rKQ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"rLk" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/engineering/upper_engineering/starboard) "rLp" = ( /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 20 }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"rLq" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) "rLv" = ( /turf/closed/wall/almayer/research/containment/wall/purple{ dir = 4; icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rLx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"rLN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"rLT" = ( +"rLH" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 }, -/obj/item/reagent_container/food/snacks/meatpizzaslice{ - pixel_x = -5; - pixel_y = 7 +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"rLV" = ( /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rMv" = ( +/area/almayer/maint/hull/upper/u_f_p) +"rLK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + pixel_x = -17 }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/engineering/port_atmos) -"rMC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"rMD" = ( -/obj/structure/bed/chair, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"rMG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"rLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) +/area/almayer/living/briefing) +"rLU" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"rMh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"rMj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"rMO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) "rMT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -50633,158 +52907,107 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"rNc" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"rNb" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rNf" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/cic) -"rNY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"rOp" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"rOq" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rOr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"rOI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/machinery/door_control{ + id = "Alpha_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"rOM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rNK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"rOc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"rPa" = ( +/area/almayer/hallways/hangar) +"rOs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"rPi" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"rPj" = ( +/area/almayer/living/bridgebunks) +"rOv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"rOz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"rOC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"rPk" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"rOI" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - pixel_y = 6 + id_tag = "mining_outpost_pump" }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"rOJ" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rPq" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"rPs" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) "rPt" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"rPv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"rPM" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 5"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"rPE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"rPW" = ( -/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"rQa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" +/area/almayer/squads/delta) +"rPF" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"rPO" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"rPQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 - }, -/obj/structure/machinery/door/window/westright{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) "rQc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -50794,10 +53017,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"rQp" = ( -/obj/structure/largecrate/random/case/small, +"rQs" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "rQt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -50805,65 +53030,87 @@ /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/plating/northeast, +/area/almayer/shipboard/panic) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) -"rQD" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +"rQA" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"rQV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"rQJ" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"rRi" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) +"rQW" = ( +/obj/item/tool/screwdriver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "rRq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) -"rRA" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"rRE" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "north_central_checkpoint"; - name = "\improper Checkpoint Shutters" +"rRz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"rRT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"rRU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"rRF" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie_delta_shared) -"rRS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"rSg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/ashtray/glass{ + pixel_x = -6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_x = 7; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_y = 7 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"rSw" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 11 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rSj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) "rSx" = ( /obj/structure/surface/table/almayer, /obj/item/stack/rods/plasteel{ @@ -50876,6 +53123,16 @@ }, /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/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "rSG" = ( /obj/structure/toilet{ pixel_y = 16 @@ -50897,23 +53154,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"rSI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"rSO" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) "rSR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sign/safety/cryo{ @@ -50921,189 +53161,93 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/lower/cryo_cells) -"rST" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rSZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) +"rSW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rTt" = ( -/obj/structure/machinery/light/small{ +"rTA" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"rTN" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rTJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"rTP" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/area/almayer/engineering/upper_engineering/port) +"rTZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"rTQ" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"rUh" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"rUi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"rTX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 5 + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rUc" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/area/almayer/maint/hull/lower/s_bow) "rUk" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"rUn" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "rUq" = ( /obj/effect/landmark/start/nurse, /obj/effect/landmark/late_join/nurse, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"rUz" = ( -/obj/structure/machinery/light{ +"rUy" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"rUE" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/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) -"rVa" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +"rVc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rVl" = ( -/obj/effect/landmark/late_join/aist, -/obj/effect/landmark/start/aist, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, -/area/almayer/command/aist_office) -"rVp" = ( +/area/almayer/maint/hull/lower/l_f_p) +"rVt" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"rVC" = ( +/obj/structure/pipes/vents/pump/on, /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rVv" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"rVA" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/item/book/manual/orbital_cannon_manual, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"rVJ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/hallways/lower/starboard_aft_hallway) +"rVN" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/port_missiles) +"rWb" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"rWa" = ( -/obj/structure/reagent_dispensers/acidtank, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +/area/almayer/maint/hull/upper/u_a_s) "rWn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -51129,9 +53273,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) +"rWy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) "rWz" = ( /turf/open/floor/plating, /area/almayer/maint/upper/u_m_s) +"rWL" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "rWT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -51139,32 +53296,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rWU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"rXd" = ( +/obj/structure/machinery/vending/security, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"rWZ" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"rXb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/area/almayer/shipboard/brig/general_equipment) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -51174,10 +53309,23 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"rXw" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) +"rXk" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"rXq" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"rXv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) "rXE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" @@ -51197,64 +53345,122 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"rXO" = ( -/obj/structure/platform{ +"rXF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"rXH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"rXQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"rXS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"rXU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rYh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"rYi" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rYp" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rYv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/computer/station_alert{ dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"rYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"rYM" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -3; + vector_y = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rYU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"rZt" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"rXP" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 +/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/redcorner/north, -/area/almayer/shipboard/brig/execution) -"rYd" = ( /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/green/west, -/area/almayer/hallways/upper/fore_hallway) -"rYh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"rYF" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"rZc" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"rZo" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"rZB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"rZX" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rZP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) "rZZ" = ( /obj/structure/sign/poster{ desc = "It says DRUG."; @@ -51266,108 +53472,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) -"saa" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) "sab" = ( /obj/effect/landmark/start/doctor, /obj/effect/landmark/late_join/doctor, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"sag" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"sah" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"san" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/item/desk_bell{ - anchored = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/lobby) -"sas" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"saG" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_aft_hallway) -"saT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"saZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"sbb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sbh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"sbr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"sai" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"saL" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"sbs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"sbq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"sbu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"sbt" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"sbv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) "sbE" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; @@ -51386,9 +53525,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"sch" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, +"sbZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/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/plate, /area/almayer/hallways/lower/starboard_umbilical) "sco" = ( @@ -51401,6 +53553,17 @@ /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/cargo, +/area/almayer/engineering/lower/engine_core) "scu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -51411,19 +53574,29 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"scx" = ( -/obj/structure/machinery/light{ - dir = 1 +"scy" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"scF" = ( -/obj/structure/sign/safety/rewire{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"scz" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"scE" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "scH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -51431,6 +53604,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"scN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "scX" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/tray, @@ -51440,72 +53619,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"scZ" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"sdA" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"sdE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"sdH" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"sdI" = ( -/obj/structure/sign/safety/intercom{ - layer = 2.9; - pixel_x = -6; - pixel_y = 29 - }, -/obj/structure/machinery/botany/extractor{ - density = 0; - pixel_x = 15; - pixel_y = 16 +"sdd" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"sdf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/flashlight/pen{ - pixel_x = 14; - pixel_y = 15 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"sdn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/machinery/vending/hydroseeds{ - density = 0; - pixel_x = -7; - pixel_y = 16; - req_access_txt = "28" +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"sec" = ( -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"sdu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"sdv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"sdC" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"sei" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"ses" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sdO" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) "seL" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -51513,78 +53672,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"seR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"sfc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "Telecommunications"; - req_access_txt = "6" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"sfd" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) +"sfz" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) "sfA" = ( /obj/structure/machinery/fuelpump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sfE" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"sfK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"sfM" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"sfP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"sfQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) "sfT" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/port) @@ -51592,245 +53686,294 @@ /obj/structure/machinery/alarm/almayer, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"sfY" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +"sgc" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -7 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"sga" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 10; + pixel_y = -4 }, -/obj/structure/platform{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/sign/safety/storage{ + pixel_x = -24 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "sgi" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/processing) +"sgj" = ( +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"sgm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sgs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"sgD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sgE" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) "sgH" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"sgI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sink{ - pixel_y = 24 +"sgL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"sgM" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"sgR" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "sgU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"sgY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"sgZ" = ( -/turf/open/floor/almayer/no_build/plate, -/area/almayer/living/pilotbunks) "she" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"shg" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 +"shh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"shp" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/obj/item/bedsheet/purple{ - pixel_y = 13 +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) +"shs" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/platform{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"shh" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) "sht" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"shv" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"shE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"shP" = ( +"shC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"shT" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"shL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"sin" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/upper/midship_hallway) +"sir" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"shU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"shZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"sig" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) +/area/almayer/maint/hull/lower/l_f_s) +"sis" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/southeast, +/area/almayer/command/aist_office) "sit" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"six" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"siB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc03"; - name = "\improper Treatment Center" +"siy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"siG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"siz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 8; + pixel_y = -12 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Alamo Remote Control Console"; + pixel_y = 12; + shuttleId = "dropship_alamo" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"siK" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"siC" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"siN" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Nitrogen Control Console" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"siZ" = ( /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/plate, +/area/almayer/engineering/lower) +"siT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"siW" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "sje" = ( /turf/open/floor/almayer/empty/vehicle_bay, /area/almayer/hallways/lower/vehiclehangar) -"sjx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"sjM" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"sjS" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." +"sjj" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = 25 }, -/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 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"sjY" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"skg" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"sjr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D1"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) +"sjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"sjG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"sjM" = ( +/obj/effect/landmark/start/reporter, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "skj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -51838,21 +53981,31 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"skJ" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) +"skl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"skn" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"skC" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"skF" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) "skL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"skM" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "skR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -51872,6 +54025,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"sld" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) "slf" = ( /obj/structure/machinery/brig_cell/cell_6{ pixel_x = 32; @@ -51879,9 +54041,17 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"slj" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/briefing) +"sll" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -3; + vector_y = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "slo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -51895,73 +54065,62 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"sls" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"slE" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"slv" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"slF" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"smi" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"smw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"slI" = ( -/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/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"slQ" = ( -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"slS" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"smd" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/starboard_hallway) -"smo" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space) -"smv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"smA" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/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" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"smU" = ( /turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"smx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"smG" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"smP" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/shipboard/panic) "smW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -51971,13 +54130,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"smY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) "snb" = ( /obj/structure/ladder{ height = 1; @@ -51985,141 +54137,133 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"snp" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"sni" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/command/cic) +"snt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"snw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"snq" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) +/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) -"snK" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"snE" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/surface/table/almayer, -/obj/structure/transmitter/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"snI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 }, -/obj/structure/transmitter/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; - pixel_y = 8 +/obj/structure/transmitter/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"snO" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"sob" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"son" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/red/southeast, -/area/almayer/maint/upper/u_a_p) -"sor" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"sot" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/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/green/west, +/area/almayer/squads/req) +"snN" = ( +/obj/structure/curtain/red, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"soy" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) +/area/almayer/maint/hull/lower/l_a_s) +"snR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"snX" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 16; + pixel_y = 27 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"soq" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"sov" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) "soA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"soC" = ( +"soK" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/o2/empty, +/obj/item/storage/firstaid/rad/empty, +/obj/item/storage/firstaid/toxin/empty, /obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"soF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"soP" = ( +/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/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"soH" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"soX" = ( +/obj/structure/window/reinforced/toughened, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"soP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"soY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"spa" = ( -/obj/item/tool/wirecutters/clippers, +/area/almayer/command/cic) +"spd" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"spr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) +/area/almayer/maint/hull/upper/u_a_p) "spF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -52128,200 +54272,142 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"spG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"spH" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"spL" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"spR" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/area/almayer/engineering/lower) +"spK" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"spX" = ( -/obj/structure/closet/firecloset, +/area/almayer/engineering/upper_engineering/starboard) +"spS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/west, +/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/plate, -/area/almayer/hallways/lower/vehiclehangar) -"sqb" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/area/almayer/maint/hull/lower/l_m_s) +"sqa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +/area/almayer/hallways/hangar) "sqf" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/upper_medical) "sqg" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower) -"sqr" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sqt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"sqF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/bed/chair{ - can_buckle = 0; +"sql" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sqR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"sqS" = ( -/obj/item/storage/fancy/crayons{ - layer = 3.1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"sqV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"sqX" = ( -/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/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"sqY" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"srr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"srx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 1"; - name = "\improper Courtyard Divider" +/area/almayer/shipboard/brig/perma) +"sqo" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"sqW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"srh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) +/area/almayer/hallways/lower/port_umbilical) +"srl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/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) -"srW" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/computer/tech_control{ - pixel_y = 16; - density = 0 - }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"ssb" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"ssn" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +"srR" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"sss" = ( /obj/effect/projector{ name = "Almayer_Up2"; vector_x = -1; vector_y = 100 }, -/turf/open/floor/almayer/no_build, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_fore_hallway) -"ssG" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +"srT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"ssI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/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/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ssQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/maint/hull/lower/l_m_p) +"ssU" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ssW" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "ssX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -52338,67 +54424,34 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"stj" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"stv" = ( +"str" = ( /obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/obj/structure/stairs{ - dir = 1 +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"stA" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"stu" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"stO" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -7 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"stF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Pilot's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"stI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"stQ" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/light, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"stP" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) +/area/almayer/maint/hull/lower/l_f_s) "stR" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -52406,111 +54459,97 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"stW" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"stZ" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge4" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"sug" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"sul" = ( -/obj/structure/machinery/computer/cryopod/eng{ - dir = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +"sub" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) "suy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"suV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"suH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"suX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"sva" = ( -/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/hallways/lower/starboard_midship_hallway) +"suJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/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/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"suY" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "svf" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"svl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "svq" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_s) +"svt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/southwest, +/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) -"svE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"svY" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"swd" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"swl" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null +"svF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"swv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"swn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"swt" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/living/grunt_rnr) "swx" = ( /obj/effect/projector{ name = "Almayer_AresUp"; @@ -52523,91 +54562,100 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"swK" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ +"swE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"swG" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"swS" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/midship_hallway) -"sxd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/upper/u_a_p) +"swH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = 28 }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow, -/area/almayer/command/airoom) -"sxf" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"sxj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"swM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"swN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"sxD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"sxl" = ( -/obj/structure/closet/emcloset/legacy, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) -"sxx" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"sxz" = ( -/obj/structure/girder/displaced, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sxG" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) +/area/almayer/living/bridgebunks) +"sxE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) "sxS" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) -"syj" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"syz" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"syB" = ( +"sxW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"syC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"syg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"syG" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/frag, -/obj/item/mortar_shell/frag, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) +/area/almayer/shipboard/navigation) +"syj" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"syp" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/maint/upper/u_m_p) "syH" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -52617,35 +54665,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"syI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) "syO" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"syP" = ( -/obj/structure/machinery/computer/cameras/almayer/containment{ - dir = 8; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = -5; - pixel_y = -4; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) "szf" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -52660,16 +54683,14 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"szm" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 +"szE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) "szG" = ( /obj/item/stack/sheet/glass/reinforced{ amount = 50 @@ -52684,25 +54705,34 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/warden_office) +"szM" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"szO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "szU" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/numbertwobunks) -"sAt" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"sAv" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +"sAc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "sAw" = ( /obj/structure/disposalpipe/segment, @@ -52711,6 +54741,15 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"sAz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"sAC" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/ce_room) "sAD" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -52719,15 +54758,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) -"sAN" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"sAR" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) "sAS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, @@ -52738,94 +54768,157 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"sBC" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"sBU" = ( -/obj/structure/machinery/computer/telecomms/server, +"sBL" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"sBQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + name = "\improper Brig Cells" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"sBY" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"sCj" = ( -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_m_s) +"sCg" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sCA" = ( +/obj/structure/bed/chair/comfy/delta{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 8; - pixel_y = 6 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sCD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 32; - pixel_y = -22 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"sCq" = ( -/obj/structure/sign/safety/rad_shield{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"sCI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/engine_core) -"sCw" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"sCQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"sCT" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"sCV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/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) -"sDg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sDi" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"sDk" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"sDt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/cryo_cells) +"sDu" = ( +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "sDx" = ( /turf/closed/wall/almayer, /area/almayer/hallways/lower/vehiclehangar) -"sDF" = ( +"sDA" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"sDH" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sDD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"sDM" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"sEd" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"sDJ" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"sEl" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"sEg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_a_s) +"sEi" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"sEp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "sEq" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"sEt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/hangar) "sEu" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -52833,125 +54926,99 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"sEv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sEy" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) +"sEz" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/starboard_hallway) "sEK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"sES" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"sEY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"sFa" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"sEM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = -28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"sFo" = ( -/obj/structure/window/reinforced{ +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"sFI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + layer = 3.3; + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"sFJ" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sER" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"sEZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"sFf" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"sFu" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) +/obj/item/tool/pen, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) "sGh" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"sGk" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "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) -"sGO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 8 +"sGL" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"sGR" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"sGQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) "sGU" = ( /obj/structure/mirror, /turf/closed/wall/almayer, /area/almayer/living/gym) -"sGV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"sGW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Mixed Air Control" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +"sGZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) "sHe" = ( /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/plating, @@ -52981,287 +55048,133 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sHL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"sHR" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"sHT" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"sHU" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/device/multitool{ - pixel_x = 8 - }, -/obj/item/tool/screwdriver{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/machinery/power/apc/almayer{ +"sHx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"sHC" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"sHZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"sId" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"sIe" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"sIm" = ( -/obj/structure/machinery/photocopier{ - density = 0; - layer = 2.9; - pixel_x = -3; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -19; - pixel_y = 5 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"sHI" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"sHM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"sHY" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) "sIr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"sIt" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) "sIu" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/p_bow) -"sIB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sID" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -14; - pixel_y = 28 +"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."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"sIH" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"sIT" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -17; - pixel_y = 6 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/engineering/port_atmos) +"sII" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Stairway Shutters"; + plane = -7 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -9 +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"sIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"sIU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/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) -"sJe" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sJg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"sJh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"sJr" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"sJB" = ( +"sJC" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"sJE" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"sJH" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sJI" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/aluminum{ + amount = 20 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/stack/sheet/copper{ + amount = 20; + pixel_y = 4 }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"sJN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 6 +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_y = 4 }, -/obj/item/storage/box/evidence{ - pixel_x = 1; - pixel_y = 1 +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 4; + pixel_y = 2 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"sJO" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"sJU" = ( -/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/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sJX" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"sJZ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 + icon_state = "S" }, /turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"sKl" = ( -/obj/structure/machinery/light/small{ +/area/almayer/engineering/lower/workshop/hangar) +"sJY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) -"sKo" = ( -/obj/structure/surface/rack, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"sKs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"sKa" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"sKf" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/structure/transmitter{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"sKM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"sKJ" = ( -/obj/structure/platform, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/engineering/lower) "sKY" = ( /obj/structure/bed/chair/office/dark{ dir = 8; @@ -53286,14 +55199,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sLt" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"sLy" = ( -/obj/structure/largecrate/random/case/small, +"sLx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/maint/hull/upper/u_f_p) "sLA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53301,88 +55213,52 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"sLB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/dogtag{ - desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." - }, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"sLT" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"sMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" +"sLX" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"sMu" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "sMM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"sMT" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"sNe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"sNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"sNk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"sNm" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) +"sNz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/hydroponics) -"sNy" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"sNI" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sNL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"sNA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) "sNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -53393,13 +55269,42 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"sNP" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) -"sOp" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +"sOi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"sOt" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "sOv" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -53410,6 +55315,14 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"sOw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"sOx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) "sOy" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -53426,20 +55339,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"sOF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"sOJ" = ( -/obj/structure/ladder{ - height = 1; - id = "engineeringladder" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/workshop) "sOK" = ( /obj/structure/disposalpipe/down/almayer{ dir = 2; @@ -53448,59 +55347,45 @@ }, /turf/closed/wall/almayer/outer, /area/almayer/command/airoom) -"sOM" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"sOP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"sOL" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - name = "\improper Brig Lobby" +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/maint/upper/mess) +"sOZ" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"sOS" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"sPa" = ( +/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/plate, -/area/almayer/command/combat_correspondent) -"sOU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/upper/u_m_s) +"sPb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"sPr" = ( -/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" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"sPc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/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/plate, -/area/almayer/maint/hull/lower/l_m_s) -"sPy" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "sPF" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -53508,283 +55393,109 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"sPL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"sPN" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"sPO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"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) -"sPZ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"sQb" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, -/area/almayer/command/aist_office) -"sQd" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"sQe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"sPJ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /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/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"sQi" = ( -/obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"sQq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 8 - }, -/obj/item/clipboard{ - pixel_x = -8 - }, -/obj/item/folder/white{ - pixel_x = -8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"sQt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sQD" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sQE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"sQH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"sQX" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"sRb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"sRd" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"sRf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"sRA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_umbilical) -"sRH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"sRS" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sQF" = ( /turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"sRT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/shipboard/port_missiles) +"sQO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"sRZ" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 8 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"sSa" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"sSb" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"sSg" = ( -/obj/structure/bed/chair/comfy/bravo{ +/area/almayer/squads/req) +"sSc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"sSj" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sSh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"sSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"sSC" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/squads/delta) +"sSG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 }, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"sSo" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"sSF" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"sSJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"sSO" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sST" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"sSU" = ( -/obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/transmitter/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) +/area/almayer/command/cic) +"sTd" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "sTm" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"sTo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) "sTw" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"sTF" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/orange, -/area/almayer/maint/hull/lower/l_m_s) -"sTH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"sTO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) "sTU" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -53799,6 +55510,26 @@ }, /turf/open/floor/plating, /area/almayer/command/airoom) +"sUg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"sUi" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"sUj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) "sUk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53818,42 +55549,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"sUu" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"sUD" = ( -/obj/structure/machinery/light{ +"sUE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"sUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"sUP" = ( -/obj/structure/bed/chair/comfy/bravo{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/arcturianstopsign{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sUQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"sUR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "sUS" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -53862,141 +55574,182 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"sUX" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"sVF" = ( -/obj/structure/machinery/power/apc/almayer{ +"sVc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"sVv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"sVT" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/ce_room) -"sVN" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "sVV" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/starboard) -"sWh" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"sWb" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"sWp" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"sWv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, /turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) +/area/almayer/maint/hull/upper/u_a_s) "sWw" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"sWy" = ( -/obj/structure/bed/chair{ +"sWC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"sWA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"sWD" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sWI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"sXm" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"sXn" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/almayer/engineering/upper_engineering/port) +"sWW" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 3"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"sXd" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) "sXq" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) +"sXt" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) "sXw" = ( /obj/effect/landmark/start/marine/engineer/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"sXS" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"sXU" = ( -/obj/structure/machinery/light{ - dir = 1 +"sXB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sXV" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"sYm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"sYq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sXC" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"sYv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"sXE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"sXQ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"sYA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/green/northeast, +/area/almayer/shipboard/brig/cells) +"sYh" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"sYl" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - dir = 1; - name = "\improper Warden's Office" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/shipboard/brig/medical) +"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/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"sYC" = ( -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 +/area/almayer/hallways/lower/port_umbilical) +"sYw" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"sYD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"sYP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) "sYT" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -54006,6 +55759,15 @@ /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"sYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) "sZc" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -54013,72 +55775,79 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"sZt" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"sZe" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sZq" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"sZs" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"sZy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"sZu" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"sZF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = -16 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"sZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"sZP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"sZR" = ( -/obj/structure/platform{ - dir = 4 +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) "sZY" = ( /obj/structure/blocker/fuelpump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"tah" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"tab" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "tan" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -54090,39 +55859,39 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"taw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"taD" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"tau" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + dir = 2; + name = "\improper Brig Permanent Confinement" }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/pilotbunks) -"taF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/workshop) -"taI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"tbh" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/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"; + locked = 1; + name = "\improper Containment Cell 2" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 2"; + name = "\improper Containment Cell 2" }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"tbo" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -54130,54 +55899,22 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"tbs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"tby" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"tbF" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"taV" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"tbP" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tbS" = ( -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/starboard) "tcd" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio{ @@ -54186,21 +55923,13 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"tco" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tcA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tcm" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"tcF" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/starboard_missiles) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "tcO" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_a_p) @@ -54210,19 +55939,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"tde" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +"tcZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"tdh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"tda" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/morgue) +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"tdc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "tdi" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -54231,72 +55977,66 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"tdz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tdK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"tdv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 +/obj/structure/machinery/computer/working_joe{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"tdS" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"tdy" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"tdE" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"tdH" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tdI" = ( +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"tel" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"teq" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"teg" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"teo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "ter" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -54306,24 +56046,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"tew" = ( -/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/plate, -/area/almayer/maint/upper/u_f_p) -"tey" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "tez" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, @@ -54338,97 +56060,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"teJ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"teL" = ( -/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/aicore/no_build/white/ai_silver/west, -/area/almayer/command/aist_office) -"teN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"teS" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"teY" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"teT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/area/almayer/command/cic) +"teZ" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"tfb" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"tff" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"tfE" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"teU" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, +/obj/item/storage/firstaid/regular, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"tfm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/brig/execution_storage) +"tfF" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/midship_hallway) +"tfH" = ( +/obj/structure/machinery/light/containment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/research/containment/floor2/north, +/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) -"tfR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) -"tfU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 +"tfZ" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -7; + pixel_y = 17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/sign/safety/cryo{ + pixel_x = 12; + pixel_y = 28 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - name = "\improper Tool Closet" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"tge" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"tgj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"tgk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "tgm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -54436,16 +56134,17 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"tgq" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 +"tgy" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/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/silver/north, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) "tgz" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_y = -32 @@ -54456,80 +56155,29 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"tgA" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) "tgJ" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/warden_office) -"tgS" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"tgU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"tgY" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"tgZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"thj" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/fridge/groceries/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"thm" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"thn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"tgV" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"thc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) "thq" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -54543,38 +56191,50 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"thw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"thv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"thz" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"thA" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"thC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES AIST"; + name = "Privacy Shutters"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "31;92" + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"thS" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"thY" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) +"thN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/hydroponics) +"thP" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"thV" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"tie" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/red/southeast, +/area/almayer/maint/upper/u_a_p) "tig" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -54583,59 +56243,68 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tih" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +"tii" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tin" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/structure/transmitter{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"tio" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"tix" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"tim" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"tiC" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "tiE" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/req) -"tiM" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +"tiF" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/chief_mp_office) +"tiI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/syringes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"tiK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"tiR" = ( +/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/test_floor4, +/area/almayer/shipboard/weapon_room) +"tiW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"tiN" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) +/area/almayer/lifeboat_pumps/south1) "tiX" = ( /obj/item/reagent_container/glass/bucket/janibucket{ pixel_x = -1; @@ -54643,26 +56312,28 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"tjk" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"tjv" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge3" +"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/sign/safety/ladder{ - pixel_x = 24; - pixel_y = -32 +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) +/area/almayer/maint/hull/upper/u_a_p) +"tjj" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"tjl" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"tjn" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "tjw" = ( /obj/structure/machinery/cm_vending/clothing/vehicle_crew{ density = 0; @@ -54670,48 +56341,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"tjI" = ( -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/chief_mp_office) -"tjL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"tjN" = ( -/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/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"tjV" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) +"tjH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tjO" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/lower/l_m_s) "tkd" = ( /obj/structure/sign/safety/escapepod{ pixel_y = -32 @@ -54722,38 +56361,56 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"tkh" = ( +"tkg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"tkn" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "tkq" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"tkL" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red/north, -/area/almayer/living/cryo_cells) -"tkV" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +"tkF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"tkN" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0 }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"tkZ" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"tlf" = ( +/area/almayer/squads/alpha_bravo_shared) +"tkR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"tld" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) "tlk" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -54761,85 +56418,75 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) -"tlw" = ( -/obj/structure/platform_decoration{ - dir = 1 +"tln" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tly" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"tlJ" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -25 +/area/almayer/living/briefing) +"tlp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"tlK" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"tmk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 4"; + name = "\improper Courtyard Divider" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"tlA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tlM" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/maint/upper/u_a_s) +"tmg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "tml" = ( /obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"tmw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) "tmB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tmC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) "tmE" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"tmO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ +"tmH" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - name = "Normandy Remote Control Console"; - shuttleId = "dropship_normandy" + name = "ship-grade camera"; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tmP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/execution) "tmQ" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -54859,81 +56506,127 @@ /obj/effect/landmark/late_join/cmo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"tnJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer{ - pixel_x = 2; - pixel_y = 3 +"tnb" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer/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/mono, -/area/almayer/medical/medical_science) -"tnK" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tni" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"tnY" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "tob" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_s) -"tod" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/command/lifeboat) "tof" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) -"tog" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 +"tos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/engineering/lower/engine_core) +"tot" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"tou" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) "tov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"toL" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"toN" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/port) -"toW" = ( +"toD" = ( +/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/plate, +/area/almayer/maint/hull/upper/u_a_p) +"toO" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/obj/item/folder/black_random, +/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 = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/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/structure/machinery/light{ - dir = 4 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"toS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"tpb" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/view_objectives{ - dir = 4 +/obj/item/desk_bell{ + pixel_x = -6; + pixel_y = 10; + anchored = 1 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"tpa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) "tpd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -54943,43 +56636,31 @@ "tpn" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) -"tpp" = ( -/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/plate, -/area/almayer/maint/hull/lower/stern) -"tpq" = ( -/obj/structure/machinery/brig_cell/cell_1{ - pixel_x = 32; - pixel_y = -32 +"tpB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"tpu" = ( -/turf/open/floor/almayer/orange, -/area/almayer/command/cic) -"tpK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"tpM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/obj/structure/machinery/optable, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"tpD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"tpG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) "tpR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -54995,31 +56676,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"tqg" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"tqj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"tqn" = ( -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) "tqu" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -55030,92 +56686,103 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"tqC" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 +"tqE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tqO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tqH" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"tqQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"tqJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"tqU" = ( -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"tqY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/plating/northeast, +/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/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/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) "trb" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/south1) -"trc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"trh" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower) +"tru" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"trx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"trB" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"trF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"trl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/firstaid/o2{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"trz" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer3" +/obj/item/storage/firstaid/fire{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"trA" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"trG" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/item/storage/firstaid/adv{ + pixel_x = -6; + pixel_y = -2 }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) -"trO" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) "trU" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen/blue/clicky{ @@ -55139,14 +56806,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"trV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) "tsa" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/chef/classic, @@ -55160,83 +56819,77 @@ "tsr" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/upper/mess) -"tsv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +"tst" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"tsy" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"tsC" = ( +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/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) -"tsT" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"tsM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) "tsX" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/lobby) +"ttd" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) "tte" = ( /obj/structure/pipes/vents/pump/no_boom{ welded = 1 }, /turf/open/floor/plating, /area/almayer/powered/agent) -"ttk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"ttl" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/briefing) -"ttu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ttz" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/port) "ttB" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"ttC" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"ttL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"ttP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, +"ttD" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/area/almayer/maint/hull/lower/l_m_p) "ttS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -55246,102 +56899,94 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"ttZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"ttX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"tub" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/box/drinkingglasses{ + pixel_x = -7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 }, -/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"tui" = ( -/obj/structure/machinery/power/apc/almayer{ +/area/almayer/command/corporateliaison) +"tuf" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/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 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"tuk" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"tul" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 +/obj/structure/closet/secure_closet/brig/prison_uni, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"tuo" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tup" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"tur" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ - dir = 2 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "tuA" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_missiles) -"tuH" = ( -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = -1; - pixel_y = 8 +"tuC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"tuI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"tuQ" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"tuS" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/command/cic) +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tuN" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) "tuX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) -"tvh" = ( -/obj/item/storage/box/matches{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +"tuZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) "tvl" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; @@ -55353,11 +56998,12 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/maint/hull/upper/u_f_s) -"tvy" = ( -/obj/structure/machinery/computer/orbital_cannon_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) +"tvw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "tvA" = ( /obj/structure/sign/safety/water{ pixel_x = 8; @@ -55365,28 +57011,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"twg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"tvJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/starboard_hallway) +"tvM" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 4; - c_tag = "AI - Primary Processors"; - autoname = 0 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tvN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"twj" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"tvQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "twp" = ( /obj/structure/ladder{ height = 1; @@ -55398,10 +57052,29 @@ }, /turf/open/floor/plating/almayer, /area/almayer/maint/hull/lower/l_a_s) -"twt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) +"twB" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"twI" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = 18; + req_access_txt = "31" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) "twQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -55434,10 +57107,6 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"txw" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) "txy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -55446,19 +57115,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"txC" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"tya" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0 +"txE" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"txH" = ( +/obj/structure/bed/stool, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) +/area/almayer/maint/hull/lower/l_m_s) +"txO" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/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/cargo, +/area/almayer/engineering/lower/engine_core) "tyb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55468,43 +57157,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"tyi" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = -25 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/autoinjectors{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/storage/box/beakers{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/storage/box/sprays{ - pixel_y = -3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"tyI" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"tyC" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"tzc" = ( -/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/green, +/area/almayer/hallways/upper/fore_hallway) +"tyD" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"tyK" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/starboard_missiles) "tzd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -55512,132 +57181,105 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"tzh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) "tzw" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) -"tzR" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"tzU" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tzW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"tzY" = ( -/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/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"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) -"tAd" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"tAg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "Storage"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"tAi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/hydroponics) -"tAk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"tAl" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"tAr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, +"tzx" = ( /obj/structure/machinery/light{ - dir = 1 + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"tAA" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"tzF" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"tzL" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"tAI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"tzO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"tzP" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/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 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"tAq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -5 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"tAP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 +/obj/item/clothing/head/helmet/space/compression/uscm, +/obj/item/cell/crap{ + pixel_x = 7 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"tAt" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"tAV" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "returns outlet"; + pixel_y = 28; + range = 0; + pixel_x = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"tAL" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"tAN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"tAU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) "tAW" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -55649,146 +57291,133 @@ /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"tBO" = ( +"tBu" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tBP" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"tCa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"tBU" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/sign/safety/life_support{ + pixel_x = 32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"tCi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tBY" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering/starboard) -"tCm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/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/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"tCv" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Stairway Shutters"; - plane = -7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tCx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"tCB" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/navigation) -"tCL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"tCH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tDe" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_f_p) -"tDk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"tDm" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tDE" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"tDX" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; dir = 2; - icon_state = "pipe-c" + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"tCT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"tEf" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tDZ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"tEn" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"tEo" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"tEd" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"tEi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = 27; + req_one_access_txt = "4;28" }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"tEt" = ( -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"tEM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"tEu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tEB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"tEC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "tEO" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, @@ -55798,48 +57427,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"tFf" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"tFn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"tFs" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 +"tFe" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"tFJ" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"tFP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +/area/almayer/maint/upper/u_a_p) +"tFO" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"tFS" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"tFW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) +/area/almayer/lifeboat_pumps/south1) +"tGd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_20" + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"tGh" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) "tGi" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"tGq" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"tGA" = ( +"tGj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"tGG" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) "tGH" = ( /obj/structure/sign/safety/restrictedarea, /obj/structure/sign/safety/security{ @@ -55847,14 +57501,12 @@ }, /turf/closed/wall/almayer, /area/almayer/shipboard/panic) -"tGO" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"tGS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) "tGT" = ( /obj/structure/machinery/light{ dir = 1 @@ -55873,12 +57525,28 @@ /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"tHt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tHr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) +/obj/item/pizzabox/mushroom{ + pixel_y = 11 + }, +/obj/item/poster, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"tHu" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"tHv" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/living/briefing) +"tHF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) "tHQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -55891,57 +57559,46 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"tHV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"tId" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"tIe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"tIl" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"tIp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"tHZ" = ( /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/orange/east, -/area/almayer/hallways/upper/midship_hallway) -"tIj" = ( -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_x = 27 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tIJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"tIu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"tIF" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/lower/l_a_s) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -55961,176 +57618,162 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) +"tIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "tIS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tJa" = ( +"tIX" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"tJc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"tJj" = ( -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, +/obj/item/storage/firstaid/regular, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"tJk" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) +/area/almayer/maint/hull/upper/u_f_p) +"tJi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"tJm" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) "tJq" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_s) -"tJs" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"tJu" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) "tJz" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"tJR" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/sign/safety/medical{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tJS" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"tKM" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"tKT" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tKW" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +/area/almayer/squads/charlie_delta_shared) +"tJR" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/sign/safety/medical{ + pixel_x = -17 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tLs" = ( -/obj/structure/morgue/crematorium, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"tLw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tJV" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"tLE" = ( -/obj/structure/closet/secure_closet/fridge/dry, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) -"tLO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"tKr" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"tLa" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"tMA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"tMO" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "firearm_storage_armory"; + name = "\improper Armory Shutters" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"tLc" = ( /obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"tMR" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tNc" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/item/storage/bag/plants{ + pixel_x = -3 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"tNe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"tNf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Tanker Quarters"; - req_one_access_txt = "19;27" +/obj/item/storage/bag/plants{ + pixel_x = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/tankerbunks) -"tNi" = ( +/obj/item/storage/bag/plants{ + pixel_y = -3 + }, +/obj/item/tool/scythe, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tLZ" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tMc" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"tMi" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"tNE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"tMU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"tNF" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tMW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tNB" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"tNP" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "tNR" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -56140,33 +57783,31 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tNT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"tOk" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or04"; - name = "Operating Theatre 4" +"tNY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"tOr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"tOu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_four) -"tOF" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-1"; - req_access = null +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"tOC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "tON" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; @@ -56174,21 +57815,9 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"tOP" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tOY" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) +"tOW" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) "tPc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -56200,46 +57829,41 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"tPE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"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" }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"tPI" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"tPM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tPX" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tPZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tPm" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"tPI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) "tQd" = ( /obj/structure/machinery/light{ dir = 8 @@ -56249,9 +57873,13 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tQh" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) +"tQe" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) "tQi" = ( /obj/effect/landmark/start/warrant, /obj/effect/decal/warning_stripes{ @@ -56260,104 +57888,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"tQs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"tQB" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"tQC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"tQE" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) "tQL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"tQT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) "tQV" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south1) -"tQX" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tRd" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"tRi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"tRE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - dir = 2; - name = "\improper Brig Lobby" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"tRL" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"tRU" = ( +"tRs" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/frame/light_fixture, +/obj/item/frame/light_fixture, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"tRD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"tSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) "tSm" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldingtool{ @@ -56377,82 +57929,52 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tSv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, +"tSB" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/living/briefing) +"tSF" = ( +/obj/structure/bed/chair/comfy/delta, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"tSJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - closeOtherId = "brigmed"; - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"tSN" = ( +/area/almayer/living/briefing) +"tSX" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 6; +/obj/item/weapon/gun/rifle/l42a{ pixel_y = 6 }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -8; - pixel_y = -1 - }, +/obj/item/weapon/gun/rifle/l42a, /turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"tST" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tTc" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) +/area/almayer/maint/upper/u_m_s) "tTk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"tTo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"tTB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"tTp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tTu" = ( +/turf/open/floor/almayer/red/southeast, +/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, +/obj/item/storage/box/uscm_mre, +/obj/item/book/manual/chef_recipes, +/obj/structure/sign/safety/coffee{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "tTG" = ( /obj/structure/sign/safety/terminal{ pixel_x = 8; @@ -56460,23 +57982,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"tTM" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"tTT" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) -"tTU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) +"tTO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) "tTZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -56498,113 +58007,140 @@ "tUx" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"tUE" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer1" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"tUF" = ( -/obj/structure/machinery/light{ - dir = 8 +"tUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"tUZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"tUN" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; dir = 1; - id_tag = "or03"; - name = "Operating Theatre 3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + req_one_access = null; + req_one_access_txt = "35" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_three) +/area/almayer/engineering/lower/workshop/hangar) +"tUS" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/holohoop{ + density = 0; + pixel_y = 29 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tVh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) "tVn" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) -"tVx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tWa" = ( +"tVq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/transmitter/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"tVx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"tWb" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tVZ" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) "tWd" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"tWe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; - icon_state = "HotlineAlt"; - layer = 2.9; - name = "Richard the tiger" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) "tWi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tWC" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"tWU" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 1 +"tWl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"tWZ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"tWp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/maint/upper/mess) +"tWL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"tWY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper CMO's Office"; + req_one_access = null; + req_one_access_txt = "1;5" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"tXa" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/upper/u_m_s) +"tXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "tXc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -56615,13 +58151,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"tXf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) "tXi" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_2"; @@ -56629,149 +58158,138 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"tXm" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tXq" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"tXj" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tXn" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"tXG" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"tXK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/lower/l_a_s) +"tXo" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/hallways/lower/starboard_midship_hallway) "tXM" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"tXS" = ( -/obj/structure/machinery/light{ - dir = 1 +"tXT" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"tXX" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"tYe" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = list(); - req_access_txt = "26" +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"tYk" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"tYn" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"tYI" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/offices) +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tYr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tYw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) "tYM" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"tYQ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) "tYV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"tZa" = ( -/obj/structure/girder, +"tYX" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"tZc" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tZd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"tZk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"tZm" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/shipboard/port_point_defense) +"tZg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"tZw" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"tZB" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tZP" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"tZZ" = ( +/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"tZS" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) "uac" = ( /obj/structure/machinery/light{ dir = 1 @@ -56780,36 +58298,50 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uap" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 3"; - locked = 1; - name = "\improper Containment Cell 3"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 3"; - name = "\improper Containment Cell 3" +"uag" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"uah" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"ual" = ( +/obj/structure/sink{ + pixel_y = 24 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) +"uay" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"uaA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/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{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "uaU" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -56834,12 +58366,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"ubz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) "ubA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -56847,34 +58373,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"ubF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/ashtray/glass{ - pixel_x = -6 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_y = 7 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "ubI" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random{ @@ -56915,33 +58413,26 @@ }, /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_a_p) -"ucD" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"ucZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"ucz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/machinery/light, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"udd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "udf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -56959,116 +58450,97 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"udn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"udz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"udF" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"udI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"udi" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"udr" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"udO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"udP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"udT" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"udv" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"udx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"udG" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"udW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/squads/alpha) +"udK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"udR" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) "udZ" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"ueb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Kitchen Hydroponics"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"uet" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"uew" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"uez" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"ueA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +"ued" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"ueE" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"uek" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n117{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uew" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"uey" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"uez" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "ueG" = ( /obj/item/bedsheet/orange, /obj/structure/bed{ @@ -57082,10 +58554,25 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"ueJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "ueY" = ( /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) +"ueZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) "ufh" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -57093,72 +58580,90 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"uft" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"ufP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"ufx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"ufS" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ufJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"ugh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ufL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"ugj" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"ugo" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "ugu" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, /area/almayer/living/briefing) -"ugK" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"ugO" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer6" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"uhd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/obj/structure/machinery/light{ +"ugw" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"uhe" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"ugJ" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"ugZ" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) -"uhm" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"uhu" = ( -/obj/item/stack/tile/carpet{ - amount = 20 +"uhh" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_f_p) +"uhl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/living/offices) +"uhq" = ( +/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/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uhA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "uhE" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /turf/open/floor/plating/plating_catwalk, @@ -57169,96 +58674,68 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"uio" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uit" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/squads/alpha) -"uiw" = ( -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"uiO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"uiP" = ( +"uhP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) -"uiU" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"ujw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "SW-out" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/donut_box, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"uig" = ( +/obj/structure/largecrate/supply/floodlights, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"ujI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/lobby) -"ujS" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/maint/upper/u_m_p) +"uiC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"uiG" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"uiK" = ( +/obj/item/ammo_box/magazine/misc/mre, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"uke" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"ukl" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/hull/upper/p_stern) +"uiR" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"ukm" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/starboard) +"uiT" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"uiZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ukt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"ujn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"ujz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ujV" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "uky" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -57266,16 +58743,14 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_umbilical) -"ukB" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"ukH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) +"ukC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"ukP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "ukV" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /obj/structure/machinery/light{ @@ -57283,13 +58758,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ulh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) "uli" = ( /turf/open/floor/grass, /area/almayer/living/starboard_garden) @@ -57305,21 +58773,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"ulw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"ulF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc02"; - name = "\improper Treatment Center" +"ulp" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uly" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) "ulH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -57330,42 +58795,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) -"ulJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/starboard_umbilical) -"ulK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"ulO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"ulY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) -"uma" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/he, -/obj/item/mortar_shell/he, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"umf" = ( -/obj/structure/disposalpipe/segment, +"ulZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"umh" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "umk" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -57375,44 +58814,27 @@ /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"umz" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/engineering/port_atmos) -"umB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"umH" = ( +"umm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"umy" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"umK" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"umR" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"umV" = ( -/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 + dir = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"umI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"umS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) "umW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -57425,87 +58847,77 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"unc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"unh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 16 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"uns" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/carrotseed, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"und" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/turf/open/floor/almayer/green/northwest, +/area/almayer/shipboard/brig/cells) +"unx" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"unQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"uni" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"unm" = ( -/obj/structure/machinery/power/apc/almayer{ +/area/almayer/maint/hull/upper/u_a_p) +"unT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"unZ" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"unu" = ( -/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uoi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"uoj" = ( +/obj/item/tool/pen, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"unR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"uog" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"uor" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"uov" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) +/area/almayer/maint/hull/lower/l_a_s) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"uoD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"uoM" = ( -/obj/structure/disposalpipe/segment{ +"uoH" = ( +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "pipe-c" + pixel_y = -28 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "uoO" = ( /obj/structure/sign/safety/water{ pixel_x = 8; @@ -57513,32 +58925,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/p_bow) -"uoT" = ( +"upM" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"upO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"upR" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"upq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"upy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/north, +/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) -"upU" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) "upW" = ( /obj/structure/sign/safety/intercom{ pixel_x = 8; @@ -57546,6 +58956,34 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) +"uqd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 1"; + name = "Containment Lockdown"; + pixel_x = -7; + pixel_y = 1; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_display/research_cell{ + id = "Containment Cell 1"; + name = "Cell 1 Control"; + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "uqg" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -57565,128 +59003,92 @@ "uqo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"uqF" = ( -/obj/structure/machinery/light{ - dir = 8 +"uqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41a{ + pixel_y = 6 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"uqA" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) "uqI" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uqZ" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, +"urk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"ure" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/starboard_umbilical) +"ury" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/midship_hallway) -"urn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"urq" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"urM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"urK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) "urN" = ( /obj/effect/landmark/start/marine/leader/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"urQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"urW" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/lower/port_midship_hallway) -"urZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"usa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_2"; - name = "\improper Bathroom" +"usm" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"usq" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"usd" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"usx" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"usE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/plate, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/panic) -"usT" = ( +"usu" = ( /obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/cups, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"usU" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/upper/u_f_s) +"usy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "usX" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -57695,88 +59097,48 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"uth" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = 3; - vector_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES AIST"; - name = "Privacy Shutters"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "31;92" +"usZ" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"utn" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uto" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) -"utk" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/storage{ - pixel_x = 33; - pixel_y = -1 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) "utp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_f_s) -"utA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"utE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"utK" = ( +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"utG" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"utP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/briefing) +/area/almayer/living/auxiliary_officer_office) "utX" = ( /turf/closed/wall/almayer/research/containment/wall/connect_e2{ icon_state = "containment_wall_connect_e" }, /area/almayer/medical/containment/cell) -"uua" = ( -/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/plate, -/area/almayer/hallways/lower/vehiclehangar) +"utZ" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) "uuj" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -57788,31 +59150,22 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uuq" = ( -/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/structure/sign/safety/suit_storage{ - pixel_x = 32 +"uul" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"uus" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"uun" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "uuu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -57836,13 +59189,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uuz" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 +"uux" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-1"; + req_access = null }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"uuD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"uuI" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) "uuR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -57866,112 +59232,84 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uuW" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"uuT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"uvh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"uuY" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) -"uve" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"uvg" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"uvl" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "tcomms_apc"; - name = "\improper Telecommunications Power Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"uvL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/area/almayer/hallways/lower/starboard_aft_hallway) +"uvp" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"uvM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"uvV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/maint/hull/upper/s_bow) +"uvt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"uvu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"uwi" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"uwj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"uvP" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"uwm" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"uvU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item{ + pixel_x = 5 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 +/obj/item/facepaint/black{ + pixel_x = -10 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"uwo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/almayer/living/briefing) +"uvY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"uws" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"uwt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "uwv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room/notunnel) -"uwx" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_x = -16 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"uwC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) "uwN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57981,21 +59319,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"uwO" = ( -/obj/structure/surface/rack, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"uwY" = ( +"uwZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) "uxa" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -58008,73 +59338,32 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"uxf" = ( +"uxl" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"uxp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out" }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"uxi" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"uxj" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"uxA" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) "uxC" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"uxD" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"uxG" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "uxO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -58098,38 +59387,20 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uxR" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) "uxX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"uye" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uyj" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"uyn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"uyd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"uyp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "W" }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) "uys" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/squads/req) @@ -58140,43 +59411,12 @@ "uyH" = ( /turf/closed/wall/almayer/research/containment/wall/divide, /area/almayer/medical/containment/cell) -"uyW" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"uyX" = ( -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17; - pixel_y = -7 - }, -/obj/structure/medical_supply_link, -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"uze" = ( -/obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"uzg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "officers_mess"; - name = "Privacy Shutters"; - pixel_y = -19 +"uyQ" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, /turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"uzp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) +/area/almayer/maint/upper/u_a_s) "uzv" = ( /obj/structure/bed/chair{ dir = 8; @@ -58189,17 +59429,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uzC" = ( -/obj/structure/machinery/chem_storage/medbay{ - dir = 1 - }, -/obj/structure/machinery/chem_storage/research{ - dir = 1; - layer = 3; - pixel_y = 18 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) "uzE" = ( /obj/structure/bed/chair{ dir = 8 @@ -58209,111 +59438,81 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"uzK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/candle_box, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"uzN" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"uzQ" = ( -/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/plate, -/area/almayer/hallways/lower/port_umbilical) -"uzW" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"uzZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) "uAb" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uAg" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +"uAj" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"uAl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"uAh" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"uAC" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"uAp" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"uAs" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"uAA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/terminal{ - pixel_x = -18; - pixel_y = -8 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = -18; - pixel_y = 6 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"uAD" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, -/area/almayer/command/aist_office) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"uAK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower/engine_core) "uAL" = ( /obj/structure/bed/chair/wood/normal, /obj/item/bedsheet/brown, /obj/item/toy/plush/farwa, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uAV" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"uBd" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"uAP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"uAW" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "uBi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -58354,11 +59553,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"uBz" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +"uBG" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) "uBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -58387,12 +59586,25 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"uCe" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"uCs" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/lifeboat) +"uCh" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green/southeast, +/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/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) "uCw" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_container/food/snacks/tomatomeat, @@ -58400,50 +59612,22 @@ /obj/item/reagent_container/food/snacks/tomatomeat, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"uCz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uCA" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/sign/safety/terminal{ - pixel_x = -6; - pixel_y = -26 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 20; - pixel_y = -26 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"uCC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 +"uCM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uCE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) "uCR" = ( /obj/item/tool/warning_cone{ pixel_y = 13 @@ -58457,55 +59641,29 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"uDf" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) "uDg" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/s_bow) -"uDv" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/chemistry) -"uDM" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +"uDn" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" }, -/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, -/area/almayer/command/aist_office) -"uDP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"uDA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"uEo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"uED" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 + dir = 9 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"uEG" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"uDW" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "uEO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -58513,41 +59671,57 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"uEP" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"uFb" = ( +"uES" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"uFc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/obj/structure/machinery/recharge_station{ + layer = 2.9 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"uFf" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"uFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "uFg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"uFo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"uFp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) "uFq" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -58559,209 +59733,146 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) "uFr" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 +/obj/structure/surface/table/reinforced/almayer_B{ + climbable = 0; + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"uFt" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"uFC" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/machinery/computer/cameras/almayer/ares{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/machinery/computer/cameras/almayer{ + pixel_y = 6; + pixel_x = 28 + }, +/obj/structure/machinery/computer/view_objectives{ + pixel_x = 12; + pixel_y = 6 + }, +/obj/item/device/radio/intercom{ + frequency = 1500; + name = "AI Core Intercom"; + pixel_y = 32 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 32; + pixel_x = 14 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, +/area/almayer/command/aist_office) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"uFQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"uGa" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"uGy" = ( -/obj/structure/sign/safety/security{ +"uGc" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"uGz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"uGA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 }, +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uGF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) -"uGN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"uHa" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"uHv" = ( -/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" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"uHD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"uHG" = ( -/obj/structure/bed/chair/comfy/charlie{ +"uGf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"uHK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/whistle{ - pixel_y = 4 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"uGi" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"uHN" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"uId" = ( /turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"uIi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"uIA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, +/area/almayer/hallways/lower/starboard_umbilical) +"uGN" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uII" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uIN" = ( -/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/test_floor4, -/area/almayer/maint/upper/mess) -"uIP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"uIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4; - pixel_y = -3 - }, +/area/almayer/shipboard/brig/general_equipment) +"uGQ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"uJc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"uJf" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"uJg" = ( -/obj/structure/surface/table/reinforced/almayer_B, +/area/almayer/engineering/upper_engineering/starboard) +"uGU" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/tarbacks, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = -4; - pixel_y = 12 + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"uJh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/area/almayer/maint/hull/lower/l_f_p) +"uHk" = ( +/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/plate, -/area/almayer/living/pilotbunks) -"uJs" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +/area/almayer/maint/lower/cryo_cells) +"uHr" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"uHT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"uIv" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"uIA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"uII" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uJx" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"uJG" = ( -/obj/structure/machinery/light/small{ +"uIJ" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"uIT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/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 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"uJI" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/hallways/lower/port_umbilical) +"uJk" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) "uJM" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; @@ -58769,92 +59880,43 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"uJW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_y = 5 +"uJU" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"uJX" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"uKb" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"uKf" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"uKd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"uKe" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"uKi" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/almayer/plate, /area/almayer/living/gym) +"uKl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "uKH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"uKL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/reagent_container/food/snacks/cheesewedge{ - pixel_x = -10; - pixel_y = 7 - }, -/mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"uKR" = ( -/obj/structure/reagent_dispensers/ammoniatank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"uKT" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/orangeseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"uKU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/marine, -/obj/item/clothing/accessory/storage/surg_vest, -/obj/item/tool/portadialysis, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) "uKV" = ( /obj/structure/sign/safety/storage{ pixel_x = 32; @@ -58870,22 +59932,19 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"uLo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"uLq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"uLE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"uLG" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"uMa" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) +/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/plate, +/area/almayer/maint/hull/upper/s_stern) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -58899,61 +59958,26 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"uMm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"uMq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/autoinjectors{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/device/mass_spectrometer{ - pixel_x = 8 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"uMz" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"uME" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null +"uMk" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uMl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"uMN" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"uMn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) "uMO" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -58975,181 +59999,110 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"uNc" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_f_p) +"uMS" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) "uNf" = ( /obj/structure/sign/safety/conference_room{ pixel_y = 32 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"uNj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"uNl" = ( -/obj/structure/bed/chair/bolted{ - dir = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) +"uNg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/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) -"uNs" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"uNy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) +"uNq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orange/east, +/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) -"uND" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = -1; - pixel_y = 7 +"uNB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uNM" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/living/briefing) +"uNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = 1; - pixel_y = -5 +/turf/open/floor/almayer/blue, +/area/almayer/living/basketball) +"uNQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) +/area/almayer/hallways/lower/port_aft_hallway) "uNV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uNY" = ( -/obj/structure/disposalpipe/segment{ +"uOh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "uOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south2) -"uOn" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"uOx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"uOD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"uOF" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"uOI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"uOK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Brig Breakroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) -"uOU" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +"uOJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"uPr" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"uPE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"uPI" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/obj/effect/projector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 +/obj/structure/transmitter/rotary{ + name = "AI Reception Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Reception" }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/turf/open/floor/almayer/no_build/ai_floors, /area/almayer/command/airoom) -"uPd" = ( -/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 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"uPf" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"uPP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"uPB" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"uPE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/engineering/lower) "uPQ" = ( /obj/item/weapon/dart/green, /obj/structure/dartboard{ @@ -59157,14 +60110,6 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"uPV" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) "uPW" = ( /obj/structure/bed/chair{ dir = 4 @@ -59179,21 +60124,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"uQa" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uQe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "south_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) "uQm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -59212,76 +60142,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"uQu" = ( -/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/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uQy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"uQA" = ( -/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/silver/east, -/area/almayer/hallways/lower/repair_bay) -"uQY" = ( -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"uRa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"uQp" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = 3; + vector_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uRe" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/obj/structure/machinery/door_control{ + id = "ARES AIST"; + name = "Privacy Shutters"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "31;92" }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"uRl" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) "uRo" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -59289,49 +60167,31 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"uRp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"uRu" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, +"uRs" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"uRw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"uRt" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/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) -"uRF" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) "uRM" = ( /obj/structure/bed{ can_buckle = 0 @@ -59359,34 +60219,85 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"uRZ" = ( +"uRR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/s_bow) +"uRY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"uSa" = ( +/obj/item/device/radio/intercom{ + frequency = 1500; + name = "AI Core Intercom"; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"uSk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"uSH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = 12; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uSS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/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) -"uTj" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"uSW" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/ce_room) +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uTd" = ( +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/west, +/area/almayer/command/aist_office) "uTk" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"uTp" = ( -/obj/structure/pipes/vents/scrubber, +"uTl" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"uTq" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/upper/u_m_s) +"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/test_floor4, +/area/almayer/maint/hull/upper/p_bow) "uTv" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -59402,32 +60313,110 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"uTK" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"uUd" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"uUg" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/officer_study) +"uTN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uTU" = ( +/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" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"uTV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"uTZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"uUe" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/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/silver/southeast, +/area/almayer/hallways/lower/repair_bay) "uUi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"uUj" = ( -/obj/structure/machinery/light{ +"uUo" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_silver/east, -/area/almayer/command/aist_office) +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"uUt" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"uUu" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/perma) "uUz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -59457,103 +60446,121 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"uUT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) "uVc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"uVm" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"uVs" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +"uVd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"uVh" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"uVp" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "uVv" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 1 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"uVP" = ( -/obj/structure/sign/prop2{ - pixel_y = 29 +"uVA" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"uVD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"uVQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) "uVV" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"uVW" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/brig/general_equipment) -"uWr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"uVX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"uWF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"uVY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"uWc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"uWk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"uWG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"uWm" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) "uWV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"uXh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"uWY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Briefing Room" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"uXl" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/medical/lower_medical_medbay) +"uXj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"uXk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "uXm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -59564,16 +60571,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"uXr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +"uXu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) +/area/almayer/shipboard/brig/interrogation) "uXy" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -59584,17 +60595,18 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"uXI" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"uXO" = ( -/obj/item/trash/crushed_cup, +"uXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/midship_hallway) +"uXL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) "uXU" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, @@ -59602,90 +60614,36 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"uXV" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer{ +"uYa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uXZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"uYe" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge2" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"uYd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 12 }, +/obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) +/area/almayer/command/lifeboat) "uYg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uYr" = ( -/obj/structure/machinery/conveyor_switch{ - id = "req_belt" - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"uYw" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"uYz" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"uYF" = ( -/obj/structure/machinery/cm_vending/clothing/leader/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"uYG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"uYT" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) -"uYX" = ( -/obj/structure/machinery/power/apc/almayer{ +"uYn" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"uZb" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uZe" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uYM" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) "uZm" = ( /obj/effect/projector{ name = "Almayer_Up2"; @@ -59694,66 +60652,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"uZp" = ( +"uZo" = ( +/obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"uZz" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) "uZF" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"uZX" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"vac" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"uZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"uZV" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane{ + anchored = 1 }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"uZZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) "vaq" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -59762,9 +60698,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) -"vaK" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) +"vaQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "vaS" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/mp_bunks) @@ -59775,95 +60715,131 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"vbq" = ( -/obj/structure/closet, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -17 - }, +"vaZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vbf" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"vbs" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +/area/almayer/hallways/hangar) +"vbo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + name = "\improper Brig Prisoner Yard" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"vbw" = ( +/area/almayer/shipboard/brig/processing) +"vbB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vbI" = ( /obj/structure/surface/table/almayer, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 33 +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/item/toy/deck{ - pixel_x = -4; - pixel_y = 10 +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 9; - pixel_y = 12 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vbM" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/obj/item/ashtray/plastic{ - pixel_y = -4 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"vbR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/green/southeast, +/turf/open/floor/almayer/green/northeast, /area/almayer/squads/req) -"vbB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"vbG" = ( -/obj/structure/sign/safety/hvac_old{ +"vbS" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vbU" = ( +/obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"vbK" = ( -/turf/open/floor/almayer/silvercorner, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/midship_hallway) -"vbN" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +"vbV" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 1 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"vbZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"vcf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vcm" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"vcq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"vcr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) "vcu" = ( /obj/effect/landmark/start/engineering, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vcy" = ( -/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/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) +"vcE" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "vcG" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -59879,156 +60855,108 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"vcK" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"vcW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/folder/black{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/device/camera_film{ - pixel_x = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"vdb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +"vdl" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vdd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 +/obj/structure/bed/chair/bolted, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"vdL" = ( +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"vdm" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"vdM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"vdt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vdO" = ( +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"vdx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/machinery/cryo_cell{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"vdz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access_txt = "19;21" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vdR" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"ven" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"veq" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"vdE" = ( +/area/almayer/maint/hull/lower/l_m_s) +"veu" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "MTline"; - name = "Next button"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "2;7" +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"vdJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"veV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"vdM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, +/area/almayer/command/aist_office) +"vfa" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"vdP" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vdT" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"vdZ" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_one) -"vem" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"veo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"vfo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-2"; + req_access = null }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"veN" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"vfx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"vfr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"vft" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"vfP" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) "vfS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -60043,65 +60971,76 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"vgl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"vgn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"vgm" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"vgo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/obj/item/device/flash, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) "vgw" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/lower) -"vgy" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vgJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cichallway) -"vgK" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 +"vgx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/hydroponics) +"vgB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/autoinjectors{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/device/mass_spectrometer{ + pixel_x = 8 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"vgD" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) "vgO" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) -"vgW" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"vha" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) +"vhb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/maint/upper/u_a_p) "vhe" = ( /obj/structure/filingcabinet{ density = 0; @@ -60118,25 +61057,6 @@ /obj/item/folder/white, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"vhk" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) -"vhr" = ( -/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/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"vht" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) "vhw" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -60148,27 +61068,15 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"vhF" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"vhK" = ( -/obj/structure/platform{ - dir = 4 +"vhR" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"vhL" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"vhM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) "vhX" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -60176,19 +61084,43 @@ }, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"vii" = ( +"vif" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"vih" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vil" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + 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 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vit" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) "viu" = ( /obj/structure/machinery/shower{ dir = 1 @@ -60203,41 +61135,46 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"viv" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/maint/upper/u_m_p) "viB" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/aicore, /area/almayer/command/airoom) -"viD" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"viK" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"viR" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +"viJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"viN" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/securestorage) +"viO" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/living/briefing) +"viS" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vjb" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"vjc" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"vjn" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"vjg" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) "vjv" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60249,95 +61186,150 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"vjC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"vjG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) "vjK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vjP" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/upper/fore_hallway) -"vka" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"vke" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"vko" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"vkx" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +"vjS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"vkF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"vkU" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"vjT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"vlh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_umbilical) +"vjW" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vlr" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vka" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"vkb" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/door_control{ + id = "officers_mess"; + name = "Privacy Shutters"; + pixel_y = -19 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"vlu" = ( +/area/almayer/living/captain_mess) +"vkp" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/sterile_green_side/north, +/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/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/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vkM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Brig Equipment" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 +/turf/open/floor/almayer/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 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"vlv" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"vkR" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vlk" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"vln" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"vlG" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"vlr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, +/area/almayer/command/aist_office) +"vly" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) "vlM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -60347,43 +61339,59 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"vlP" = ( -/obj/structure/platform_decoration{ - dir = 1 +"vlO" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"vmo" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"vmq" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"vms" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"vmv" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"vmx" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, +/obj/item/toy/plush/barricade, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/living/port_emb) +"vlX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"vme" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"vml" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"vmq" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"vmE" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower) "vmJ" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -60392,97 +61400,140 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"vmL" = ( +"vmN" = ( +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"vnd" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vmP" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/obj/structure/bed/chair/bolted, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"vnH" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 +/area/almayer/living/briefing) +"vmW" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/port_missiles) +"vno" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"vnD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/shipboard/brig/medical) -"vnJ" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"vnM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/window/reinforced{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"vnY" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"voj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"vop" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/lower/repair_bay) +"vor" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vou" = ( +/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; - pixel_y = 4 + icon_state = "bulb-burned"; + status = 3 }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/item/prop{ + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.78; + name = "circuit board"; + pixel_x = 8; + pixel_y = 10 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"vnL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/prop{ + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.79; + name = "circuit board"; + pixel_x = 8; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"voV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"vnM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"vnN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"vnY" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"voB" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"voO" = ( -/obj/structure/bed/chair/office/dark{ +/area/almayer/medical/containment) +"vpe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ dir = 1 }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"vpo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"vpf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vpn" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) "vpv" = ( /obj/structure/machinery/shower, /obj/structure/window/reinforced/tinted{ @@ -60494,36 +61545,6 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vpw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vpx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"vpG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) "vpH" = ( /obj/structure/surface/table/reinforced/almayer_B{ indestructible = 1; @@ -60548,31 +61569,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"vqf" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 +"vpT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"vpV" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/command/cic) +"vpW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vqc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Holding Cell" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, -/area/almayer/command/aist_office) -"vqi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"vqm" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/living/cryo_cells) +/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/red/southwest, +/area/almayer/hallways/lower/port_fore_hallway) "vqC" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vqG" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) +"vqD" = ( +/obj/item/trash/candle, +/obj/item/tool/match/paper, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "vqI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/camera_film{ @@ -60587,27 +61629,27 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"vqN" = ( -/obj/structure/machinery/light/small{ +"vqK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"vqL" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"vqV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"vqW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"vqY" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "vqZ" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -60620,42 +61662,21 @@ pixel_x = 25; pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"vra" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie_delta_shared) -"vre" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_a_s) -"vrl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/window/reinforced{ + dir = 4; + health = 80; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"vra" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie_delta_shared) "vrx" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -60663,11 +61684,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vrX" = ( +"vrI" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -18 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vrJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Liasion's Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"vrM" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"vrR" = ( /obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Deck Waste Tank Control" + }, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/engineering/lower) +"vrW" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/briefing) +"vrZ" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer/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/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"vse" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/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/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "vsh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -60679,28 +61762,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) -"vsk" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"vsp" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"vss" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_f_p) "vsz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -60708,55 +61769,51 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"vsU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"vtf" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"vtz" = ( +"vsF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"vtP" = ( -/obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"vtS" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vta" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"vti" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vtm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"vtV" = ( -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "delivery outlet"; - pixel_x = -1; - pixel_y = 25; - range = 0 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"vua" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/disposalpipe/segment{ dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"vtr" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"vtx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +/area/almayer/medical/upper_medical) +"vtG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"vtJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "vub" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) @@ -60765,35 +61822,26 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"vuh" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"vup" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"vur" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"vuw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) "vuA" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) +"vuD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vuF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Kitchen Hydroponics"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) "vuG" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -60804,6 +61852,16 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"vuL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "vuV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -60813,14 +61871,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) -"vuW" = ( -/obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"vvm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) +"vuZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) "vvp" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -60832,45 +61888,94 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"vvr" = ( -/obj/structure/toilet{ - dir = 8 +"vvw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/structure/machinery/light/small, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; pixel_y = 2 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/chief_mp_office) -"vvI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vvy" = ( +/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/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"vvH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/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; - name = "\improper Evacuation Airlock PU-6"; - req_access = null + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"vvN" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"vwe" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"vww" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/panic) +"vvY" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/structure/bedsheetbin{ + pixel_x = 26; + pixel_y = 5 }, +/obj/item/tool/soap/syndie, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"vwj" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"vwC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"vwF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "vwI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave{ @@ -60878,14 +61983,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"vwP" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) +"vwT" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) "vwU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) +"vwV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/command/cic) "vwY" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -60894,51 +62004,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"vxm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"vxq" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"vxr" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) "vxu" = ( /obj/structure/machinery/meter, /obj/structure/pipes/standard/simple/visible{ @@ -60946,37 +62011,21 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"vxF" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi_ext" +"vxG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/chief_mp_office) "vxK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"vxL" = ( -/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/plate, -/area/almayer/maint/hull/upper/u_a_p) "vxM" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cryo) -"vxS" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) "vxX" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/wrench{ @@ -60997,12 +62046,26 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"vxZ" = ( +"vxY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vyg" = ( /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vyh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "vyi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -61015,13 +62078,30 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) +"vyp" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vyr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vyu" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "vyB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/vehiclehangar) -"vyG" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) +"vyE" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, +/area/almayer/command/airoom) "vyH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -61031,35 +62111,6 @@ "vyI" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"vyL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"vyW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"vzc" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/head/helmet/space/compression/uscm, -/obj/item/cell/crap{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) "vzi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -61067,63 +62118,59 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"vzl" = ( -/obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"vzm" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/squads/alpha) -"vzn" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"vzj" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Chief MP's Bedroom" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"vzk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) "vzp" = ( /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell/cl) -"vzG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"vzK" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/ce_room) -"vzM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +"vzy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"vzN" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/starboard_hallway) +"vzz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"vzB" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vzO" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/upper/fore_hallway) -"vzW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"vzX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_p) +"vzK" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/ce_room) +"vzP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "vAg" = ( /obj/structure/largecrate/random/barrel/blue, /obj/structure/sign/safety/restrictedarea{ @@ -61135,124 +62182,102 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) +"vAq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"vAx" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "vAz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) +"vAE" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "vAG" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"vAL" = ( -/obj/structure/bed/chair/wheelchair{ +"vAH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"vAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vAQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vBp" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"vAV" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"vAY" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 8; - pixel_x = 16 +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"vBf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/aicore_lockdown, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"vBr" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"vBx" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) "vBC" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"vBG" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"vBJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"vBK" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"vBU" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/surface/table/reinforced/black, -/obj/item/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"vBX" = ( +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"vCg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"vBY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/transmitter/rotary{ - name = "Brig Wardens's Office Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Warden's Office"; - pixel_x = 15 + icon_state = "W" }, -/obj/structure/sign/safety/terminal{ +/obj/structure/sign/safety/suit_storage{ pixel_x = 8; pixel_y = 32 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) -"vCn" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"vCs" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "\improper Pilot's Office"; - req_one_access_txt = "3;22;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vCk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/hydroponics) "vCt" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -61260,21 +62285,53 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"vCD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/communications{ - dir = 4 +"vCv" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/midship_hallway) +"vCx" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"vCy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/west, +/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) +"vCH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 4; + c_tag = "AI - Primary Processors"; + autoname = 0 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) "vCO" = ( /obj/effect/landmark/start/bridge, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) +"vDa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/hydroponics) "vDd" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -61285,21 +62342,10 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"vDj" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"vDm" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) +"vDh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) "vDo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61313,32 +62359,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"vDu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vDy" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) "vDz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -61346,66 +62366,18 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"vDB" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vDE" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 32 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"vDF" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"vDH" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 27; - serial_number = 12 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vDL" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) "vDN" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"vDT" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +"vEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vEh" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) +/area/almayer/command/combat_correspondent) "vEj" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -61413,6 +62385,32 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) +"vEr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"vEv" = ( +/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/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vEx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "Morgue Waiting Room"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) "vEG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -61427,64 +62425,70 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"vEJ" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"vEM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"vFi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"vFt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/execution) -"vFL" = ( +"vER" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"vEV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"vFN" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"vFn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vFv" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"vFU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/area/almayer/engineering/upper_engineering/starboard) +"vFw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vFH" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"vGo" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"vGs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/engineering/lower) +"vFI" = ( +/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/plate, -/area/almayer/shipboard/port_point_defense) -"vGJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) +/area/almayer/maint/hull/lower/l_f_p) +"vGn" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"vGA" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vGG" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) "vGQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -61494,6 +62498,16 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"vHa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/ares_console{ + pixel_x = 9 + }, +/obj/structure/machinery/computer/view_objectives{ + pixel_x = -9 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) "vHh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/tool/warning_cone{ @@ -61507,143 +62521,131 @@ "vHn" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_m_s) -"vHw" = ( +"vHp" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"vHD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/starboard_hallway) -"vHH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/transmitter/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"vHP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +/area/almayer/hallways/lower/repair_bay) +"vHq" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"vHQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vIa" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"vIe" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"vHt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"vIk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"vIo" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_f_p) -"vIr" = ( +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vHO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"vIs" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"vHP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"vHW" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"vIf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"vIg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"vIo" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_p) "vIu" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"vIB" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"vIJ" = ( -/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/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"vIN" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"vIX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) "vIZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -61651,58 +62653,36 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"vJa" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"vJA" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"vJB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"vJM" = ( -/obj/item/tank/phoron, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"vJQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"vJc" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"vJg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"vJo" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) "vJR" = ( /obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_stern) -"vJT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ - dir = 2; - name = "\improper Brig Permanent Confinement" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" - }, +"vJV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"vJU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/machinery/firealarm{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "vJZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -61712,21 +62692,36 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"vKa" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +"vKb" = ( +/obj/structure/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"vKq" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"vKy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"vKe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vKr" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + dir = 1; + name = "\improper Brig Prison Yard And Offices" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) "vKB" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /obj/structure/machinery/light/small{ @@ -61734,68 +62729,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"vKC" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) "vKI" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"vKQ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"vKS" = ( -/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/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"vKX" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, +"vLg" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"vLt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/briefing) +"vLj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"vLu" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vLp" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) "vLz" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Right"; @@ -61806,27 +62769,17 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"vLC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"vLH" = ( -/obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"vLP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +"vLA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Nitrogen Control Console" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) "vMb" = ( /obj/item/stool{ pixel_x = -15; @@ -61834,30 +62787,16 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"vMc" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) "vMo" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) -"vMp" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) "vMr" = ( /obj/effect/landmark/start/otech, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"vMs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) +"vMt" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) "vMA" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -61867,19 +62806,59 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"vMQ" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"vNc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"vME" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"vMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"vMI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"vMJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Brig Breakroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) +"vMM" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vNh" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) +/area/almayer/living/briefing) +"vMU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"vNo" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) "vNp" = ( /obj/structure/sign/safety/three{ pixel_x = -17 @@ -61890,9 +62869,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vNz" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) "vND" = ( /obj/structure/bed/chair{ dir = 8; @@ -61900,43 +62876,38 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"vNF" = ( -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"vNG" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"vOb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"vOd" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"vNT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"vNW" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/cic) "vOh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"vOl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"vOs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vOu" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"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/cargo, +/area/almayer/maint/hull/lower/l_m_s) "vOy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/medical_science) @@ -61951,12 +62922,47 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) +"vON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vOP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/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/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/plate, +/area/almayer/hallways/lower/port_midship_hallway) "vPf" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -61966,29 +62972,17 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"vPi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) "vPm" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"vPr" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +"vPv" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/clothing/mask/rebreather/scarf, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"vPt" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "vPw" = ( /obj/structure/machinery/light{ dir = 1 @@ -61999,27 +62993,41 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"vPF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vPK" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" +/obj/structure/sign/safety/maint{ + pixel_y = -26 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"vPQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"vPM" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; - pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vPR" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/lower/workshop/hangar) "vPT" = ( /obj/structure/machinery/light{ dir = 1 @@ -62035,74 +63043,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/vehiclehangar) -"vQd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/obj/item/clipboard, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"vQp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"vQe" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"vQf" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/securestorage) "vQq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"vQF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES JoeCryo"; - name = "\improper ARES Synth Bay Shutters"; - plane = -7; - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +"vQN" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"vQO" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) "vQR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"vRi" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell/cl) -"vRr" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"vRa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"vRv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Support Officers Quarters"; - req_one_access_txt = "37" +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = -25 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/sign/prop3{ + pixel_x = -32 + }, +/obj/structure/machinery/faxmachine/uscm{ + department = "SEA" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/strata/faux_metal, +/area/almayer/shipboard/sea_office) +"vRb" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/cic) +"vRu" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/storage/box/matches, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "vRA" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -62114,35 +63115,42 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"vRC" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/briefing) -"vRE" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 1"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, +"vRR" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"vRW" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"vRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"vSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"vSc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/command/cic) +"vSn" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"vSp" = ( /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/area/almayer/living/grunt_rnr) "vSr" = ( /obj/structure/largecrate/random/case/double, /obj/item/tool/wet_sign{ @@ -62158,64 +63166,65 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) -"vSM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vSE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"vSG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"vSK" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"vSN" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/bluecorner/west, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vSW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) -"vSS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"vTi" = ( +"vTu" = ( /obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; icon_state = "pottedplant_22"; - name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"vTz" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"vTF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"vTv" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"vTR" = ( -/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/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"vTE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"vTM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "vTS" = ( /obj/structure/machinery/light{ pixel_x = 16 @@ -62241,95 +63250,69 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"vUa" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/lifeboat) +"vUb" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vUe" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "vUh" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"vUr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Basketball Court" +"vUn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"vUF" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "vUI" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/warden_office) -"vUL" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +"vUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "vUP" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cic_hallway) -"vUV" = ( -/obj/structure/machinery/seed_extractor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"vUY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"vVa" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ +"vVb" = ( +/obj/structure/machinery/cm_vending/gear/tl{ density = 0; - pixel_y = 16 + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) "vVd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"vVe" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) "vVk" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -62337,13 +63320,9 @@ }, /turf/closed/wall/almayer/aicore/hull, /area/almayer/command/airoom) -"vVm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) +"vVs" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "vVu" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -62351,6 +63330,9 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"vVw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "vVy" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -62359,42 +63341,64 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"vVM" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"vWf" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"vVI" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"vWj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Officer's Study" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vVW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"vVZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"vWv" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/area/almayer/hallways/lower/port_umbilical) +"vWc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"vWx" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"vWs" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vWt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/dropper, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 12 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "vWA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62432,19 +63436,34 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"vWI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"vWG" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"vWP" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"vWJ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) +/area/almayer/hallways/hangar) "vXd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -62457,6 +63476,16 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) +"vXf" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "vXh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -62478,63 +63507,90 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"vXS" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"vXT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"vXv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"vYc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"vXF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) "vYd" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) +"vYi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + name = "\improper Warden's Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) "vYm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/gym) -"vYs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"vYt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"vYz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 8 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/obj/item/tool/pen{ + pixel_y = -2 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"vYv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/item/reagent_container/dropper{ + pixel_x = -1; + pixel_y = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/machinery/biohazard_lockdown{ + pixel_x = 8; + pixel_y = 10 }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"vYx" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "vYC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -62544,159 +63600,96 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"vYP" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/basketball) -"vYQ" = ( -/obj/structure/machinery/light{ - dir = 8 +"vYM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"vZb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"vYR" = ( -/obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"vYS" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 8 +/obj/structure/sign/safety/maint{ + pixel_x = 16; + pixel_y = 26 }, /turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"vYU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"vZc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"vZd" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/squads/alpha) "vZf" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8 }, /turf/closed/wall/almayer, /area/almayer/engineering/lower) -"vZi" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Kitchen"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"vZo" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) "vZv" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vZw" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/almayer/medical/containment/cell/cl) -"vZA" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"vZG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +"vZw" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/almayer/medical/containment/cell/cl) +"vZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"vZU" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"vZJ" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/upper/fore_hallway) +"wac" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wao" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"wat" = ( +/area/almayer/maint/hull/lower/l_a_p) +"wan" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"wav" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/facepaint/brown, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"waD" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"waJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"waB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"waP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"wbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"waL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"wby" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"waR" = ( -/obj/structure/machinery/door_control{ - id = "or03"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"wbC" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"wbp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-1"; - req_access = null +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"wbv" = ( -/turf/open/floor/almayer/greencorner/east, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) -"wbI" = ( -/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/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) "wbJ" = ( /obj/structure/machinery/door_control/airlock{ id = "n_engi"; @@ -62706,100 +63699,149 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"wbW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"wcn" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +"wbN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wbO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/stack/sheet/metal{ - amount = 50 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"wbP" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_four) +"wbV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"wcO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_windoor"; - name = "Windoor Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "28" +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"wbX" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + pixel_y = 24 }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 6; - pixel_y = -4 +/obj/item/device/cotablet, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"wcm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/biohazard{ - pixel_y = -32 +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"wct" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"wcD" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wcJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"wcN" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_se_2"; - name = "Window Shutters"; - pixel_x = -7; - pixel_y = 4; - req_access_txt = "28" +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"wcR" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "wdf" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"wdx" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 +"wdh" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"wdv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "wdz" = ( /obj/effect/landmark/start/marine/engineer/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"wdO" = ( -/obj/structure/machinery/light{ - dir = 4 +"wdF" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"wdG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"wdI" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"wdJ" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) "wdQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) +"wdW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"wed" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "wee" = ( /obj/effect/landmark/start/police, /obj/effect/decal/warning_stripes{ @@ -62808,9 +63850,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"wek" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) +"wei" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"wer" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"wex" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) "weC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62828,66 +63891,24 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"weG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"weL" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_a_p) -"weT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/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/test_floor4, -/area/almayer/engineering/lower) -"wfd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"weR" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"wfn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"wfx" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/engineering/lower/workshop) "wfE" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) -"wfO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"wfU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_one) "wfZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -62898,43 +63919,31 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"wgb" = ( -/obj/structure/target, -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"wge" = ( -/obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"wgj" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"wgq" = ( +"wga" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"wgA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/window/reinforced/ultra{ + dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"wgf" = ( +/obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"wgF" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"wgk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "wgO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62942,56 +63951,42 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) -"wgX" = ( -/obj/structure/machinery/vending/cola/research{ - pixel_x = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"whd" = ( -/obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"whf" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"whh" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"whi" = ( +"wgR" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 10 +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"who" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"whc" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"whm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"whw" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "whA" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) +"whB" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) "whO" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, @@ -63005,51 +64000,26 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/warden_office) -"whR" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"whV" = ( -/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 +"whZ" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_one_access_txt = "1;92"; + req_access = null }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/northeast, +/area/almayer/command/aist_office) "wid" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/p_bow) -"wio" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wiF" = ( -/obj/structure/machinery/vending/snack{ - pixel_x = -7 - }, -/obj/structure/machinery/vending/coffee{ - pixel_x = 14 +"wiu" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"wiz" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) +/area/almayer/lifeboat_pumps/south1) "wiG" = ( /obj/structure/sign/poster{ pixel_x = -30; @@ -63065,74 +64035,79 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"wiJ" = ( +"wiN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"wiO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"wiU" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer/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/plate, +/area/almayer/hallways/lower/vehiclehangar) +"wiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"wiX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"wje" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"wjb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wjj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, +/area/almayer/command/aist_office) "wjq" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"wjB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/computer/squad_changer{ - dir = 8; - layer = 2.99; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"wjF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/orange/north, +"wjv" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/upper_engineering) -"wjH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"wjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"wjK" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"wjN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"wjC" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"wjL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) "wjQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/prop/invuln/overhead_pipe{ @@ -63155,43 +64130,108 @@ /obj/structure/closet/secure_closet/warrant_officer, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"wkk" = ( +"wka" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"wkc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"wks" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wky" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) "wkA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wkC" = ( +"wkH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/whistle{ + pixel_y = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wkM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsLower"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/public{ + alert_id = "AresStairs"; + alert_message = "Caution: Movement detected in ARES Core."; + cooldown_duration = 1200 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"wkX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"wlb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wlg" = ( /obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"wkL" = ( -/obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) "wlh" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -63202,27 +64242,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"wlm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"wlw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Cryogenics Bay" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"wlr" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"wlD" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"wlA" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) "wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -63249,127 +64279,84 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wlM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"wlQ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or3privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 +"wmg" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"wlT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"wmo" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"wlW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"wme" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/fore_hallway) +"wmz" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"wmf" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"wmI" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"wmN" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"wmK" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) "wmP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"wna" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"wnf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +"wmQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc03"; + name = "\improper Treatment Center" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"wng" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) +/area/almayer/medical/lower_medical_medbay) +"wmT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 + }, +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"wnb" = ( +/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/plate, +/area/almayer/maint/upper/u_m_s) "wnh" = ( /obj/structure/window/framed/almayer/aicore/hull, /turf/open/floor/plating, /area/almayer/command/airoom) -"wnr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"wnz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"wnD" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 +"wnw" = ( +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = 24 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wnE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/living/briefing) -"wnK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/workshop) -"wnS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"wnT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/shipboard/brig/perma) +"wnL" = ( +/obj/item/stack/tile/carpet{ + amount = 12 }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "wnY" = ( /obj/item/tool/crowbar/red, /obj/structure/disposalpipe/segment{ @@ -63378,128 +64365,103 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"wob" = ( -/obj/structure/machinery/door/window/westleft{ - dir = 2 - }, -/obj/structure/machinery/shower, -/obj/item/tool/soap, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"wog" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) "woh" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 4 }, /area/almayer/medical/containment/cell) "wol" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"woI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/surface/rack, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/folded_tent/cmd, +/obj/item/flag/plantable/ua, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"wos" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"woK" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"woO" = ( -/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" +/area/almayer/squads/charlie) +"woy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "woU" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_m_p) -"woZ" = ( -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/u_a_s) -"wpf" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"wpg" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"wpt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wpT" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"wqg" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"wqk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"wpu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"wqs" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"wqt" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"wqE" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/upper/fore_hallway) -"wqK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/device/flash, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"wpI" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wpS" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"wqc" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"wqh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wqr" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 + }, +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "wqO" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -63509,52 +64471,81 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"wru" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wrx" = ( -/obj/structure/machinery/light/small{ +"wqW" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"wra" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"wrC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/area/almayer/maint/hull/lower/l_a_p) +"wrr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"wrZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"wsc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-5"; - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"wru" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wrC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"wsd" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer, +/area/almayer/living/gym) +"wrI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"wrN" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"wrT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"wrX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wsg" = ( -/obj/structure/machinery/cm_vending/clothing/marine/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/gym) +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"wse" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "wsh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -63564,10 +64555,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"wso" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) "wsq" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -63578,15 +64565,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"wss" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Shutters"; - plane = -7 +"wsw" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) "wsz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63602,12 +64586,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"wsK" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"wsL" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/lifeboat) +"wsR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"wsS" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) "wtk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63618,33 +64603,31 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"wtl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"wtn" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 }, +/obj/item/clipboard, +/obj/item/paper, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"wtp" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/area/almayer/maint/hull/lower/l_a_s) +"wty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"wtA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"wtF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"wtD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/p_bow) "wtM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -63652,12 +64635,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"wtO" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) "wtY" = ( /obj/structure/surface/table/almayer, /obj/item/folder/white{ @@ -63676,24 +64653,19 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"wtZ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"wuf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" +"wub" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"wud" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) "wuh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63714,6 +64686,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) +"wui" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) "wuk" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -63725,163 +64706,150 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wuo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) "wup" = ( /obj/structure/supply_drop/echo, /turf/open/floor/almayer, /area/almayer/squads/req) -"wuv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"wuq" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wuB" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"wuS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"wux" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"wuy" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"wuT" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"wuz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"wuG" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"wuU" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"wvk" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"wvb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/living/captain_mess) +"wvj" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) "wvo" = ( /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"wvq" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, +"wvE" = ( /obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"wvy" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"wvD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"wvM" = ( -/obj/structure/stairs{ +/obj/structure/machinery/computer/cameras/almayer_network{ dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wvY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilottex{ - pixel_x = -7; - pixel_y = 13 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"wvI" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wwk" = ( -/obj/structure/machinery/door_control{ - id = "pobunk1"; - name = "PO1 Privacy Shutters"; - pixel_x = -24 +/area/almayer/shipboard/brig/perma) +"wvU" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wwn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"wwp" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"wvX" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, -/turf/open/floor/almayer/blue/north, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/upper/midship_hallway) -"wwy" = ( -/obj/structure/closet/emcloset, +"wwr" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, /turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/squads/charlie) +"wwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/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) -"wwH" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/hallways/upper/midship_hallway) -"wxf" = ( -/obj/structure/disposalpipe/junction{ +"wwJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"wwW" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ dir = 8; - icon_state = "pipe-j2" + name = "ship-grade camera" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"wxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) -"wxn" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"wxj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) "wxp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) +"wxq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) "wxu" = ( /obj/structure/sign/safety/water{ pixel_x = 8; @@ -63896,224 +64864,108 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"wxK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/prop/magazine/boots/n055{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/offices/flight) -"wxT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/northeast, -/area/almayer/squads/charlie) -"wxZ" = ( -/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 +"wxF" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "3" }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_fore_hallway) -"wyb" = ( -/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/item/device/radio/listening_bug/radio_linked/mp{ + pixel_y = 8 }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"wyq" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 +/obj/item/device/radio/listening_bug/radio_linked/mp, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"wxU" = ( +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/obj/structure/disposalpipe/up/almayer{ - id = "ares_vault_in"; - name = "aicore"; - dir = 2 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 16 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"wyv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 1"; - name = "Containment Lockdown"; - pixel_x = -7; - pixel_y = 1; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Containment Cell 1"; - name = "Cell 1 Control"; - pixel_x = 5; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"wyt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "wyz" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"wyV" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"wzy" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"wzC" = ( -/obj/structure/bed/chair/comfy/ares{ +"wyG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "Core Chamber" - }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"wyQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/aicore_lockdown, /turf/open/floor/almayer/no_build/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) -"wzK" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"wzR" = ( -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"wzX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"wAa" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"wAi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; +"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; - 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/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"wAo" = ( -/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" + req_one_access = null }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"wAw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"wAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper AIST Office"; - dir = 1; - req_one_access_txt = "31;92"; - masterkey_resist = 1 - }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) -"wAD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/medical/lower_medical_medbay) +"wAE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/hallways/upper/fore_hallway) "wAK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_umbilical) -"wAV" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"wAX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"wBa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"wBb" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"wBe" = ( -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"wBA" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 +"wBw" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) "wBI" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/sign/safety/maint{ @@ -64121,49 +64973,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/starboard) -"wBJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/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 - }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 - }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"wCa" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "Reception"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) +"wCe" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) "wCi" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -64178,64 +64991,55 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"wCl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"wCw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 4"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"wCn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"wCN" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"wCU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"wCs" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wCI" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/briefing) +"wDg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - name = "\improper CMO's Office"; - req_one_access = null; - req_one_access_txt = "1;5" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"wDq" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"wCV" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"wDb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/camera, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"wDn" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) +/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{ + pixel_x = -6; + pixel_y = -26 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 20; + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) "wDy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64255,106 +65059,122 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"wDE" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +"wDG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wDH" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"wDJ" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"wDK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "wDM" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/engineering/upper_engineering) -"wEc" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"wDP" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"wEj" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"wEd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"wEm" = ( +/area/almayer/squads/alpha) +"wEg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + indestructible = 1; + unacidable = 1 + }, /obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"wEt" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "wEw" = ( /obj/effect/landmark/start/pilot/dropship_pilot, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"wEE" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 +"wEI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"wEG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) +/obj/item/clipboard{ + pixel_x = 12 + }, +/turf/open/floor/almayer/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) -"wEP" = ( -/obj/structure/machinery/light{ - dir = 1 +"wEO" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"wES" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"wET" = ( +/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/plate, -/area/almayer/squads/charlie_delta_shared) -"wFr" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/maint/upper/u_m_s) +"wFb" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"wFi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, +/obj/structure/medical_supply_link, /turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/shipboard/panic) +"wFn" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "wFs" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/starboard_hallway) -"wFt" = ( -/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/test_floor4, -/area/almayer/hallways/hangar) -"wFy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) "wFz" = ( /obj/item/prop{ desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; @@ -64367,33 +65187,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wFG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"wFH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"wFN" = ( +/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/plate, -/area/almayer/squads/alpha) +/area/almayer/shipboard/panic) +"wFQ" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "wFR" = ( /turf/open/floor/almayer, /area/almayer/living/gym) -"wFU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) "wFX" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -64414,49 +65223,22 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"wGn" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +"wGd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"wGe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "wGE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/leader/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"wGJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"wGN" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"wGQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) "wGX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -64464,6 +65246,22 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) +"wHj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; + icon_state = "HotlineAlt"; + layer = 2.9; + name = "Richard the tiger" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) "wHn" = ( /obj/structure/sign/safety/autoopenclose{ pixel_x = 7; @@ -64471,6 +65269,9 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) +"wHo" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/living/briefing) "wHp" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -64484,126 +65285,60 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) -"wHy" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"wHI" = ( -/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/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"wHV" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 +"wIr" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = list(); + req_access_txt = "26" }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"wHY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 - }, +/area/almayer/squads/req) +"wIu" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wIe" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"wIf" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 16; - pixel_y = 27 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"wIg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"wIm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"wIn" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"wIw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/upper/u_a_s) "wIC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/chief_mp_office) -"wIK" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"wIR" = ( +"wIG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/almayer, -/obj/item/prop/magazine/dirty{ - pixel_y = 5 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/item/tool/pen{ - pixel_x = 4; +/obj/item/trash/plate{ + pixel_x = 1; pixel_y = 6 }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"wIQ" = ( +/turf/open/floor/almayer/silvercorner/east, +/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" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) "wJb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) -"wJd" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) "wJh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -64611,84 +65346,66 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/cryo) -"wJj" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"wJt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"wJB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ +"wJo" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ access_modified = 1; dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) +/area/almayer/medical/upper_medical) "wJC" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"wJH" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/almayer/medical/containment/cell/cl) -"wJP" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 +"wJD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"wJS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"wJH" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell/cl) "wKb" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) -"wKk" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_m_p) -"wKE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"wKc" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"wKm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"wKH" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_y_offset = 0 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"wKF" = ( +/obj/structure/machinery/power/apc/almayer{ + cell_type = /obj/item/cell/hyper; + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) +/area/almayer/command/combat_correspondent) "wKJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64698,6 +65415,23 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"wKL" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) "wKN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64722,39 +65456,6 @@ }, /turf/open/floor/plating, /area/almayer/medical/containment) -"wKZ" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"wLa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - dir = 1; - name = "\improper Brig Prison Yard And Offices" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) "wLi" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -64764,9 +65465,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"wLo" = ( -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/space) +"wLm" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) "wLu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -64777,61 +65478,137 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"wLv" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wLJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" +"wLy" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"wLC" = ( +/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/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wLT" = ( +/area/almayer/hallways/upper/fore_hallway) +"wLF" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + closeOtherId = "brigmed"; + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"wLG" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/clothing/head/ushanka{ + layer = 3.3 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"wLK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"wLN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"wLS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"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/orange/east, -/area/almayer/engineering/lower/workshop) -"wLY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"wMd" = ( -/obj/structure/prop/invuln/lattice_prop{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"wMv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"wMB" = ( +/obj/structure/barricade/handrail{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 + pixel_y = 2 }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wMF" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"wMp" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"wMs" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/area/almayer/maint/hull/upper/s_bow) +"wMG" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"wMz" = ( -/obj/structure/barricade/metal, /turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"wME" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/pizzabox/mushroom{ - pixel_y = 11 - }, -/obj/item/poster, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/squads/alpha) "wMI" = ( /obj/structure/machinery/light{ dir = 1 @@ -64843,280 +65620,166 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"wMK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +"wMO" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"wNl" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + layer = 3.2; + pixel_x = 4; + pixel_y = 17 }, -/obj/item/trash/USCMtray, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"wMP" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"wMY" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"wNg" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - dir = 1; - name = "Corporate Liaison's Bedroom" +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"wNi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-4"; - req_access = null +/obj/item/reagent_container/food/snacks/grown/orange{ + layer = 3.3; + pixel_x = 1; + pixel_y = 13 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"wNt" = ( +/turf/open/floor/almayer/redcorner/north, +/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/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wNC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"wNs" = ( -/obj/structure/curtain/medical, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"wNv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/hallways/upper/midship_hallway) +"wNG" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/prop/almayer/hangar_stencil, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wNy" = ( -/obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"wND" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/command/lifeboat) "wNT" = ( /obj/structure/platform, /turf/open/floor/almayer, /area/almayer/living/briefing) -"wNU" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/engineering/upper_engineering/starboard) -"wOl" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"wOp" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"wOs" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) "wOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOy" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"wOz" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"wOH" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"wOL" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"wOO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"wOV" = ( -/obj/item/prop/almayer/box, -/obj/item/prop{ - desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m56c"; - item_state = "m56c"; - name = "broken M57 'Larry's Will' smartgun"; - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/obj/structure/machinery/door_control{ - id = "crate_room4"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/packageWrap, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +"wOv" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wOK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"wPo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"wPa" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"wPB" = ( +/obj/item/reagent_container/glass/rag, /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"wPG" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"wPK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/maint/hull/upper/u_a_p) +"wPf" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 }, /turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"wPN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/fore_hallway) -"wPP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ - dir = 4; - id = "civ_uniforms" +/area/almayer/lifeboat_pumps/south1) +"wPi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/gym) -"wQn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"wQq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, +/area/almayer/hallways/lower/port_midship_hallway) +"wPz" = ( /turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"wQA" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"wQG" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"wQL" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_y = 20 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"wQM" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"wQO" = ( +/area/almayer/medical/hydroponics) +"wPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"wQV" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"wQW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"wPF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wQu" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_four) -"wQY" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"wRe" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"wQA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"wQD" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"wQI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"wRg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"wRf" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) "wRk" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -65124,6 +65787,15 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"wRN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) "wRO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65143,26 +65815,13 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wSd" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"wSe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"wRT" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices) +/area/almayer/living/briefing) "wSm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65172,6 +65831,9 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) +"wSn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "wSu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -65182,26 +65844,61 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"wSw" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES AIST"; - name = "Privacy Shutters"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "31;92" +"wSx" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, -/area/almayer/command/aist_office) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "wSB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) +"wSQ" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) "wSR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"wSV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wTd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"wTg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wTm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/briefing) "wTn" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -65209,25 +65906,43 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"wTo" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"wTH" = ( -/obj/structure/machinery/light{ - dir = 1 +"wTu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/upper/mess) +"wTw" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_y_offset = 0 }, -/obj/structure/pipes/unary/freezer{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"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/mono, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "wTM" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell) +"wTN" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -65237,41 +65952,37 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"wUf" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wUM" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, +"wUJ" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"wUO" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) +/area/almayer/maint/hull/upper/u_m_p) +"wUK" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/workshop/hangar) "wUP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"wUQ" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 +"wUR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/pilotbunks) +"wUX" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 }, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"wUY" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"wVc" = ( -/obj/structure/filingcabinet, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/area/almayer/living/grunt_rnr) "wVh" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -65290,60 +66001,70 @@ /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"wVE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"wVy" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"wVL" = ( +/area/almayer/squads/charlie_delta_shared) +"wVA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 + dir = 5 }, /turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wVO" = ( -/obj/structure/machinery/light{ +/area/almayer/engineering/lower) +"wVB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"wVN" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "wVW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cic) -"wWf" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) "wWg" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/chapel) -"wWk" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"wWn" = ( +"wWl" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wWm" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"wWq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/suit/space/compression/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "wWt" = ( /obj/effect/projector{ name = "Almayer_Up1"; @@ -65355,107 +66076,93 @@ "wWz" = ( /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) -"wWN" = ( -/obj/structure/machinery/light{ - dir = 8 +"wWC" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/pilotbunks) +"wWP" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"wWR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "wWX" = ( /obj/effect/landmark/start/marine/engineer/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"wXt" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"wXu" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"wXv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"wXh" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"wXl" = ( +/obj/structure/platform, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) +/area/almayer/maint/hull/upper/u_a_p) "wXz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/starboard_hallway) -"wXD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/tapes{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/tapes{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/tapes{ - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) "wXH" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"wXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"wYk" = ( +"wXI" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/living/grunt_rnr) +"wXJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wXT" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + name = "\improper Engineering Storage" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"wYm" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) +/area/almayer/hallways/hangar) +"wYa" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"wYd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wYr" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer/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) -"wYW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 5; - pixel_y = 14 +"wYG" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"wYK" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"wYS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/attachable/bayonet{ - pixel_x = -14; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) "wYY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -65467,63 +66174,57 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) -"wZi" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wZo" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"wZI" = ( -/obj/structure/machinery/computer/aa_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) +"wZv" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/port) +"wZE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) "wZL" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"wZQ" = ( +/turf/closed/wall/almayer/aicore/white/reinforced, +/area/almayer/command/aist_office) "wZX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"xaa" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/interrogation) -"xai" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"xav" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"xac" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"xad" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"xas" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) "xaC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -65537,9 +66238,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xaE" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) "xaM" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -65562,59 +66260,57 @@ /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"xaN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xaS" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/lifeboat) "xba" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/cryo_cells) -"xbh" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/maint/upper/u_m_p) -"xbv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"xbL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +"xbd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"xbX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, /turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xcw" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, +/area/almayer/living/briefing) +"xbg" = ( /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"xcS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - name = "\improper Main Kitchen"; - req_one_access_txt = "30;19" +/area/almayer/maint/hull/lower/l_m_p) +"xbk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xbI" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"xcU" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 1; - c_tag = "AI - Reception Lobby"; - autoname = 0 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xcI" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) +/turf/open/floor/almayer/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" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "xdf" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -65622,19 +66318,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"xdr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +"xdx" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = -6 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "xdA" = ( /obj/structure/surface/rack{ density = 0; @@ -65647,62 +66341,27 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"xdQ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"xdR" = ( -/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/mono, -/area/almayer/engineering/upper_engineering/port) -"xdT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xdJ" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"xdP" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"xdU" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/upper_medical) -"xdV" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ + pixel_x = -7; + pixel_y = 10 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "xee" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -65710,97 +66369,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"xek" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"xer" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xeu" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"xew" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"xey" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D1"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"xeL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"xeP" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; +"xef" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; pixel_y = 25 }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"xeQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xeY" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"xfd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 }, /turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"xfe" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 +/area/almayer/engineering/lower/workshop) +"xer" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xeU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room"; + req_one_access = list(19,7); + req_access = list() }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) "xfm" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -65808,56 +66409,68 @@ }, /turf/open/floor/plating, /area/almayer/living/cafeteria_officer) -"xft" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"xfq" = ( +/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/plate, -/area/almayer/hallways/hangar) -"xfu" = ( -/obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"xfx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/maint/hull/lower/l_a_p) +"xfK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/transmitter{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 }, +/obj/structure/machinery/vending/ingredients, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xfO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) -"xfL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"xfY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"xfT" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_one) "xga" = ( /turf/closed/wall/almayer, /area/almayer/hallways/upper/aft_hallway) -"xgj" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +"xgh" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, -/area/almayer/command/airoom) -"xgl" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"xgk" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xgm" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, /turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) +/area/almayer/engineering/upper_engineering/starboard) "xgr" = ( /obj/structure/ladder{ height = 1; @@ -65869,17 +66482,51 @@ }, /turf/open/floor/plating/almayer, /area/almayer/maint/hull/lower/l_a_p) -"xgH" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"xhc" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, +"xgJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"xgN" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xhd" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) +/area/almayer/living/briefing) +"xgP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/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/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xhn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "xhx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -65887,9 +66534,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"xhL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/north, +"xhO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xhQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "xhU" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -65908,34 +66558,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"xia" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/soap, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"xif" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) "xik" = ( /obj/structure/machinery/shower{ dir = 8 @@ -65944,9 +66566,10 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xiI" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) +"xiH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "xiP" = ( /obj/structure/closet/secure_closet/engineering_welding{ req_one_access_txt = "7;23;27" @@ -65976,25 +66599,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) -"xjc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"xjf" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"xjp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/toy/crayon/blue{ - pixel_x = -9; - pixel_y = -5 +"xjb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + name = "\improper Main Kitchen"; + req_one_access_txt = "30;19" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "xjt" = ( /obj/structure/surface/table/woodentable/fancy, @@ -66004,280 +66615,188 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"xjH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"xjI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"xjW" = ( -/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/hallways/hangar) -"xka" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"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) -"xks" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend, -/obj/item/desk_bell{ - pixel_x = -6; - pixel_y = 10; - anchored = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"xkz" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xkC" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"xjz" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/command/lifeboat) +"xjD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xjF" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xkJ" = ( -/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 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"xkP" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"xkQ" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"xkT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xkX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/command/cic) -"xlc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"xle" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = 3; + pixel_y = 27 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 27 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xlk" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"xlz" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/tool/pen, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"xjK" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"xlA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"xlQ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"xlT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xjW" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"xmf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"xka" = ( +/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/dark_sterile, -/area/almayer/medical/operating_room_three) -"xml" = ( -/obj/structure/machinery/cm_vending/clothing/leader/delta, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"xms" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"xmQ" = ( -/obj/structure/bed/chair/office/dark{ +/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) +"xkB" = ( +/obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/turf/open/floor/almayer/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"xng" = ( +"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 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xlk" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"xlC" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/ce_room) +"xlO" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"xni" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xmg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"xno" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"xmn" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"xnp" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xmJ" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xnr" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"xnx" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/living/port_emb) +"xmP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"xmT" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/fore_hallway) -"xnF" = ( /obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"xnh" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xnz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"xnH" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) "xnI" = ( /obj/effect/landmark/start/requisition, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"xnN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"xnX" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xoe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"xnS" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"xnZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"xoi" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) "xoj" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) @@ -66287,199 +66806,108 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"xot" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"xov" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) "xoB" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/upper/u_f_s) -"xoC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +"xoJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xoD" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"xoO" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"xpc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xpi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"xoQ" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/mirror{ + pixel_x = -29 }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"xoV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xpd" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/auxiliary_officer_office) -"xpj" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/plants{ - pixel_x = -3 - }, -/obj/item/storage/bag/plants{ - pixel_x = 3 - }, -/obj/item/storage/bag/plants{ - pixel_y = -3 - }, -/obj/item/tool/scythe, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"xpt" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"xpD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"xpF" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"xpJ" = ( -/obj/structure/cargo_container/wy/mid, -/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 = -22; - pixel_y = 3; - serial_number = 11 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"xpl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 42 +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"xpo" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, +/area/almayer/command/aist_office) +"xpw" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) "xpL" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"xpP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"xpR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 +"xpT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xpZ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xqf" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xqg" = ( -/obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "xqh" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldingtool, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_s) -"xqo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"xqt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"xqp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_med"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/structure/machinery/xenoanalyzer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xqv" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) "xqy" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -66491,63 +66919,47 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_four) -"xqB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"xqC" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) "xqD" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17 }, /turf/closed/wall/almayer, /area/almayer/command/securestorage) -"xqT" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"xqW" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"xrf" = ( -/obj/structure/machinery/light{ - dir = 1 +"xqQ" = ( +/obj/structure/machinery/door/poddoor/almayer/blended{ + id = "RoomDivider"; + layer = 3.1; + name = "\improper Room Divider" }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"xri" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"xrg" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"xrs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"xrq" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"xrt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/structure/sign/safety/rewire{ + pixel_x = 12; + pixel_y = -24 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) "xry" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -66562,15 +66974,20 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"xrK" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"xrN" = ( -/obj/structure/bed/chair/comfy/black{ +"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/greencorner/north, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xrI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "xrT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -66581,28 +66998,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) -"xse" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"xsh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) "xsi" = ( /obj/structure/stairs{ dir = 1 @@ -66612,46 +67007,37 @@ vector_x = -102; vector_y = 61 }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xsm" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/port) -"xsq" = ( -/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 = 5; - pixel_y = -2 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xsl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/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) -"xsB" = ( -/obj/structure/sign/safety/escapepod{ +"xsv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xsw" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"xsz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) "xsQ" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/glass{ @@ -66666,69 +67052,10 @@ /obj/item/weapon/dart/green, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"xtb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/small{ - dir = 4; - pixel_y = -12 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"xtc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8; - autoname = 0; - c_tag = "AI - Secondary Processors" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"xte" = ( +"xtM" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"xty" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"xtJ" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"xtZ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) "xub" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66749,39 +67076,39 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"xul" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xuA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"xuB" = ( -/obj/structure/barricade/handrail/medical{ - dir = 4 +"xuy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"xuL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"xuM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "19" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"xuE" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 5"; + locked = 1; + name = "\improper Containment Cell 5" }, -/obj/effect/landmark/map_item, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "19" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) +/area/almayer/medical/containment/cell) "xuQ" = ( /obj/structure/bed/chair{ dir = 4 @@ -66790,28 +67117,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"xuR" = ( -/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/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"xuV" = ( -/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/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) "xuY" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -66819,131 +67124,114 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"xvg" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" +"xuZ" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"xvE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"xvQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8 }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"xvX" = ( +/obj/structure/machinery/cm_vending/gear/leader, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xvx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"xvz" = ( -/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 +/area/almayer/squads/bravo) +"xwd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"xvA" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ +/area/almayer/maint/hull/lower/l_m_s) +"xwl" = ( +/obj/structure/window/reinforced{ dir = 4; - pixel_x = -12; - pixel_y = 13 + health = 80 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"xvI" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"xwm" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"xvJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/area/almayer/hallways/lower/port_fore_hallway) +"xwp" = ( +/obj/item/storage/box/matches{ + pixel_x = -11; + pixel_y = -3 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = 8; + pixel_y = 4 }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) -"xvK" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"xvV" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"xwa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"xwu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 +"xwE" = ( +/obj/structure/bed/chair/comfy/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xwU" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Comms"; + dir = 1 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17; - pixel_y = -7 +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"xwX" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"xxa" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 }, -/turf/open/floor/almayer/green/west, +/obj/structure/surface/rack, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) -"xwH" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +"xxh" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/prop/magazine/boots/n160{ + layer = 2.8; + pixel_x = 4; + pixel_y = -8 }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"xxg" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) "xxi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -66991,218 +67279,168 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"xxp" = ( -/obj/item/trash/chips{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/trash/cheesie, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"xxs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"xxv" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/tech{ - layer = 4.1; - pixel_y = 12 +"xxB" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"xxG" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/obj/structure/window/reinforced{ - dir = 4; +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/mob/living/simple_animal/mouse/brown{ - name = "rat" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 + pixel_y = 16 }, /turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"xxw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" +/area/almayer/maint/hull/lower/l_m_s) +"xxI" = ( +/obj/structure/cargo_container/wy/mid, +/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 = -22; + pixel_y = 3; + serial_number = 11 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"xxA" = ( -/obj/structure/machinery/cryopod/right{ - dir = 2 +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"xxB" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"xxJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 42 }, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xyd" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) +/area/almayer/hallways/hangar) +"xxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) "xyk" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"xyB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"xyE" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"xyM" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/living/cryo_cells) -"xyN" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution_storage) -"xyR" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"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) -"xzb" = ( +"xyp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"xzh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"xzo" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"xyt" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"xzq" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"xzs" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 12 }, -/obj/structure/window/reinforced/ultra{ - dir = 1 +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 }, -/obj/structure/window/reinforced/ultra{ - dir = 8 +/obj/item/folder/white{ + layer = 2.9; + pixel_x = -8 + }, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"xyw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xyB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/briefing) -"xzB" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xzP" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/hallways/upper/port) +"xyL" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xyN" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution_storage) +"xyQ" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/lower/repair_bay) +"xyY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/almayer/green/east, +/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{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/basketball) +"xzh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"xzx" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"xzX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/maint/upper/u_m_s) +"xzB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xzI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "xAe" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell) +"xAt" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "xAu" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8; @@ -67210,31 +67448,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) -"xAx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_aft_hallway) -"xAK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"xAB" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"xAI" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/offices) -"xAL" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) "xAY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -67244,39 +67476,18 @@ "xBe" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/upper_engineering) -"xBm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"xBn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D3"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"xBK" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"xBp" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"xBw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"xBx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"xBN" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xBP" = ( -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) +/area/almayer/maint/hull/upper/u_f_p) "xBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -67284,6 +67495,16 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"xBS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xBV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "xBW" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -67304,40 +67525,25 @@ "xBY" = ( /turf/open/floor/almayer, /area/almayer/engineering/laundry) -"xCc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) +"xCa" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xCb" = ( +/obj/structure/closet/secure_closet/fridge/dry, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "xCf" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"xCi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"xCj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xCw" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) +"xCs" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/upper/midship_hallway) "xCy" = ( /obj/structure/sign/safety/maint{ pixel_x = -19; @@ -67358,228 +67564,161 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) -"xCF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"xDe" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"xCS" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"xDk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/port) +"xDn" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xDy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"xDv" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) +/area/almayer/maint/upper/u_f_p) "xDC" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"xDR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"xDZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"xDF" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xDP" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 4; + c_tag = "AI - AIST Office"; + autoname = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/west, +/area/almayer/command/aist_office) +"xDV" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/red/north, +/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) -"xEi" = ( -/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/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) "xEs" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"xEu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; +"xEz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ pixel_x = -17 }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xEw" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"xEK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"xEM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "northcheckpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xFa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"xEO" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"xEX" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xFh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/living/offices) "xFt" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"xFu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"xFx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"xFP" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/starboard_missiles) +"xFZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, /area/almayer/living/gym) -"xFF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) -"xFL" = ( -/obj/structure/machinery/light/small{ +"xGh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"xGm" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"xFV" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"xGo" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xGE" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + pixel_y = -1 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"xFY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xGa" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"xGd" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, +/area/almayer/squads/bravo) +"xGF" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, /turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"xGm" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/almayer/maint/hull/upper/u_f_p) +"xGI" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"xGv" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"xGJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"xGx" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer/silver, +/turf/open/floor/almayer/red/west, /area/almayer/living/briefing) -"xGG" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +"xGK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/port) -"xGM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 }, -/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"xGZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/area/almayer/maint/hull/upper/u_a_p) +"xGT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/area/almayer/maint/hull/lower/l_m_p) "xHa" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -67588,103 +67727,58 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"xHd" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"xHj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = 7 - }, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17; - pixel_y = -6 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"xHm" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"xHn" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +"xHl" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"xHo" = ( -/obj/structure/machinery/power/apc/almayer{ +/area/almayer/hallways/lower/vehiclehangar) +"xHp" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"xHt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xHv" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"xHx" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer/orange/northeast, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) -"xHC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) -"xHF" = ( -/obj/structure/machinery/light{ - dir = 1 +"xHS" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"xHL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"xIb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"xIf" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend/north, -/obj/item/desk_bell{ - pixel_x = -6; - pixel_y = -8; - anchored = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"xHX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"xId" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "xIj" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) +"xIk" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) "xIq" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -67692,28 +67786,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/evidence_storage) -"xIF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"xIu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"xIN" = ( -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"xIP" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -14; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) "xIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/offices) -"xIR" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) "xIV" = ( /turf/open/floor/almayer, /area/almayer/maint/upper/mess) @@ -67737,49 +67829,22 @@ /obj/item/poster, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"xJk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, +"xJe" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/shipboard/brig/cells) +"xJh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"xJp" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"xJA" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"xJI" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext"; - name = "Window Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "28" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_x = -26; - pixel_y = 1; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"xJQ" = ( -/obj/structure/machinery/door_control{ - id = "or04"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) +"xJH" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie_delta_shared) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -67796,34 +67861,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xKn" = ( -/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 +"xJV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xKu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/book/manual/surgery{ - pixel_y = 4 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"xKD" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) "xKG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -67836,17 +67886,16 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"xKO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"xKM" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"xKQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) "xKT" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/machinery/power/apc/almayer{ @@ -67854,53 +67903,66 @@ }, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"xLd" = ( +"xLi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"xLh" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/hangar) -"xLr" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) +/area/almayer/living/briefing) +"xLl" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"xLn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/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" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"xLz" = ( -/obj/structure/largecrate, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"xLK" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +"xLw" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"xLX" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"xLN" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/hydroponics) -"xMb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) +"xMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "xMl" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -67911,22 +67973,60 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"xMn" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"xMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) -"xMH" = ( -/obj/structure/machinery/light{ - dir = 8 +"xMz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"xMA" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"xMB" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/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/plate, +/area/almayer/shipboard/panic) +"xML" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "xMO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -67945,12 +68045,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"xMZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"xNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) +/area/almayer/hallways/hangar) "xNf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67960,68 +68064,72 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"xNm" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xNB" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"xNQ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"xNg" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"xOg" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"xOr" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"xOt" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"xOu" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/engineering/lower) +"xNj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"xNu" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"xNv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"xNz" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"xOz" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Right"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"xOA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/storage/box/cups{ + pixel_x = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/storage/box/donkpockets{ + pixel_y = 19 }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"xOG" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"xNM" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"xOs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"xOG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -68030,39 +68138,77 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"xOS" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +"xOT" = ( +/obj/structure/closet/secure_closet/fridge/meat/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xOY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"xOX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/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/silver/east, +/area/almayer/hallways/lower/repair_bay) +"xPq" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower/engine_core) -"xOZ" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_lobby) -"xPw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"xPB" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) "xQa" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /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/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xQe" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xQg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/pilotbunks) "xQj" = ( /obj/item/pipe{ dir = 4; @@ -68070,80 +68216,78 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"xQr" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ +"xQm" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"xQz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"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/plate, +/area/almayer/maint/hull/upper/p_stern) +"xRj" = ( +/obj/structure/bed/chair{ dir = 8; - plane = -6 + pixel_y = 3 }, -/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/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/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/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/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/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"xQu" = ( -/obj/structure/transmitter/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"xRk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"xQV" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xRp" = ( -/obj/structure/bed/chair/comfy/black{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/view_objectives{ dir = 4 }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/chief_mp_office) -"xRq" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xRs" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"xRw" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/living/briefing) +"xRH" = ( +/obj/structure/sign/safety/fibre_optics{ pixel_y = 32 }, -/obj/structure/sign/safety/west{ +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/fore_hallway) -"xRt" = ( -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"xRx" = ( -/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/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xRC" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"xRJ" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "xSg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/pipes/vents/scrubber/no_boom{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build/white/ai_floor1, +/area/almayer/command/aist_office) "xSw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -68154,49 +68298,16 @@ }, /turf/open/floor/plating, /area/almayer/squads/charlie) -"xSy" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"xSB" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"xSI" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"xSx" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xSz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "xSM" = ( /obj/structure/machinery/light{ dir = 8 @@ -68208,41 +68319,19 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"xSN" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"xSP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xTb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xTd" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"xTf" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" +"xSW" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"xSY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 4; - pixel_y = -8; - autoname = 0; - c_tag = "AI - Main Staircase" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) "xTu" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -68252,29 +68341,17 @@ "xTx" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/upper/u_f_p) -"xTF" = ( -/obj/structure/toilet{ - dir = 8 - }, +"xTG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"xTJ" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"xTL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) +/area/almayer/maint/hull/upper/p_stern) +"xTH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) "xTR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -68284,53 +68361,75 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"xTY" = ( -/obj/structure/bed/chair{ - dir = 4 +"xTW" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) "xUa" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xUb" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge1" +"xUy" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xUz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/aicore/no_build/white/ai_silver/north, +/area/almayer/command/aist_office) +"xUA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/life_support{ + pixel_x = -17 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"xUB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"xUV" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"xUr" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/command/combat_correspondent) +"xUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"xUx" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"xUL" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"xUP" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"xUR" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "xVc" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -68342,41 +68441,29 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"xVg" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = -20 +"xVe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) "xVk" = ( /turf/open/space, /area/space/almayer/lifeboat_dock) -"xVn" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"xVt" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"xVz" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/starboard_missiles) -"xVE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) "xVF" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"xVI" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "xVS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -68393,24 +68480,22 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"xWb" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"xWe" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) +"xVY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"xWd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/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" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "xWp" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) @@ -68420,22 +68505,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"xWC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"xWM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 12; - pixel_y = -24 +"xWO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "xWT" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -68450,23 +68526,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"xXb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) +"xXa" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"xXd" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) "xXh" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell) -"xXi" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 +"xXj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) "xXl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -68477,27 +68557,26 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"xXw" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"xXz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"xYd" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 +"xXr" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xXT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"xXW" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xYf" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) "xYr" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -68520,16 +68599,10 @@ "xYP" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"xYS" = ( -/obj/structure/bed, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"xYV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +"xYQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "xYZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68539,29 +68612,45 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"xZm" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 +"xZk" = ( +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"xZp" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xZE" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -10; + pixel_y = 10 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/weapon/broken_bottle{ + layer = 4.51; + pixel_x = 9; + pixel_y = 1 }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) +/area/almayer/living/briefing) +"xZt" = ( +/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/green, +/area/almayer/hallways/upper/fore_hallway) "xZG" = ( /obj/structure/machinery/light{ dir = 4 @@ -68583,73 +68672,78 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_umbilical) -"xZN" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"xZO" = ( +"xZR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, /turf/open/floor/almayer/orange/east, -/area/almayer/command/telecomms) -"yae" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/area/almayer/hallways/lower/starboard_midship_hallway) +"xZU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"yal" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"yac" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"yap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/almayer/living/chapel) +/area/almayer/hallways/lower/starboard_fore_hallway) "yat" = ( /turf/closed/wall/almayer, /area/almayer/maint/upper/u_a_p) -"yaG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"yaz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Officer's Study" }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"yaH" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"yaN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/area/almayer/living/officer_study) +"yaF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/cryo_cells) +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "yaQ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 9 }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"yaY" = ( -/obj/structure/machinery/light{ - dir = 1 +"yaX" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "31" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/hallways/lower/vehiclehangar) "yaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -68657,28 +68751,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"ybi" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"ybk" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) "ybm" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat{ @@ -68690,21 +68762,12 @@ pixel_y = 6 }, /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) -"ybs" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ybz" = ( /obj/structure/machinery/brig_cell/cell_4{ pixel_x = 32; @@ -68712,12 +68775,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"ybL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) "ybP" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -68726,15 +68783,17 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_umbilical) -"ybU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"ybZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"ybW" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) "ycd" = ( /obj/structure/bed/chair{ dir = 8; @@ -68751,58 +68810,71 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ycz" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"ycA" = ( -/obj/structure/machinery/light{ +"ycx" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ycH" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/margherita{ + pixel_y = 8 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ycM" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ycF" = ( -/obj/structure/surface/rack, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ycR" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/maint/hull/upper/u_m_p) +"ycZ" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"yde" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ydf" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ydh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/obj/structure/surface/table/reinforced/black, +/obj/item/tank/oxygen, /turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"ydx" = ( -/obj/structure/pipes/vents/pump, +/area/almayer/engineering/upper_engineering/port) +"ydz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/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/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"ydE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, /turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) -"ydF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) "ydI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -68810,6 +68882,41 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) +"ydM" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"ydO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"ydY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"yeg" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) "yei" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -68820,16 +68927,32 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) -"yez" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) "yeH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"yeN" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; @@ -68838,12 +68961,20 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"yeT" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"yfd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"yff" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) "yfg" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -68851,12 +68982,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"yfl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"yfm" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, /turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/squads/delta) +"yfn" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "yfy" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -68864,10 +68998,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) -"yfF" = ( -/obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) "yfG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -68880,20 +69010,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"yfH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"yfI" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) "yfS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -68901,22 +69017,13 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"ygj" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"ygo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = 27; - req_one_access_txt = "4;28" +"yge" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "ygp" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -68935,34 +69042,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"ygW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"yhb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc04"; - name = "\improper Treatment Center" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"yhc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"yhf" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper High Security Storage" +"ygB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/green/southeast, +/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/cargo, +/area/almayer/engineering/lower/engine_core) "yhg" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -68971,64 +69065,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"yhk" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"yhn" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"yhz" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"yhB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"yhG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"yhM" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"yht" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"yhI" = ( +/turf/open/floor/almayer/red/east, +/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) -"yhX" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +"yhV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) "yhZ" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/lower/p_bow) @@ -69036,6 +69095,12 @@ /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/plate, +/area/almayer/maint/hull/lower/l_m_s) "yiu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -69045,39 +69110,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) -"yix" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"yiD" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"yiF" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/cic) -"yiM" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"yiN" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/living/briefing) -"yiP" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "AIST Office"; - dir = 8 +"yiW" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/aicore/glowing/no_build/white/ai_floor3, -/area/almayer/command/aist_office) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) "yiX" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -69089,47 +69128,32 @@ }, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"yjc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 +"yjb" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lockerroom) -"yjm" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"yjn" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"yjq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext" }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) "yjr" = ( /obj/docking_port/stationary/escape_pod/north, /turf/open/floor/plating, /area/almayer/maint/upper/u_f_s) -"yjB" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 6 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"yjC" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +"yjE" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"yjD" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) +/area/almayer/maint/hull/lower/stern) "yjG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -69139,77 +69163,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"yjH" = ( -/obj/structure/machinery/light{ - dir = 1 +"yjM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"yjU" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"ykj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Rest and Relaxation Area" }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"yjJ" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"yjL" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/area/almayer/living/grunt_rnr) +"yko" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"ykb" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"ykv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) "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 = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ylz" = ( -/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/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"ylB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"ylG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/upper/mess) -"ylL" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) +"yle" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ylh" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor5, +/area/almayer/engineering/lower/engine_core) "ylN" = ( /obj/structure/sign/safety/galley{ pixel_x = 8; @@ -69217,16 +69220,14 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"ylQ" = ( -/obj/structure/machinery/light{ - dir = 4 +"ymg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/tofukabob, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) (1,1,1) = {" aaa @@ -75973,15 +75974,15 @@ bdH bdH aaa aaa -bBr -wLo -wLo -wLo -wLo -wLo -wLo -wLo -plE +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY aaa aaa aaa @@ -76176,7 +76177,7 @@ aaa aaa aaa aaa -kfC +aad feb feb feb @@ -76184,7 +76185,7 @@ feb feb feb feb -uQY +ajZ aaa aaa aaa @@ -76374,25 +76375,25 @@ aaa aaa aaa aaa -bBr -wLo -wLo -wLo -wLo +aac +aaf +aaf +aaf +aaf aag feb -evf +qmR oog -vFt -iNe -rXP +dsA +rbK +tmH feb aag -wLo -wLo -wLo -wLo -plE +aaf +aaf +aaf +aaf +ajY aaa aaa aaa @@ -76577,14 +76578,14 @@ aaa aaa aaa aaa -kfC +aad hPI hPI hPI hPI hPI feb -eEC +dhd oog jNT fag @@ -76595,7 +76596,7 @@ hRu hRu hRu hRu -uQY +ajZ aaa aaa aaa @@ -76778,8 +76779,8 @@ aaa aaa aaa aaa -bBr -wLo +aac +aaf aag hPI naB @@ -76787,20 +76788,20 @@ naB naB naB mtl -ecp +vdl nPb fZX dBS nSu rXE xyN -lOK -kIW -fgy +ltO +tBP +tfE hRu aag -wLo -plE +aaf +ajY aaa aaa aaa @@ -76981,29 +76982,29 @@ aaa aaa aaa aaa -kfC +aad uDg uDg hPI -mIg -cUI -cLL +pQr +rib +vtG naB mtl -bkP +eCI nOC -tWb -rYF -fBp +qVF +xdJ +kzr jqY -eQT +elV dJJ dJJ -jNQ +glP hRu xiV xiV -uQY +ajZ aaa aaa aaa @@ -77176,45 +77177,45 @@ aaa aaa aaa aaa -bBr -wLo -wLo -wLo -wLo -wLo -wLo -wLo +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf uDg uDg lHk naB -dUF +wnw pHp -eYO -rCM +fgl +dya fLF kEq mtl mtl mtl mtl -hkp +ewI xyN -cTE -xtb -mws +hdQ +hUU +cXD xyN igS xiV xiV -wLo -wLo -wLo -wLo -wLo -wLo -wLo -plE +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY aaa aaa aaa @@ -77379,7 +77380,7 @@ aaa aaa aaa aaa -kfC +aad uDg uDg uDg @@ -77389,25 +77390,25 @@ uDg uDg uDg aPN -eKP +lSJ naB -mIg -vnd -eXj +pQr +jeR +wvI vPf fvA qPD -brG -bhc -oAW -veN +vcm +tul +mNK +gtU bjk xyN xyN xyN xyN xyN -egG +iuf pnh xiV xiV @@ -77417,7 +77418,7 @@ xiV xiV xiV xiV -uQY +ajZ aaa aaa aaa @@ -77582,15 +77583,15 @@ aaa aaa aaa aaa -kfC +aad uDg -jYn -qpc +cth +gkr xkc oGj -eeH +iVD xkc -ePJ +mph nlh rGr naB @@ -77598,29 +77599,29 @@ naB naB naB naB -iOe +dcy qPD qPD qPD qPD quJ rdA -iNX -kwx -ptk +dbs +sql +jyY rwe -jlI +pdp hZw xYr -ncD -jlI -hph +mjs +pdp +ohu iUh -jlI -jlI -hqG +pdp +pdp +kSn xiV -uQY +ajZ bdH bdH aaa @@ -77783,23 +77784,23 @@ aaa aaa aaa bdH -bBr -wLo +aac +aaf aag uDg -qpc +gkr xkc -qpc +gkr vAg gxI -rvc +kqC bBU xkc -pnK +eeA naB -mIg -ulh -eXj +pQr +ggS +wvI piK fvA qPD @@ -77807,7 +77808,7 @@ wZL ffg ffg wsh -lvq +eMJ xkd xkd xkd @@ -77816,16 +77817,16 @@ xkd xkd lRt tsE -iFb +iVG hmA hmZ oDh oDh -jlI +pdp xiV aag -wLo -plE +aaf +ajY bdH aaa aaa @@ -77895,27 +77896,27 @@ aaa aaa aaa aaa -bBr -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -plE +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY aaa aaa aaa @@ -77986,31 +77987,31 @@ aaa aaa bdH bdH -kfC +aad aag uDg uDg -qpc +gkr xkc hvd hvd hvd hvd hvd -enn +bLF eyD naB -ljn +kry pHp -eYO -bWU +fgl +xXj qXE qPD sPF qPD qPD uQm -lzz +stO xkd teE xJT @@ -78023,12 +78024,12 @@ xkd xkd xkd xkd -jlI +pdp oDh xiV xiV aag -uQY +ajZ bdH bdH aaa @@ -78098,7 +78099,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -78118,7 +78119,7 @@ aag aag aag aag -uQY +ajZ aaa bdH bdH @@ -78189,49 +78190,49 @@ aaa bdH bdH bdH -kfC +aad aag uDg -trc -qpc -jYn +pOp +gkr +cth hvd -bvA -bmL -uNl +ddj +wlg +fuY hvd cQG -hpX +jXc naB -mIg -dBl -xTF +pQr +bsp +hCV naB naB -rno -sCj -rkL +uUu +qCU +qZF qPD iQd -pyk +qJo xkd -xia -oww -tgU +vWG +lJL +dQp vlM -gmL -pHM +iHG +dCe moB -htv -cqx -chd +uns +vCy +eyV xkd -umR +mkF oDh -jlI +pdp xiV aag -uQY +ajZ bdH bdH aaa @@ -78301,7 +78302,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -78321,7 +78322,7 @@ aag aag aag aag -uQY +ajZ aaa bdH bdH @@ -78392,19 +78393,19 @@ bdH bdH bdH bdH -kfC +aad aag uDg -sPN +lDT xkc xyZ hvd -jCp +vGn ehl ehl -kQv +uXu cQG -dJZ +alp naB naB naB @@ -78414,8 +78415,8 @@ naB nVR nVR nVR -kkg -vJT +nux +tau nVR xkd xik @@ -78425,16 +78426,16 @@ kmd tUx ebd tHS -otU +xGh jVa -uCA +wDs xkd -fsA +oHf oDh -jlI +pdp xiV aag -uQY +ajZ bdH bdH aaa @@ -78498,16 +78499,16 @@ aaa aaa aaa bdH -bBr -wLo -wLo -wLo -wLo -wLo +aac +aaf +aaf +aaf +aaf +aaf aag dqw -bSC -bSC +bDF +bDF dqw aag aag @@ -78519,18 +78520,18 @@ aag aag aag dqw -bSC -bSC +bDF +bDF dqw aag aag aag -wLo -wLo -wLo -wLo -wLo -plE +aaf +aaf +aaf +aaf +aaf +ajY bdH aaa aaa @@ -78595,31 +78596,31 @@ aaa bdH bdH bdH -kfC +aad aag uDg xkc -qpc +gkr hvd hvd iRp iRp iRp hvd -mWw -vHD -uoM -tzY -sJB -eeL -qdb +cyc +vzy +fqQ +kHo +sFu +hnE +tTO wFs -lgz -aRk -waL -gaT +nkX +iQB +cmv +vzk phN -jcw +iVP xkd xkd xkd @@ -78628,16 +78629,16 @@ umW iOD iOD tHS -mwT +sqW tUx -tjk +wRN xkd xkd -jlI +pdp oDh xiV aag -uQY +ajZ bdH bdH aaa @@ -78701,7 +78702,7 @@ aaa aaa aaa bdH -kfC +aad aag nBJ nBJ @@ -78733,7 +78734,7 @@ wid wid wid aag -uQY +ajZ bdH aaa aaa @@ -78798,49 +78799,49 @@ aaa bdH bdH bdH -kfC +aad aag lrE xkc -qpc +gkr hvd -msX -glM +iUX +gii gIO gIO hvd -rcT +gYx oyC bKI xhU xhU jCX -smd -iWT -kTS -kTS -kTS -kTS +sEz +iNh +wdF +wdF +wdF +wdF cMl -cqW +icZ xkd -oZS -jRf +uvY +oBq xkd wKJ jVa jVa tHS -uKT +sVc tUx -cjs -hQy +xJe +qLt xkd -jlI +pdp oDh cPj aag -pms +etE bdH bdH aaa @@ -78904,7 +78905,7 @@ aaa aaa aaa bdH -kfC +aad aag nBJ kJc @@ -78912,8 +78913,8 @@ jFt bAs bAs bAs -bSC -bSC +bDF +bDF bAs bTT bTT @@ -78925,18 +78926,18 @@ aag aag bAs bAs -bSC -bSC +bDF +bDF bAs bTT bTT bTT bAs -giG +kOR jYM wid aag -uQY +ajZ bdH aaa aaa @@ -79001,49 +79002,49 @@ aaa bdH bdH bdH -kfC +aad aag lrE -qpc +gkr xkc hvd -msX -xaa -qOt -oNX -oUr +iUX +gJE +cKJ +hyV +keG cQG cQG -elT -msK -msK -smd -msK -kcT -xaE -xaE -xaE -nVz +ugw +cwC +cwC +sEz +cwC +uun +oRk +oRk +oRk +utZ cMl -tpq +hTt kMH tUx iTI -srx +dmZ eZH jVa jVa tHS -otU +xGh ycm qCo -kNI +pWr xkd -wLY +aGa oDh cPj aag -uQY +ajZ bdH bdH aaa @@ -79107,17 +79108,17 @@ aaa aaa aaa bdH -kfC +aad aag nBJ -ybL +rUi grv bBA -qHZ -mtn -ybW -ybW -ybW +bAK +bCY +bDO +bDO +bDO bHI bJS bAs @@ -79128,18 +79129,18 @@ aag aag bAs bHP -oAJ -oAJ -ybW +sSc +sSc +bDO acr -fqY -oKj +bPG +acN bBA -gyQ -dau +gTK +fWg wid aag -uQY +ajZ bdH aaa aaa @@ -79204,10 +79205,10 @@ aaa bdH bdH bdH -kfC +aad aag lrE -eLq +vDh xkc lrq lrq @@ -79216,19 +79217,19 @@ lrq lrq lrq lrq -qrM -jBh +uhA +aaP tpn tpn -llV +srT tpn tpn -mCU -gOj -pdB -usx +xjF +myP +gDt +bju cMl -nDe +lMc xkd qFu xkd @@ -79237,16 +79238,16 @@ vdM jVa wtM moB -cZx +sXQ cyZ jVa -hiH +fJT xkd rfB -jlI +pdp cPj aag -tUE +eSU bdH bdH aaa @@ -79310,17 +79311,17 @@ aaa aaa aaa bdH -kfC +aad aag nBJ -qgf +uRR mFQ bBA -iyr -mtn -ybW -ybW -ybW +hWJ +bCY +bDO +bDO +bDO bHP bJT bAs @@ -79331,18 +79332,18 @@ bAs bAs bAs bNl -oAJ -oAJ -ybW +sSc +sSc +bDO bHP -fqY -qbA +bPG +hpk bBA yhZ -wIw +wtD wid aag -uQY +ajZ bdH aaa aaa @@ -79407,10 +79408,10 @@ aaa bdH bdH bdH -kfC +aad aag uDg -jYn +cth qsp lrq kEc @@ -79420,36 +79421,36 @@ uhE vKB lrq vjB -eOc +gIz tpn -vIs +eVR cak -pLV +vrM tpn -hUB -rbC -ifw -usx +mHb +hjM +xTH +bju wSm -aIs +dEG xkd -oZS -fEl +uvY +duT xkd eZH jVa jVa moB moB -bFT -lal +dfk +vzz moB xkd gNZ -jlI +pdp xiV aag -uQY +ajZ bdH bdH aaa @@ -79513,39 +79514,39 @@ aaa aaa aaa bdH -kfC +aad aag nBJ -kPk -dVy -ohU -pGf -mtn -ybW -ybW -ybW -wZI +ecS +eQR +gol +akb +bCY +bDO +bDO +bDO +abU bHP avw -gGd -fTX -alI -gGd -fTX +bKn +bLk +bLw +bKn +bLk avw bHP -oAJ -oAJ -ybW -tvy -fqY -sST -ohU +sSc +sSc +bDO +bPn +bPG +ald +gol sGK hLu wid aag -uQY +ajZ bdH aaa aaa @@ -79610,35 +79611,35 @@ aaa bdH bdH bdH -kfC +aad aag uDg -xIP -qpc +cUl +gkr lrq -hRG -wuv -wuv -wuv -wuv -hEs +heo +nqe +nqe +nqe +nqe +tLa cQG -aWv +gfd tpn -kvE +rqS cak -pLV +vrM tpn -jxG -usx -kTS -kTS +pUD +bju +wdF +wdF wSm -bGr +dPT kVZ tUx iTI -lmI +nUj eZH tUx vrx @@ -79649,10 +79650,10 @@ tUx cXi xkd ttB -jlI +pdp xiV aag -oHq +twB bdH bdH aaa @@ -79716,39 +79717,39 @@ aaa aaa aaa bdH -kfC +aad aag nBJ -dVy +eQR xAu bBA -hTK -mtn -ybW -ybW -aVT -miv +bAN +bCY +bDO +bDO +bOq +bPo bHP avw -pGf -nQJ -oMD -jJj -sST +akb +axk +bLH +vuZ +ald avw bHP -oAJ -oAJ -aVT -miv -fqY -muv +sSc +sSc +bOq +bPo +bPG +acs bBA -pNJ +xHX sGK wid aag -uQY +ajZ bdH aaa aaa @@ -79813,11 +79814,11 @@ aaa aaa bdH bdH -kfC +aad aag lrE vOM -qpc +gkr lrq kui uqo @@ -79825,19 +79826,19 @@ pId qMD uqo lrq -gae -vdt +nVm +dRA tpn -wXD +gIU xIq -pLV +vrM tpn -ogY -lwK -hmQ -nXK +efT +nkF +hkH +kuJ sLA -ipz +jSw xkd qFu xkd @@ -79851,11 +79852,11 @@ nYd thL jVa fgR -sSF +nEc oDh cPj aag -uQY +ajZ bdH bdH aaa @@ -79919,39 +79920,39 @@ aaa aaa aaa bdH -kfC +aad aag nBJ ldF eox bBA -qah -lGP -tlf -huE -jle -jle -jle -kzB -iWX +bAO +bCZ +bDW +fya +ohA +ohA +ohA +bKb +akf jbX kNY jbX -spr -kzB -jle -jle -jle -knZ -tlf -bbK -qdn +tuZ +bKb +ohA +ohA +ohA +cFh +bDW +bPJ +iuz bBA -mel +mVh uMf wid aag -uQY +ajZ bdH aaa aaa @@ -80016,34 +80017,34 @@ aaa aaa bdH bdH -kfC +aad aag lrE etN xkc lrq -uZX -wuv -wuv -wuv -wuv -kjz +sEZ +nqe +nqe +nqe +nqe +mza cQG -riM +qvE tpn tpn tpn tpn tpn -sID -qQX -pYj -usx +xIu +xvQ +eDt +bju cMl -qeA +kAL xkd -oZS -kWG +uvY +sgE xkd qJZ ohJ @@ -80054,11 +80055,11 @@ liZ rUk jVa fgR -oVn -erW +azg +gKv cPj aag -trz +rEr bdH bdH aaa @@ -80122,39 +80123,39 @@ aaa aaa aaa bdH -kfC +aad aag nBJ ldF -dVy +eQR bBA -iSr +bAP aqu aqu -lKu -fQU -fQU -fQU +bEF +bNm +bNm +bNm avw -xnH -kGp -tMO -jaS -fvq +bKp +bLl +bLJ +bMS +bNe avw -fQU -fQU -fQU -ikN +bNm +bNm +bNm +bOs aqu aqu -blX +bQz bBA sGK vOG wid aag -uQY +ajZ bdH aaa aaa @@ -80219,10 +80220,10 @@ aaa aaa bdH bdH -kfC +aad aag lrE -qpc +gkr xkc lrq dEX @@ -80231,23 +80232,23 @@ fxJ fAr qmU lrq -nxN -vww -eRr +dmr +wLS +aVm cmM -jPJ -kTf +miy +iUG cmM -wIf -ckn -ckn -krz +snX +oIh +oIh +wNt cMl nlz vNp tUx iTI -nBe +qxe eZH ohJ thL @@ -80258,10 +80259,10 @@ rUk xaM fgR hIG -jlI +pdp cPj aag -uQY +ajZ bdH bdH aaa @@ -80325,16 +80326,16 @@ aaa aaa aaa bdH -kfC +aad aag nBJ vCE ldF bBA -sdH +bBu amg amg -xIF +bFa alU alU alU @@ -80348,16 +80349,16 @@ alU alU alU alU -mFB +bOM amg amg -opj +rAD bBA sGK -mel +mVh wid aag -uQY +ajZ bdH aaa aaa @@ -80422,7 +80423,7 @@ aaa aaa bdH bdH -kfC +aad aag uDg xkc @@ -80434,19 +80435,19 @@ iwV iwV lrq lrq -hFf -vww -sxl +kXt +wLS +eBx cmM -lsw -sls -vZG -kTS -kTS -kTS -kTS -gej -eGt +hAf +cNI +bbi +wdF +wdF +wdF +wdF +kQu +cqM xkd qFu xkd @@ -80464,7 +80465,7 @@ oDh uqg xiV aag -dxU +uJk bdH bdH aaa @@ -80528,39 +80529,39 @@ aaa aaa aaa bdH -kfC +aad aag nBJ -rFZ -dVy +amu +eQR bBA -sdH +bBu amg amg -soF +bFj alU -jLQ -rBc -bZA +bId +bJU +bKd alU -qhV -pCD -iIF +bLm +bTG +bMT alU -udn -bSh -nUq +bNi +bNn +bNq alU -nnT +bON amg amg -opj +rAD bBA -raH -axv +ozH +flr wid aag -uQY +ajZ bdH aaa aaa @@ -80625,34 +80626,34 @@ aaa aaa bdH bdH -kfC +aad aag uDg -qpc +gkr old cQv -sJN -tio -ebB -qtk +oVf +rmx +bvH +evR cQv cQv -lBA -pBC +rmk +nuZ cmM cmM -itO -cND +pdT +otp cmM tzd tzd sgi -usx +bju wSm -qeA +kAL xkd -oZS -kUu +uvY +qEA xkd eZo thL @@ -80664,10 +80665,10 @@ thL sUs xkd gNZ -jlI +pdp xiV aag -uQY +ajZ bdH bdH aaa @@ -80731,39 +80732,39 @@ aaa aaa aaa bdH -kfC +aad aag nBJ -sIH -dVy +kMW +eQR bBA -nmo +bBv aqu tkq -xIF +bFa alU -vCn +neO aoi -jMq -lKL -tCB +avB +bKq +ayw aoi -jMq -lKL -tCB +avB +bKq +ayw aoi -hTD +azA alU -vgl +bOO tkq aqu -rVA +bQG bBA uoO -mel +mVh wid aag -uQY +ajZ bdH aaa aaa @@ -80828,35 +80829,35 @@ aaa aaa bdH bdH -kfC +aad aag lrE -qpc +gkr wJC cQv cBw kde kde ajj -stQ +mZQ cQv -rTP -jKB +dFl +tUK kTp -vnH -ild -pqB +sYl +fgt +kCY kTp -ewJ -ckn +gHt +oIh eNR -usx +bju wSm ybz rrz tUx iTI -wCw +tlp lXb thL oXp @@ -80867,10 +80868,10 @@ thL xhx fgR oDh -jlI +pdp cPj aag -qOL +scz bdH bdH aaa @@ -80934,39 +80935,39 @@ aaa aaa aaa bdH -kfC +aad aag nBJ -mci -dVy +iWJ +eQR bBA -uOF +bBx amg bEw bFk -wJB +bHq let bJX bJX bKs -lVY -kuN -mMi +bLo +bMO +bMU bNf bJX bJX let -wJB +bHq bFk bPq amg -opj +rAD bBA sGK -gEJ +nhV wid aag -uQY +ajZ bdH aaa aaa @@ -81031,31 +81032,31 @@ aaa aaa bdH bdH -kfC +aad aag lrE -qpc -mQw +gkr +wMF cQv -nVr -uVW +eaf +bEv quj vgi -xRC +rXd cqJ -sMT -jKB +oJm +tUK kTp -gMt -yez -mIZ +hUh +nWS +xpw kTp -rOp -rOr -gsT -qta +neC +mjt +vqc +edo fTt -nDe +lMc xkd qFu xkd @@ -81069,11 +81070,11 @@ iFc thL tUx fgR -jlI +pdp hIG cPj aag -uQY +ajZ bdH bdH aaa @@ -81136,41 +81137,41 @@ aaa aaa aaa aaa -bBr +aac aag aag nBJ dKS ffN bBA -pif +bBy amg aoa -sST +ald alU -hzd +bIn bJY aoi bLh -bfb +bLp bMP -iDi +bNa bLh aoi bNo -jqo +bNt alU -pGf +akb aoa amg -qvb +bQE bBA -qnY +bME sGK wid aag aag -plE +ajY aaa aaa aaa @@ -81234,34 +81235,34 @@ aaa aaa bdH bdH -kfC +aad aag lrE xkc -eLq +vDh cQv -nVr -uVW +eaf +bEv lEe pGT pGT -ndS +vkM ksm -xri +bxE cmM oeZ -tSJ +wLF oeZ oeZ -hDb -xaE +ptq +oRk eNR -usx +bju cMl -aIs +dEG xkd -oZS -bVK +uvY +lSs xkd kbX ezX @@ -81272,11 +81273,11 @@ thL thL tUx fgR -jlI +pdp aCA cPj aag -ugO +okD bdH bdH aaa @@ -81339,41 +81340,41 @@ aaa aaa aaa aaa -kfC +aad aag nBJ nBJ -dVy -wDn +eQR +bTW bBA -qyk +bBz aqu bEx -onj +bQt alU -bZQ +bIw bJY sta rxK -bIL +amX bLh -hTD +azA pfa iLq bNo -tWU +bNS alU -boU +bPg bEx aqu -bnk +bQI bBA -hoa +gsy sGK wid wid aag -uQY +ajZ aaa aaa aaa @@ -81437,35 +81438,35 @@ aaa bdH bdH bdH -kfC +aad aag uDg xkc xkc cQv -nVr -uVW +eaf +bEv vyH ajj -xRC +rXd cqJ -sMT -jKB +oJm +tUK kTp -fmI -yez -hPp +uLE +nWS +cTy oeZ emp emp emp -xXw +iEx cMl qFE wDC tUx iTI -ebT +fKw pgP thL thL @@ -81475,11 +81476,11 @@ thL thL tUx xkd -jlI +pdp vhA xiV aag -uQY +ajZ bdH bdH aaa @@ -81542,41 +81543,41 @@ aaa aaa aaa aaa -kfC +aad aag nBJ ldF ldF xiP bBA -nyr +lsV amg ddz -sST +ald alU -hPz -dtq -mBn +bIx +bJZ +kyN bLi -pgC -wiX -oxr +bLq +bMR +bNb bNg -vKq -pkL -bbR +mTm +gjt +vJo alU -cUx -ghc +bPh +bPC amg -vcy +pyL bBA -nSA +cDb sGK -gEJ +nhV wid aag -uQY +ajZ bdH bdH bdH @@ -81640,31 +81641,31 @@ aaa bdH bdH bdH -kfC +aad aag uDg -sPN +lDT xkc cQv -nVr -uVW +eaf +bEv sBg uGN -xRC +rXd cQv -dpl -jKB +mAY +tUK kTp -sRb -yez -rCg +hoW +nWS +aIY oeZ -nfD -ckn -guX +cFC +oIh +sBQ skj tXc -eGt +cqM xkd qFu xkd @@ -81678,11 +81679,11 @@ thL thL tUx xkd -jlI +pdp oDh xiV aag -uQY +ajZ bdH bdH aaa @@ -81741,19 +81742,19 @@ aaa aaa aaa aaa -bBr -wLo -wLo -wLo +aac +aaf +aaf +aaf aag nBJ nBJ ldF -dVy -kTR +eQR +uFp bBA bBA -rEp +tiR bBA bBA alU @@ -81761,9 +81762,9 @@ bIy alU alU alU -sMm +syg alU -hTL +pQz alU alU alU @@ -81771,19 +81772,19 @@ pzW pzW pzW pzW -hTO +hNB pzW pzW -fTH -mel +ipB +mVh sGK wid wid aag -wLo -wLo -wLo -plE +aaf +aaf +aaf +ajY aaa aaa aaa @@ -81843,34 +81844,34 @@ aaa bdH bdH bdH -kfC +aad aag uDg -qpc +gkr qsp cQv -dRV -uVW +xLl +bEv kde ajj -iFg +tuk cQv -phI -jKB +kYU +tUK kTp -vha -yez -jYe +krO +nWS +glG oeZ -dCk +ehX mTN -hSh +hZJ iLG jXd -qeA +kAL xkd -oZS -cKf +uvY +cjk xkd pgP tUx @@ -81882,10 +81883,10 @@ vsz oEE xkd gNZ -jlI +pdp xiV aag -uQY +ajZ bdH bdH aaa @@ -81944,7 +81945,7 @@ aaa aaa aaa aaa -kfC +aad aag nBJ nBJ @@ -81955,38 +81956,38 @@ ldF bos bos bos -bmy -lMr -qOT +haR +uHT +jHn kcp bWJ nar alU -xUb -kXU +bXo +oCi bLs -pLv +mZM aoi -gYm -tjv +grG +bXY alU -gUT -atF -nTV -nqF -fWC -uua +xNM +ikl +eLp +dFM +lEV +mZP sDx sDx sDx -mel +mVh sGK wid wid wid wid aag -uQY +ajZ aaa aaa aaa @@ -82046,11 +82047,11 @@ aaa aaa bdH bdH -kfC +aad uDg uDg xkc -pnK +eeA cQv dzG kde @@ -82058,23 +82059,23 @@ ioV cQv tlk cQv -qrM -cwy +uhA +tCH oeZ oeZ -tSJ +wLF oeZ oeZ -mLc -tRE +mFc +fbr emp -weG +lze wSm slf bli tUx iTI -rcw +bQc pgP uVV iBl @@ -82082,13 +82083,13 @@ cHk rkV rkV cHk -oZk +vYi cHk pRs -jlI +pdp xiV xiV -uQY +ajZ bdH bdH aaa @@ -82147,49 +82148,49 @@ aaa aaa aaa aaa -kfC +aad aag nBJ -usT +fUz ldF -dVy +eQR ldF -goH +ikA bos gpO -lMr +uHT bKP -lMr -rIc +uHT +sGQ kcp -uiP -cun +wMv +nCR alU -uYe -wek +uDn +bKf bLs -wFG +bLj aoi -ngQ -jdP +bNk +ecZ alU -xBm -atF -pCW -jpy -jpy -jpy -fWC -ioy +odt +ikl +qAy +mua +mua +mua +lEV +eQz sDx -mel +mVh fJu -mel -bSr -dww +mVh +roj +qzA wid aag -uQY +ajZ aaa aaa aaa @@ -82249,49 +82250,49 @@ aaa aaa bdH bdH -kfC +aad uDg hzN -qpc -oJB +gkr +krG cQv -eMC -xni -knf +rdM +gUg +cov cqJ -pma -umK -gOr +may +hoK +mcp hzG eyD -rkx +ngr cDN -sIT -vYQ -ujI -dgO +peO +lEv +jic +qGf emp -usx +bju wSm -ipz +jSw emp emp emp emp -mfa +vbo emp emp cHk -vBY -kyz -qkz +hlI +ekZ +kvL oix cHk uxb oDh -jlI +pdp xiV -uQY +ajZ bdH bdH aaa @@ -82350,49 +82351,49 @@ aaa aaa aaa aaa -kfC +aad aag nBJ -kIy +lJM ldF -dVy +eQR ldF -smG +lyP bos gpO kcp kcp -jJO +iqp kcp kcp -fkE +jgl kcp alU alU alU -lIK +iTW alU -oYv +noo alU alU alU -lKm -uxf -jOb -jrE -gWo -gWo -gWo -evZ +wrr +kjw +hBr +tqQ +hgp +hgp +hgp +nef sDx mXm -mel +mVh sGK sGK -gEJ +nhV wid aag -uQY +ajZ aaa aaa aaa @@ -82452,49 +82453,49 @@ aaa aaa bdH bdH -kfC +aad uDg fHb -qpc +gkr vxM vxM vxM vxM vxM vxM -ehq +tfZ cQG cQG hzG eyD -cbR +tdy cDN oFY oFY yjG -gPR +ncl jcf -usx +bju cMl -viD +oeB emp -jke -ckn -hQs +slF +oIh +qUz ksg -ckn -wUO +oIh +iTl cHk -qfT +frt vUI tgJ wVh cHk cHk oDh -jlI +pdp xiV -uQY +ajZ bdH bdH aaa @@ -82553,40 +82554,40 @@ aaa aaa aaa aaa -kfC +aad aag nBJ -dVy -dVy +eQR +eQR ldF -dVy +eQR sxS bos gpO kcp -snK -rPa -rPa -rsd -qFR +bBD +bTS +bTS +lxo +qcy kcp -iOJ -iOJ +sub +sub tqf pHF vYd ghF eSp ghF -aEb -eXC -qCD +aFG +pPQ +juS mdk mdk mdk mdk mdk -jHa +kCd bSv bSv bSv @@ -82595,7 +82596,7 @@ bSv sGK wid aag -uQY +ajZ aaa aaa aaa @@ -82655,49 +82656,49 @@ aaa aaa bdH bdH -kfC +aad uDg xkc -qpc +gkr vxM -hEH -aqx -mxK -hJN +rfY +kGu +iqR +fyp wJh -sMT +oJm cQG cQG hzG -sOP -nfN +nzT +tff cDN oFY cQL npO -gPR +ncl jcf -usx +bju cMW qEy -wLa +vKr rQc oDy oDy wsq vxK -lNI -sYA +gwj +oiz csy csy bWQ deH szG cHk -jlI +pdp kIf xiV -uQY +ajZ bdH bdH aaa @@ -82756,24 +82757,24 @@ aaa aaa aaa aaa -kfC +aad aag nBJ ldF ldF -oxG -wmI -iXg +wcJ +jCr +nQn bos -lMr +uHT kcp -fhq -xpd -qAz -uCe -uCe +bTR +iEg +oQM +aqI +aqI kcp -qdr +bOw mYt jsR vPW @@ -82781,24 +82782,24 @@ vyB vyB vyB vyB -aEb -mjp -wDE +aFG +vFp +yaX sje sje sje sje sje jhS -tNf +qih bTH foN -pSm +cDZ bSv hLu wid aag -uQY +ajZ aaa aaa aaa @@ -82857,10 +82858,10 @@ aaa aaa aaa bdH -bBr +aac aag uDg -gBf +kac xkc vxM tQi @@ -82868,40 +82869,40 @@ wee wee fRS wJh -qBy +iFK ksm -iCc -uxR -qnm +haY +kaQ +vNT oSC uFq wsl wSu xIW -san +nah emp -eSm -xaE -xTd +gbw +oRk +jyb emp -pQk -xfL -fPL -nVz +bPH +rJj +mBx +utZ pyj jPP cHk -cKM -pqf -aUV -dTV +wxF +vJc +kUg +ifz fyI cHk -jlI -mHG +pdp +ome xiV aag -plE +ajY bdH aaa aaa @@ -82959,24 +82960,24 @@ aaa aaa aaa aaa -kfC +aad aag nBJ -kPk +ecS ldF bos bos bos bos -lMr +uHT kcp -uVP -eIA +lxW +hPh wGX bFr ppe kcp -fWC +lEV ghF ghF jak @@ -82984,9 +82985,9 @@ jdC jdC jdC jdC -xnp -kTk -ssG +wiQ +dEo +fGd sje sje sje @@ -82996,12 +82997,12 @@ jhS bSv tjw bTH -snp +bTV bSv sGK wid aag -uQY +ajZ aaa aaa aaa @@ -83060,26 +83061,26 @@ aaa aaa bdH bdH -kfC +aad aag uDg -edi +fco qsp vxM -dtx -mBQ -mBQ -mBQ -wlw +jvP +rDQ +rDQ +rDQ +ctT wXz -mPE -mqG +aNW +tvJ eyD eyD tsX tsX -fiS -lzc +epu +oLF tsX tsX emp @@ -83092,19 +83093,19 @@ emp emp emp wIC -pFG +lnh wIC rWn rWn cHk cHk -jBR +gxt cHk -lry +dJy aCA xiV aag -uQY +ajZ bdH bdH aaa @@ -83162,34 +83163,34 @@ aaa aaa aaa aaa -kfC +aad aag nBJ -dVy +eQR ldF bos -pKg -pOe +vkO +ibf bos rIw kcp -nFd -rol -wYW -bXb -suV -vRv -wND -wND -wND -jkP -fWC -fWC -fWC -fWC -aEb -jpy -wDE +wTN +kZN +rgK +hbu +iYe +bJl +yfd +yfd +yfd +kgS +lEV +lEV +lEV +lEV +aFG +mua +yaX sje sje oiX @@ -83201,10 +83202,10 @@ ifb bTH bSv xVT -axv +flr wid aag -uQY +ajZ aaa aaa aaa @@ -83263,10 +83264,10 @@ aaa aaa bdH bdH -kfC +aad aag uDg -sPN +lDT xkc vxM sbP @@ -83274,40 +83275,40 @@ sbP sbP sbP wJh -mWl -fQC +oWK +jwr eyD eyD -wME -oXg -jaZ +tHr +mqg +udR vka uwN -juN -rIM -uqF -rIM -rIM -rIM -rIM -qNy -gAh -ctj +nVq +xuZ +mSs +xuZ +xuZ +xuZ +xuZ +rEY +gxU +giR vUP wIC -cAY -pam -xrN -xRp +qZA +dgx +fKi +vxG wIC whQ bHu cHk -jov +oLf hIG xiV aag -uQY +ajZ bdH bdH aaa @@ -83365,34 +83366,34 @@ aaa aaa aaa aaa -kfC +aad aag nBJ ldF -dVy +eQR bos lBl -nfS +nEO bos gpO kcp -bjG -vcr -rPa -rPa -pLi +oMi +bAZ +bTS +bTS +niR kcp -fWC +lEV ghF ghF pHF -fWC +lEV ghF ghF ghF -aEb -jpy -tiM +aFG +mua +hoc sje sje sje @@ -83400,14 +83401,14 @@ sje sje jhS bSv -lIs -lIs +aIX +aIX bSv -hwv +xcI sIu wid aag -uQY +ajZ aaa aaa aaa @@ -83466,22 +83467,22 @@ aaa aaa bdH bdH -kfC +aad aag uDg xkc -qpc +gkr vxM -omg -mxU -iCJ -nBs +pas +ncf +kjk +qxr wJh -mWl -nzn +oWK +rPF pfd -rxm -dPx +ceZ +jnD hUW hiM rWs @@ -83495,22 +83496,22 @@ rWs rQt cgT xuc -vxm -qSB +gXx +wdh wIC mHz jPS jPS -xWM +xrt wIC aDt jTU cHk oDh -lcJ +xas xiV aag -uQY +ajZ bdH bdH aaa @@ -83568,11 +83569,11 @@ aaa aaa aaa aaa -kfC +aad aag nBJ ldF -dVy +eQR rqv gpO gpO @@ -83581,21 +83582,21 @@ gpO kcp kcp kcp -brd +sXE kcp kcp kcp -fWC +lEV vyB vyB pHF -fWC +lEV ghF vyB vyB -aEb -uOx -wDE +aFG +pJq +yaX sje sje sje @@ -83606,11 +83607,11 @@ bSv cop cop bSv -mBf +kxe sGK wid aag -uQY +ajZ aaa aaa aaa @@ -83669,51 +83670,51 @@ aaa aaa bdH bdH -kfC +aad aag uDg xkc -qpc +gkr vxM vxM vxM vxM vxM gaJ -uOK +vMJ qFX cAR -sIt +vGA hUW dHd vka -uHN -jEk -gCZ -gCZ -gCZ -gCZ -veo -gCZ -hxE +lnt +eAF +uVA +uVA +uVA +uVA +gde +uVA +wIQ xWv aQb vka -mzd +jUY wIC -wnS +hNY qFi vAG -kdL +hsj wIC cHk cHk cHk oDh -sSF +nEc xiV aag -uQY +ajZ bdH bdH aaa @@ -83771,49 +83772,49 @@ aaa aaa aaa aaa -kfC +aad aag nBJ ldF -dVy +eQR bos -uBd +iWH gpO bos gpO nEZ kcp -sLB +bTU gZK -rPa -esb +bTS +lyX kcp -gcO +rMj ghF vyB pHF -fWC +lEV ghF vyB ghF -aEb -eXC -qCD +aFG +pPQ +juS jjl jjl jjl jjl jjl -jHa +kCd bSv -kzJ -osD +kBY +bTn bSv -mel -mel +mVh +mVh wid aag -uQY +ajZ aaa aaa aaa @@ -83868,29 +83869,29 @@ aaa aaa aaa aaa -bBr -wLo -wLo -wLo +aac +aaf +aaf +aaf aag aag uDg -xIP +cUl xkc -uPf +ode xkc gNg cAR -gRW -tFP +dRj +yhV jvc -ioh +jEV cAR -stj +iuE uwN vka -xoQ -mUC +pRO +kqy awz awz cZh @@ -83898,29 +83899,29 @@ cZh cZh awz awz -wAX -hxE +jfK +wIQ mPj omy -fFj +sCQ wIC -qqc +wvE jhI jfY -oCw +bra wIC -kiW -yhM -iiD +eQm +rXQ +vky oDh -jlI +pdp xiV aag aag -wLo -wLo -wLo -plE +aaf +aaf +aaf +ajY aaa aaa aaa @@ -83977,43 +83978,43 @@ nBJ nBJ nBJ nBJ -dVy +eQR ldF bos bos -iUF +olW bos -lMr +uHT gUi kcp -fwW +onY wdf -rPa +bTS kcp kcp sDx ghF vyB pHF -fWC +lEV ghF vyB ghF sDx -dTL -who -qQT -kko -wuo -wuo -wuo -ohv +prl +gNy +fbU +vbZ +qEl +qEl +qEl +vWs bSv bSv bSv bSv sGK -mel +mVh wid wid wid @@ -84071,59 +84072,59 @@ aaa aaa aaa aaa -kfC +aad adG adG adG adG adG adG -rdY -oCz -uPf -qpc -qpc +rvI +cYo +ode +gkr +gkr cAR cAR cAR pKU -dks +vOu cAR -sTO +udK mwA -uHN -dPB +lnt +cgO awz awz -gcY -djs -aVQ -vCD -kvR +nID +wPF +eHx +uKd +oER awz awz -icO -hxE +mgj +wIQ jHh -mzd +jUY wIC -dcA +aWg jES -lqu -qDM +vBJ +qTQ wIC oDh -jlI -iiD -jlI -bSy +pdp +vky +pdp +paJ tuA tuA tuA tuA tuA tuA -uQY +ajZ aaa aaa aaa @@ -84179,45 +84180,45 @@ nBJ ldF jsE rdN -dVy -dVy -dVy +eQR +eQR +eQR ldF sXq rdN -hde -lMr -fxn +rMO +uHT +hfv kcp -owH -kew -iSE +xNz +utK +rKA kcp kcp sDx hIF vyB pHF -fWC +lEV ghF vyB kEW sDx -spX +xHl vyB -imT -mSW -qLE +mQd +akn +vTM vyB -fWC -spG -rDN -mel -sEl +lEV +meE +gGw +mVh +iBu sGK -mel -mel -mel +mVh +mVh +mVh sGK gDX sGK @@ -84274,59 +84275,59 @@ aaa aaa aaa aaa -kfC +aad adG -fEx -fEx -cvB -tcF +aeK +aeK +bur +hdd akC akC akC akC -hhE -qpc +uvp +gkr cAR -gAN -aTL +pbm +qjK jvc -ctH +dGT cAR -sdA +bmz wSR -gIy +mMV awz awz -bII -cLg -cLg -cLg -cLg -cLg -obX +aJp +jgJ +jgJ +jgJ +jgJ +jgJ +mZb awz awz -dGR +woy laO -lfc +nRH wIC -tjI +tiF vAG -ciF -kYQ +opF +pDW wIC oDh -mog +lhj kCi kCi kCi kCi -sHT -xty -sDi -avi +hjA +nIE +jKn +pyi tuA -uQY +ajZ aaa aaa aaa @@ -84379,7 +84380,7 @@ aaa aaa aaa fwK -fBs +cZB uaG uaG uaG @@ -84401,7 +84402,7 @@ sDx lQB qax jTH -pTc +gPU lQB qax lQB @@ -84417,13 +84418,13 @@ sDx sDx rgt rgt -sqX +sYr rgt rgt rgt rgt rgt -sRd +ctw hAh aaa aaa @@ -84477,59 +84478,59 @@ aaa aaa aaa aaa -kfC +aad adG -scx -fEx -cvB -vvN -wAV +afa +aeK +bur +wdI +sFf bbV bzz akC -kRO -qpc +pzc +gkr cAR -ifi +pQI gym gSz -ocT +cNJ cAR -pzg +pZS pEB -mzd +jUY qwp -rXb -gGj +aVI +jmY rHc xhZ xhZ xhZ rHc -bfW -fxF +qyo +udx qwp -pzg +pZS jHh -mzd +jUY wIC wIC -ivJ +vzj wIC wIC wIC oDh -tNe +nYi kCi -jti -lBV -ajx -tJk -xty -sDi -lcH +sDD +kOv +cRv +sQF +nIE +jKn +vjg tuA -uQY +ajZ aaa aaa aaa @@ -84582,51 +84583,51 @@ aaa aaa aaa fwK -iGG +elY uaG -dIV -gUx -xEK -sch -lSg -loZ +sbZ +lxd +dPk +nBV +dyq +uGi uaG -xft -xCj -upq -lyM -nWM -gqM -hov -cxf -ird -mmX +lYN +byr +aXh +bAQ +aXj +bDH +xyw +bIo +bKt +bLD aYt btO btN -hov +xyw aYt btO aYt -djL -hov -sSO -lEK -dCR -pDL -nWM -csE -hov -qeH +mIz +xyw +bYq +bZi +bZO +caM +aXj +qUh +xyw +ccG rgt -fpG -lkX -uzQ -qYI -tXG -nKs +gMS +vXF +hsc +epk +lwG +uJb rgt -luu +wRf hAh aaa aaa @@ -84680,59 +84681,59 @@ aaa aaa aaa aaa -kfC +aad adG -fEx -fEx -cvB -iSg -reX +aeK +aeK +bur +xFP +nIt adu aHZ akC -sPN -qpc +lDT +gkr cAR -oqV -fzR +jgR +iAg vaS -koJ +bsF cAR -juE +vkR wsD -mzd +jUY qwp -jID -gGj +eei +jmY iwW sTm oSq sTm tdT -bfW -xdQ +qyo +itX qwp -sIt +vGA uwN -jck +uVd wIC wjY aTg -sqV -vvr +rFg +kkv wIC -jlI -jlI +pdp +pdp kCi -bfH +uAj qfa btD -lNW -xty -sDi -avi +vmW +nIE +jKn +pyi tuA -uQY +ajZ aaa aaa aaa @@ -84784,16 +84785,16 @@ aaa aaa aaa aaa -bpB -ixt -bpB -hIJ -njA -eXv -njA -ulJ +okd +lql +okd +urk +fmZ +ePq +fmZ +cqd jhc -iQO +eml btO aYt bzQ @@ -84805,11 +84806,11 @@ bhT bKu btO aYt -dEY -jJx -gKt -gKt -xOG +wqh +bym +brW +brW +bve bwn bVM bVM @@ -84821,16 +84822,16 @@ bVM bVM bwn bVM -rId +oTH kUA -atL -cBB -fte -cBB -qxg -kTB -wPo -guv +gRJ +mqB +vjG +mqB +oQw +avp +oAa +efk aaa aaa aaa @@ -84883,51 +84884,51 @@ aaa aaa aaa aaa -kfC +aad adG adG amz amz aly -vuw +nkx bbZ btv akC -fWW -qpc +lCm +gkr cAR cAR -pVp +eLX vaS -vNz +nCD cAR -ycR +kfE wsD -mzd +jUY qwp -rcz -gGj +rBx +jmY iwW sTm gwR sTm tdT -bfW -lXX +qyo +pbW qwp -hER +cDn uwN -mzd +jUY wIC lcW aTg wIC wIC wIC -jlI -tJs +pdp +iEa kCi -faa +eqI ssZ btD awC @@ -84935,7 +84936,7 @@ uMj uMj tuA tuA -uQY +ajZ aaa aaa aaa @@ -84987,16 +84988,16 @@ aaa aaa aaa aaa -bpB -ixt -bpB +okd +lql +okd nDb jhc ccL rDf xZM mnc -iQO +eml btO aYt aYt @@ -85008,11 +85009,11 @@ bhU bjR aYt aYt -dEY +wqh bHB -hov +xyw btO -sEv +bcc aYt aYt aYt @@ -85024,16 +85025,16 @@ aYt aYt aYt btO -dvL +tpG wdQ ybP dhQ dcx mLg wAK -guv -ttk -guv +efk +bTz +efk aaa aaa aaa @@ -85086,59 +85087,59 @@ aaa aaa aaa aaa -kfC +aad aeE -byM -nXH -pHR -pHR -ful +afb +ayq +cfE +cfE +pvP adu aHZ akC -eJa -gvp -dnz +jdn +lgk +hMM cAR -fDC +jlE cXV -oRR +kqd cAR -giL +xDn pEB -mzd +jUY awz -uHK -iCN +wkH +hmS mWV jZu sco fqO lIp -yfI -jMU +hWO +fqc awz -vZd +gGr jHh -fFj +sCQ wIC wtY aTg jIT wIC aCA -jlI -jlI +pdp +pdp kCi -unm +nwW btD btD -jkS -jkS -sqt -qcC +rVN +rVN +vly +ybZ pun -uQY +ajZ aaa aaa aaa @@ -85190,53 +85191,53 @@ aaa aaa aaa aaa -bpB -ixt -bpB +okd +lql +okd nDb jhc jhc jhc vOV eAm -iQO +eml btO -jtt -jtt -jtt -jtt -jtt -jtt -jtt -jtt -jtt -jtt -ilb +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +bwm bHB -hov +xyw btO -lOo -jtt -jtt -jtt -jtt -jtt -jtt -jtt -jtt -jtt -jtt +bSR +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu btO -dvL +tpG hbA uky mLg mLg mLg wAK -guv -ttk -guv +efk +bTz +efk aaa aaa aaa @@ -85289,10 +85290,10 @@ aaa aaa aaa aaa -kfC +aad aeE -jsr -bvm +aie +aTy adu adu adu @@ -85300,48 +85301,48 @@ adu aHZ akC pek -uHv +rir pek cAR -eQq -kKC -itJ +gdG +kxP +mea cAR -kHm +nNv pEB -mzd +jUY qwp -eVI -gGj +wyt +jmY iwW dCr gwR sTm tdT -bfW -urq +qyo +tsy qwp -dlH +ora laO -lnO +rKQ wIC yeR aTg nNg wIC pjz -fqo +uTs pjz kCi -kUx +nRR btD btD btD btD -mtt -fbS +tnb +oit pun -uQY +ajZ aaa aaa aaa @@ -85393,16 +85394,16 @@ aaa aaa aaa aaa -bpB -ixt -bpB -sRA -ukB -bne -eQX -qMc +okd +lql +okd +bRt +oGm +hPD +aIy +ekR gWm -eeK +mpV bvf bdL bvf @@ -85416,7 +85417,7 @@ bvf bvf bvf bIe -xFY +baN bvf bvf bvf @@ -85430,16 +85431,16 @@ bvf bvf bdL bvf -bqK +srh gKo -dEq -nVu -rFv -sDk -lsE -guv -ttk -guv +fsf +fuU +cnI +qfq +vjT +efk +bTz +efk aaa aaa aaa @@ -85492,13 +85493,13 @@ aaa aaa aaa aaa -kfC +aad aeE -ghz -rzh -xVz -xVz -reX +aig +brf +cSC +cSC +nIt adu hxG akC @@ -85510,23 +85511,23 @@ cAR cAR cAR cAR -vHQ +xSz pEB -mzd +jUY qwp -kDW -gGj +sUE +jmY iwW dCr oSq sTm tdT -bfW -urq +qyo +tsy qwp -pzg +pZS jHh -fpq +vCx wIC wIC wIC @@ -85536,15 +85537,15 @@ hrI ioM xCy kCi -udd +nNt vqC btD -iqh -iqh -eOa -xCi +pPN +pPN +gKF +ndZ pun -uQY +ajZ aaa aaa aaa @@ -85597,51 +85598,51 @@ aaa aaa aaa fwK -wSd +jru uaG -bPY -gUx -xGM -lwV -lSg -gUx +aEf +lxd +cif +jaz +dyq +lxd uaG -kgu +vCg bHB -hov -hov -hov -wtF -hov -hov -hov -hov -hov -hov -hov -hov -hov -hov -hov -hov -hov -hov -hov -dbr -hov -hov -hov +xyw +xyw +xyw +bdM +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xpT +xyw +xyw +xyw bHB -fnu +osx rgt -gpm -slE -mnL -lEJ -tXG -nKs +qTu +wlD +gTk +qSI +lwG +uJb rgt -hcS +oCa hAh aaa aaa @@ -85695,50 +85696,50 @@ aaa aaa aaa aaa -kfC +aad adG adG amz amz aly -oWy +wmg adu cqQ -eba +afT txy rbp -oqr -eVD +cri +euL hiM hiM -cGy -rIM -dPx +qRj +xuZ +jnD wsD -mzd +jUY qwp -lin -gGj +iiZ +jmY rHc lAy wjq wjq rHc -bfW -urq +qyo +tsy qwp -sIt +vGA uwN -fTc -rIM -aGw +pYX +xuZ +pcj hXm fZq -epS -rKR +iFA +sLx twQ twQ -cGN +bpd bqT vZv vjK @@ -85747,7 +85748,7 @@ uMj uMj tuA tuA -uQY +ajZ aaa aaa aaa @@ -85800,7 +85801,7 @@ aaa aaa aaa fwK -fBs +cZB uaG uaG uaG @@ -85809,9 +85810,9 @@ uaG uaG hte lma -hov +xyw bHB -hov +xyw aYt aYt aYt @@ -85833,9 +85834,9 @@ btO dTI btO aYt -hov +xyw bHB -hov +xyw bcm hOV hOV @@ -85844,7 +85845,7 @@ hOV hOV hOV hOV -dhK +vVZ hAh aaa aaa @@ -85898,59 +85899,59 @@ aaa aaa aaa aaa -kfC +aad adG -fEx -fEx -cvB -tcF -ful +aeK +aeK +bur +hdd +pvP adu -kjc +frF akC oUt cmr iPq -wXu +aMf vka vka mPj mIy eEw rTk -lfc +nRH awz awz -fxd -quP -sOU -quP -quP -quP -vgJ +fRr +dmv +cHE +dmv +dmv +dmv +olU awz awz -ilB +vSN mPj rWs inh ewr lPC mgy -tRL +qoN tVx feG pPy kCi -kUx +nRR btM vjK -cKV -xty -sDi -avi +dUZ +nIE +jKn +pyi tuA -uQY +ajZ aaa aaa aaa @@ -86003,20 +86004,20 @@ aaa aaa aaa sGw -qHw +nmp eWs -fVt -cYK -xKO -mDq -jyx -wJt -mTj -hov +usq +rQw +pOH +sbt +smU +nZR +lpl +xyw bHB -euX -jtt -ced +gjm +aYu +ilG aYt bfJ btO @@ -86034,9 +86035,9 @@ btO aYt bBN bcm -vpw -jtt -eZr +caN +aYu +bcb bHB btO bcm @@ -86101,59 +86102,59 @@ aaa aaa aaa aaa -kfC +aad adG -scx -fEx -cvB -vvN -cig -ocI -rax +afa +aeK +bur +wdI +aHY +tyK +iKI akC akC -wXu -wKE +aMf +hSv xoB xoB -rXw -hxE +kzy +wIQ jHh vka -uHN -brm -iKd +lnt +ciN +sUg qwp -pkC -niz +vYM +fJm aAq -sSU +iah mGe -rMG -obP +dCx +rpK qwp -wkk -jMw -hxE +xmg +ggt +wIQ vka jHh -uHN -unR +lnt +ckP xTx xTx -paA -uWF +cyv +eKZ xTx kCi -gZS -fTa -ajx -pBB -xty -sDi -lcH +cfk +uws +cRv +nwx +nIE +jKn +vjg tuA -uQY +ajZ aaa aaa aaa @@ -86208,18 +86209,18 @@ aaa sGw klT eWs -kLJ -qgk -sqY +njO +riC +eqd goY -aNB -aEL -ilx -hov +fqJ +nOX +xcV +xyw bHB -dEY -hov -sEv +wqh +xyw +bcc aYt bfK aYt @@ -86237,9 +86238,9 @@ aYt aYt btO sEq -dEY -hov -sEv +wqh +xyw +bcc bHB aYt bcm @@ -86249,7 +86250,7 @@ tTC tTC tTC tTC -wAo +iho uKH kyP aaa @@ -86304,12 +86305,12 @@ aaa aaa aaa aaa -kfC +aad adG -fEx -fEx -cvB -iSg +aeK +aeK +bur +xFP akC akC akC @@ -86320,27 +86321,27 @@ iPq oQJ xoB xoB -ilB +vSN jHh -uHN -vsU +lnt +dUE awz awz awz jKF awz -sFJ +rGE awz -bjY +lsp awz jKF awz awz awz -jNq -hxE +sTo +wIQ jHh -mzd +jUY xTx xTx hrI @@ -86351,12 +86352,12 @@ kCi kCi kCi kCi -lNW -xty -sDi -avi +vmW +nIE +jKn +pyi tuA -uQY +ajZ aaa aaa aaa @@ -86415,34 +86416,34 @@ bYW bYW bYW bYW -ged -jpF -ilx -hov +kNf +vpT +xcV +xyw bHB -qEi -cTe -jaq -obn -gcS -cTe -aZb -obn -gcS -cTe -aZb -obn -gcS -cTe -aZb -obn -gcS -cTe -aZb -obn -xoV -cTe -dXw +sXB +baH +bcd +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bEA +baH +fVz bHB bBN bcm @@ -86507,7 +86508,7 @@ aaa aaa aaa aaa -kfC +aad adG adG adG @@ -86516,41 +86517,41 @@ adG adG ltw cmr -naA +oRm cmr cmr iPq oQJ -lqm +pcc xoB -giL +xDn uwN -gBK +wiN awz awz awz awz -eqw -qzo -kUD +aGb +qVS +aUe gAl -nhl -oVU -eRN +aVG +aGj +aVR awz awz awz awz -woI +oWg uwN -mzd +jUY xTx -cwt +lym hrI lIQ noy rcG -wnf +lwY feG kfB tuA @@ -86559,7 +86560,7 @@ tuA tuA tuA tuA -uQY +ajZ aaa aaa aaa @@ -86614,16 +86615,16 @@ aaa sGw xzB bfs -wZo -cBQ -jtW +qfQ +cJm +jwi bYW -qDp -qjm -ilx -hov +phw +xMG +xcV +xyw bHB -cYr +aZO baI baI baI @@ -86645,7 +86646,7 @@ baI baI baI baI -sGk +bGF bHB aYt bcm @@ -86710,7 +86711,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -86719,41 +86720,41 @@ aag cZe cmr lSX -wEG +uaA snx snx fLt cmr -dKG +fYr xoB -hcn -mJf +pNa +iCu awz awz -pab -cqs +agb +azC awz -iFI -oVU -pWi +nne +aGj +oSw vIu -hvY -oVU -stZ +aVH +aGj +iQj awz -xKu -pOB +oQs +nFm awz ceE -oEL -qxt +eMP +faX xTx -lXT +tIX ioM abn ioM lIQ -ozk +qOY xZH mSr nLp @@ -86762,7 +86763,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -86817,16 +86818,16 @@ aaa sGw xzB bfs -vBr -dEF -fSG +wVN +qxI +qmM bYW -poL -poL +wFN +wFN tGH -sXU +hmy bHB -tMR +aZP baI baI baI @@ -86848,7 +86849,7 @@ baI baI baI baI -tWZ +bGG bHB btO bcm @@ -86913,7 +86914,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -86929,27 +86930,27 @@ kcH kcH kcH kcH -xeP +kWq qnh -nhl +aVG awz -dyg -dyg +afZ +afZ awz xTR awz -rsC +cRb awz -eyn +opC awz xTR awz -dyg -dyg +afZ +afZ awz -eih +dFR qnh -kHx +ouW mKq dHZ dHZ @@ -86965,7 +86966,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -87020,16 +87021,16 @@ aaa sGw onv bfs -mff -dEF -dEF -bAA -dEF -dEF -qyf -hov +pjh +qxI +qxI +iXm +qxI +qxI +vvX +xyw bHB -gjW +aZQ baI baI baI @@ -87051,7 +87052,7 @@ baI baI baI baI -nPS +bGH bHB btO bcm @@ -87116,7 +87117,7 @@ aaa aaa aaa aaa -kfC +aad aag aag cZe @@ -87131,34 +87132,34 @@ kcH kcH xKT eqN -eKq +aBP aKa qnh -jEx -aLn -uyj -uyj -pht -uyj -ftw +ewS +oBA +aom +aom +oUG +aom +bzR qnh -pht +oUG aKa -ftw -uyj -pht -uyj -uyj -buJ -xhd +bzR +aom +oUG +aom +aom +mJe +iVy qnh aKa -sHL +rrB aGr eDu -xxA -gKE -vWv +tKr +uNg +cLN aES hrI tVx @@ -87168,7 +87169,7 @@ nLp nLp aag aag -uQY +ajZ aaa aaa aaa @@ -87223,16 +87224,16 @@ aaa sGw xzB bfs -usE -dEF -lGs -kar -ktV -uRF -mqT -hov +wFi +qxI +dKO +ykv +jPu +qKl +pPd +xyw bHB -rBw +aZR baI baI baI @@ -87254,9 +87255,9 @@ baI baI baI baI -spR +bGI bHB -hov +xyw bcm gOk tTC @@ -87265,7 +87266,7 @@ tTC tTC bjg hOV -ttZ +siT kyP aaa aaa @@ -87319,7 +87320,7 @@ bdH bdH aaa aaa -kfC +aad aag aag cZe @@ -87329,36 +87330,36 @@ ltw iPq cmr kcH -iNT -rjU +rlf +soq eYQ eqN dmA hyQ -dfo -pEz -dda -qmg +iur +lTt +haB +dvl miE dCK -mRR -jtV -jtV -tDX -pwQ -bBt -beb -beb -qmg +esF +mQc +mQc +wgk +gaQ +aIl +aGv +aGv +dvl fYf uCW -nEv -dda -lwI -wUY -iAd -cDg -iNu +omb +haB +gtp +qfA +tYX +tpD +xfO iTD vCO vCO @@ -87371,7 +87372,7 @@ hrI nLp aag aag -uQY +ajZ aaa aaa aaa @@ -87424,18 +87425,18 @@ aaa aaa aaa sGw -lZn +dvD bfs bfs -xGa +sir bfs bfs eWs eWs eWs -hov +xyw bHB -cYr +aZO baI baI baI @@ -87457,9 +87458,9 @@ baI baI baI baI -sGk +bGF bHB -cjI +eEc hOV hOV tTC @@ -87468,7 +87469,7 @@ tcd tTC rsV hOV -ttZ +siT kyP aaa aaa @@ -87522,7 +87523,7 @@ bdH bdH aaa aaa -kfC +aad aag aag cZe @@ -87532,19 +87533,19 @@ snx oVY cGA kcH -wOH +rBa nPs vEj nPs rJD hyQ -ugK -dEV +fEk +hlU wVW -aRf +feD azL -fpK -nIu +aJw +iBY wVW wVW wVW @@ -87552,13 +87553,13 @@ wVW wVW wVW wVW -eRl -fec +dmg +vMI gII -mYO +oPy wVW -oXa -rCL +fDU +uiZ mKq qCy rpp @@ -87574,7 +87575,7 @@ rDH nLp aag aag -uQY +ajZ aaa aaa aaa @@ -87627,18 +87628,18 @@ aaa aaa aaa sGw -exV +fea eWs -dNO +rsS xzB -foF -uni -eXP -jpI +mKs +sCT +rXU +rEt eWs -xoC +wlb bHB -tMR +aZP baI baI baI @@ -87660,10 +87661,10 @@ baI baI baI baI -tWZ +bGG bHB -unu -ifN +bGK +rrh xKG gyH rSx @@ -87671,7 +87672,7 @@ dCz tTC lDA hOV -ttZ +siT kyP aaa aaa @@ -87725,7 +87726,7 @@ bdH bdH aaa aaa -kfC +aad aag aag cZe @@ -87735,49 +87736,49 @@ cmr cmr sWw kcH -lSF -fYk -eaG +rIW +oGx +wvU yiX nrb hyQ -sAR -jIq +aic +aov wVW wVW -lwd +sEp wVW wVW wVW -bvg -jft +swH +ucz wVW -naz -hfx +sSG +sEM wVW wVW wVW -evr +osz wVW wVW -ufP -eqH +aKn +aKz pQy -vXS -nwj -pZd -vXS -nwj +jhW +mWD +wmT +jhW +mWD jxB -evz -tZk +xBK +moc pYQ tVx hrI nLp aag aag -uQY +ajZ aaa aaa aaa @@ -87830,18 +87831,18 @@ aaa aaa aaa sGw -lZn -cvY +dvD +kWI xzB -lZn +dvD ipk -lZn +dvD xzB -lZn -dXz -dEY +dvD +meT +wqh bHB -gjW +aZQ baI baI baI @@ -87863,17 +87864,17 @@ baI baI baI baI -nPS +bGH bHB -uJs -ifN +cuy +rrh iNR uCR tTC tTC tTC fca -wuf +vjS xee kyP aaa @@ -87928,7 +87929,7 @@ aaa aaa aaa aaa -kfC +aad cZe cZe cZe @@ -87944,27 +87945,27 @@ agj kcN kcN agj -yaY -jIq +akL +aov wVW -tKT -chI +apo +fHh wVW -lhF -eQH -roF -bJm -gKn -xkX -nKk -vDu -xEu +lZs +lVX +sni +ayz +dAX +aQg +vpV +snI +aGp wVW -utE -jQj +aDv +aHK wVW -ufP -vpo +aKn +aKy mKq aES aES @@ -87980,7 +87981,7 @@ hrI nLp nLp nLp -uQY +ajZ aaa aaa aaa @@ -88029,22 +88030,22 @@ aaa aaa aaa aaa -bBr -wLo -wLo +aac +aaf +aaf sGw xzB eWs -xGv +omx xzB rAw -wHV -jpI -uni +qNK +rEt +sCT eWs -gaB +pyC bHB -rBw +aZR baI baI baI @@ -88066,10 +88067,10 @@ baI baI baI baI -spR +bGI bHB -vDB -ifN +kwQ +rrh iNR uCR rDR @@ -88079,9 +88080,9 @@ gzN hOV uKH kyP -wLo -wLo -plE +aaf +aaf +ajY aaa aaa aaa @@ -88131,10 +88132,10 @@ aaa aaa aaa aaa -kfC +aad tvt -ohb -rIJ +fRg +peM jUV cmr agj @@ -88143,47 +88144,47 @@ jbN mTc hkX yfG -xqg +lxE kcN -ehB -jVU -sAR -jIq +twI +ufL +aic +aov wVW -qYn +arF alX auQ -yiF -nDu -fSH -tpu -fts -qmf -dxV -iRc -nCK +awm +avS +nwD +asR +pbs +pbV +aPB +aJG +aGq auQ aIf -hTz +aEA wVW -ufP -miX +aKn +iJB mKq -lnf -dlS -ygW -vIB -kaP -nCZ -ygW +aVU +aRq +bHG +ceK +sxD +bhJ +bHG aES aES fMU hrI -lac -uNc +dPd +rLH rwZ -uQY +ajZ aaa aaa aaa @@ -88232,22 +88233,22 @@ aaa aaa aaa aaa -kfC +aad aag sGw sGw xzB eWs eWs -wAi +sOr eWs eWs eWs eWs eWs -pdM +cCE bHB -cYr +aZO baI baI baI @@ -88269,7 +88270,7 @@ baI baI baI baI -sGk +bGF bHB iAw hOV @@ -88284,7 +88285,7 @@ kzs kyP kyP aag -uQY +ajZ aaa aaa aaa @@ -88334,7 +88335,7 @@ aaa aaa aaa aaa -kfC +aad tvt jhR fix @@ -88346,47 +88347,47 @@ agc qfD agc kJm -xjf +gFR kcN -jro -jVU -sAR -jIq +cod +ufL +aic +aov wVW -cSV +arG alX lQG -leX -bjL -tuS +oPE +alZ +auT aBR -itd +awD bZJ -qLv -qyw -opR +aRt +axp +aPI lQG aIf -uAg +aEB wVW -gAF +aKi amY -ehO -tTB +aVg +aVV aWV aZy -vIB +ceK aES -rnv -nSU -jYG +bpe +brS +rOs aES dWA hrI hrI dPO rwZ -uQY +ajZ aaa aaa aaa @@ -88435,22 +88436,22 @@ aaa aaa aaa aaa -kfC +aad aag sGw -lZn +dvD xzB eWs -prm -dsb +kRU +dON oJj -app -wkC -dRS +vLp +oYA +gWt jHt -irV +amo bHB -tMR +aZP baI baI baI @@ -88472,7 +88473,7 @@ baI baI baI baI -tWZ +bGG bHB btO xjW @@ -88484,10 +88485,10 @@ cyR tTC hOV qpV -wtZ +hSb kyP aag -uQY +ajZ aaa aaa aaa @@ -88537,9 +88538,9 @@ aaa aaa aaa aaa -kfC +aad tvt -txw +oyX vBC rhm she @@ -88549,36 +88550,36 @@ qgr agc agc kJm -ppa +lpg kcN -hjO -jVU -sAR +yff +ufL +aic aKq -cYL +luZ alX alX avY alX alX alX -qwQ -mCC -rNf +vNW +pON +vRb alX alX alX avY aIf alX -cvw +eRu aKq -eqH +aKz mKq -ttu +aUk aWW aGr -pdA +uvt aES aES aES @@ -88589,7 +88590,7 @@ jwq vwU uew rwZ -uQY +ajZ aaa aaa aaa @@ -88638,10 +88639,10 @@ aaa aaa aaa aaa -kfC +aad aag sGw -lZn +dvD xzB eWs irJ @@ -88649,11 +88650,11 @@ bKk kil vnY fCG -tBO +gYg jHt -sQt +gRP bHB -gjW +aZQ baI baI baI @@ -88675,7 +88676,7 @@ baI baI baI baI -nPS +bGH bHB btO bcm @@ -88687,10 +88688,10 @@ tTC sHe hOV uKH -ijU +vyr kyP aag -uQY +ajZ aaa aaa aaa @@ -88740,9 +88741,9 @@ aaa aaa aaa aaa -kfC +aad cZe -jKQ +kwg cmr cmr jkq @@ -88756,43 +88757,43 @@ mXj kcN kcN agj -sAR +aic aKq -cJt +uTU alX alX -pos +aqN avY alX alX -ntc -gjV +paL +euV mJu alX alX avY -pos +aqN aIf alX -cJt +uTU aKq -eqH +aKz mKq -vIB -yhB -ufS -vIB -kaP -nCZ -ygW -bvi +ceK +lcy +iTw +ceK +sxD +bhJ +bHG +nis aES -lOW +xGF tVx -aLq +jne rDH nLp -uQY +ajZ aaa aaa aaa @@ -88841,44 +88842,44 @@ aaa aaa aaa aaa -kfC +aad aag sGw -clt -grt +fzx +dWJ eWs -vMc -xZN +yko +qlL oxz gnB vnY -bSI +mRH jHt -gvn +xjK bHB btO -tey +bdU aog -tey -iEn -hqC -qJm -tey -iEn -hqC -qJm -tey -iEn -hqC -hmO -hmO -hmO -sqF -mDI -wnD -gCt -hqC -eZr +bdU +bfV +baM +bkd +bdU +bfV +baM +bkd +bdU +bfV +baM +vbf +vbf +vbf +yeN +gzn +iGQ +bED +baM +bcb bHB aYt bcm @@ -88893,7 +88894,7 @@ uKH hZZ kyP aag -uQY +ajZ aaa aaa aaa @@ -88943,7 +88944,7 @@ aaa bdH aaa aaa -kfC +aad tvt gJf cmr @@ -88955,47 +88956,47 @@ hvH bVs hvH hvH -lCB -dah -qsU +qBq +xxh +xpi agj -rdq -jIq +bFA +aov wVW -kSP -jYj -jYj -jYj -mQt -pos -dsP -bZv -hHn -pos -bLv -jYj -jYj -igW -krW +arR +atO +atO +atO +awt +aqN +rKd +aAA +xMB +aqN +ays +atO +atO +cvZ +asN wVW -xFV -eqH +aTj +aKz mKq -xMZ +bFC vWA cqY -vIB +ceK aES -rnv -nSU -tsv +bpe +brS +cpj aES -vmx +hro tVx -nNN +tNB ioM rwZ -uQY +ajZ aaa aaa aaa @@ -89044,46 +89045,46 @@ aaa aaa aaa aaa -kfC +aad aag sGw -lZn +dvD nsd eWs kqm vnY -iiN +wjL oGF -nJl -sQe +gKK +dBR jHt -oUS +bwl bHB -hov +xyw puI aYt aYt aYt puI aYt -nrT -dLq -nrT -dLq -hEX +pcl +gHZ +pcl +gHZ +bHD api aYt -xSP -mJZ +sIU +gdp lcV lcV hWq -mcJ -ohw -hov -sEv +hif +jKz +xyw +bcc bHB -hov +xyw bcm grT tTC @@ -89092,11 +89093,11 @@ ove tTC rsV hOV -ttZ -ieO +siT +bUQ kyP aag -uQY +ajZ aaa aaa aaa @@ -89146,11 +89147,11 @@ aaa bdH aaa aaa -kfC +aad tvt hsu cmr -lxf +pFq iPq agj dyj @@ -89162,43 +89163,43 @@ mXj ulo kJW agj -sAR -jOl +aic +aoA wVW -vLu -nYe -pos +teY +eVj +aqN alX -iVT +asc abk -tmO -bzM -jja +azV +aAB +aBZ avY -mXf +awk alX alX mPn -tih +xMA wVW -vLt -eqH +aKo +aKz mKq -vIB +ceK gUL hHl -pdA +uvt aES aES aES aES aES -saa +uhh cZO -ewy +ppG ioM rwZ -uQY +ajZ aaa aaa aaa @@ -89247,33 +89248,33 @@ aaa aaa aaa aaa -kfC +aad aag sGw -lZn +dvD kFU eWs -tyI +oUz mqZ mqZ lVZ -rtE -oJl -teq -dEY +ctQ +wer +pKW +wqh bHB -eNz +vpW eXq aho aho aho eXq kqv -nrT -bLQ -nrT -dLq -nrT +pcl +bpj +pcl +gHZ +pcl fgE btO btO @@ -89282,11 +89283,11 @@ btO btO neE mNm -tCL -aiO -dXw +bEE +rOc +fVz bHB -eNz +vpW bcm cKm tTC @@ -89295,11 +89296,11 @@ tTC tTC dPq hOV -ttZ +siT xFt kyP aag -uQY +ajZ aaa aaa aaa @@ -89349,59 +89350,59 @@ aaa bdH aaa aaa -kfC +aad tvt hJD cmr -nrG +fFQ pMH agj mXj mXj -mDi +lul mXj mXj mXj mXj mXj agj -sAR -jIq +aic +aov wVW -pwh -eyJ -rIq -miA -iVT +awA +ayr +awH +aPD +asc azW -pos -iwr -uKb +aqN +aAC +aCa bPs -xHL -beu -wjB -cgh -lOM +xUB +gkK +oug +vSl +aGH wVW -ufP -eqH +aKn +aKz mKq -vIB -lLr -niI -vIB -kaP -nCZ -ygW -nSU +ceK +wVB +psa +ceK +sxD +bhJ +bHG +brS aES -tnK +jrI tVx -rPW +raO ioM rwZ -uQY +ajZ aaa aaa aaa @@ -89450,46 +89451,46 @@ aaa aaa aaa aaa -kfC +aad aag sGw xzB xer eWs -vac +uES xrT gYj vnY -rtE -oJl -teq -dEY +ctQ +wer +pKW +wqh bHB -hov +xyw aho -wIm -oZH -vUF +vWc +geg +aEj aho aYt -nrT -dLq -nrT -dLq -nrT +pcl +gHZ +pcl +gHZ +pcl fNi aYt -hov -wav +xyw +vAq hYG aYt gGs aYt aYt aYt -lPd +jSo bHB -hov +xyw bcm qKb tTC @@ -89498,11 +89499,11 @@ tTC tTC uTk hOV -ttZ +siT xFt kyP aag -uQY +ajZ aaa aaa aaa @@ -89552,11 +89553,11 @@ bdH aaa aaa aaa -kfC +aad cZe -siK -xOt -wOl +bLc +fOK +pWd iPq agj mXj @@ -89568,43 +89569,43 @@ szf faE mXj agj -dgb -jIq +amI +aov wVW wVW wVW wVW wVW -rAI -vYx -omN -rQa -eCW -utE -bjr +rOC +soX +azX +vHt +aCb +aDv +aEC wVW wVW wVW wVW wVW -ufP -eqH +aKn +aKz mKq -vIB -yhB -ufS -vIB +ceK +lcy +iTw +ceK aES -amn -wDb -rnv +tJi +ivf +bpe aES -tDe +pok tVx -cqv -ndG +kzc +gen nLp -uQY +ajZ aaa aaa aaa @@ -89653,44 +89654,44 @@ aaa aaa aaa aaa -kfC +aad aag sGw nkj -lZn +dvD eWs -huv -vdT +rVt +tVZ bkS vnY -rtE -oJl -teq -dEY +ctQ +wer +pKW +wqh bHB -dRM +ezQ eXq -jeY -gVV -wxK +fAa +oYp +oZp eXq vvp -muN -hyg -csr -dLq -nrT -jgZ +aYd +aMY +bqF +gHZ +pcl +oRJ fTm -mQo -wav +fPu +vAq hYG hYG aYt aYt gCw boV -hov +xyw bHB aYt bcm @@ -89701,11 +89702,11 @@ xYE iuI lDA hOV -ttZ +siT fFU kyP aag -uQY +ajZ aaa aaa aaa @@ -89755,9 +89756,9 @@ bdH aaa bdH aaa -kfC +aad tvt -wso +nCM cmr wKb pri @@ -89771,32 +89772,32 @@ ako tYM gLN agj -sAR -idl +aic +acS wVW -rmB -lli -kZF +wol +awG +ayI wVW -gpk +wbX avY avY -lSG +aAE avY wlE -eDG +gvq wVW -wMY -nlD -ssb +lrW +mqh +vHW wVW -hhF -eqH +ccg +aKz mKq -vIB -lYr -cAf -pdA +ceK +rFs +gek +uvt aES aES aES @@ -89804,10 +89805,10 @@ aES aES gBd tVx -pkY -rPs +fjz +hPu rwZ -uQY +ajZ aaa aaa bdH @@ -89854,46 +89855,46 @@ aaa aaa aaa bdH -bBr -wLo +aac +aaf aag aag sGw vEI -lZn +dvD eWs -cyI -vdT +nCe +tVZ bkS bfO -lBm -bVa +tWL +aLx jHt -oFF +mVE rgy -xFY -joX +baN +anU gEg imy gEg -bAa +dRD bdV bvf tQL bDn bGu bvf -mnX -hov -hov -hov -hov -hov -hov -hov -hov -xpJ -hov +fKt +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xxI +xyw bHB btO bcm @@ -89902,15 +89903,15 @@ bcm bcm bcm hOV -oFR +pIC hOV qpV nGk kyP aag aag -wLo -plE +aaf +ajY bdH aaa aaa @@ -89958,7 +89959,7 @@ bdH bdH bdH aaa -kfC +aad tvt mPw cmr @@ -89974,43 +89975,43 @@ fOv agc agc agj -sAR -mpB +aic +sxW wVW -esA -niV -rSg -vua -pos -pos -dYP -dYP -dYP -utE -pos -vDm -awY -ebO -ize +abQ +atN +cEl +sOi +aqN +aqN +ixv +ixv +ixv +aDv +aqN +atP +aHR +aJI +wFn wVW -ufP -eqH +aKn +aKz mKq -xMZ -osB -lhN -vIB -kaP -nCZ -ygW -lts +bFC +jUb +qjz +ceK +sxD +bhJ +bHG +gCP aES imt noE dcT hrI rwZ -uQY +ajZ aaa aaa bdH @@ -90057,63 +90058,63 @@ aaa aaa aaa bdH -kfC +aad aag aag aag sGw oGf -lZn +dvD eWs -whV -fyH -uQA -aph -oUH -uyn -hge -cHh +jkY +ktI +xPn +xyQ +ixT +hBG +ngK +sqa hBF -qjc +hCt eXq -trO -mKC -eFv +qYN +lsD +lkf eXq ooh -nrT -dLq -nrT -hyg -nrT -fDI +pcl +gHZ +pcl +aMY +pcl +xNb aYt -mQo -mjP +fPu +leg hYG hYG aYt aYt wFz bAi -hov +xyw bnH btO cdA -rKh -cqZ -kZx +lRX +rux +sEt bcm qyG -ieO -ieO -ttZ -ieO +bUQ +bUQ +siT +bUQ kyP aag aag aag -uQY +ajZ bdH aaa aaa @@ -90161,9 +90162,9 @@ bdH bdH bdH bdH -kfC +aad tvt -gfO +qwY cmr cmr mVA @@ -90176,44 +90177,44 @@ agc aiW xyk xyk -psL +mDX aTl -hVn +dLe wVW -iMX -bIR -kJF +atx +qEk +ajm wVW -dbZ +arP alX azZ aAF azZ aIf -kzu +hkG wVW -wng -bIR -tXX +fvB +qEk +iaa wVW -ufP -eqH +aKn +aKz mKq -dCl -ljN -niI -vIB +oKx +tVh +psa +ceK aES -uwC -nSU -rnv +mhm +brS +bpe aES ioM cZO pfD pfD rwZ -uQY +ajZ aaa aaa aaa @@ -90260,63 +90261,63 @@ aaa aaa aaa bdH -kfC +aad aag aag aag sGw -cjD -lZn +fzT +dvD eWs qmh qmh jHt -lzv -eFL -oJl -teq -dEY +wSQ +rOv +wer +pKW +wqh bHB -hov +xyw aho -aXT -aCO -rxI +dkj +siz +gYt aho aYt -nrT -dLq -nrT -dLq -nrT +pcl +gHZ +pcl +gHZ +pcl uuu fTm -hov -sYC +xyw +lqK hYG hYG hYG aYt aYt bFP -hov +xyw bHB btO cdA -wat +myo dtH -hny +eyR bcm -wEc +rQs xFt -ieO +bUQ uKH -jXu +gsp kyP aag aag aag -uQY +ajZ bdH aaa aaa @@ -90364,7 +90365,7 @@ bdH bdH bdH bdH -kfC +aad cZe cZe cZe @@ -90380,32 +90381,32 @@ tTk agc agc agj -mTA -jIq +fXP +aov wVW -iMX -bIR -myF +atx +qEk +ato wVW -hVm +aKF alX hxm deD tUo aIf -uAg +aEB wVW -wng -bIR -tXX +fvB +qEk +iaa wVW -ufP -eqH +aKn +aKz mKq -xHn +aWk aWW aGr -pdA +uvt aES aES aES @@ -90416,7 +90417,7 @@ cZO nLp nLp nLp -uQY +ajZ aaa aaa aaa @@ -90463,7 +90464,7 @@ aaa aaa aaa bdH -kfC +aad aag aag aag @@ -90471,27 +90472,27 @@ sGw iPf klT eWs -pLx -lhf +vHp +gJp qmh -lzv -eFL -oJl -teq -dEY +wSQ +rOv +wer +pKW +wqh bHB -eNz +vpW eXq aho aho aho eXq kqv -nrT -dLq -nrT -jQG -nrT +pcl +gHZ +pcl +gpi +pcl oJp bvf kRP @@ -90500,26 +90501,26 @@ bvf bvf egp ptv -fnE -rKE -xqt +qXZ +vsF +bGJ hBF vxb bcm -rpr +mhd aYt -otH -wFt +tuN +fPn xFt xFt -ieO +bUQ uKH -poT +eLC kyP aag aag aag -uQY +ajZ bdH aaa aaa @@ -90567,7 +90568,7 @@ aaa bdH bdH aaa -kfC +aad aag aag cZe @@ -90583,43 +90584,43 @@ tan kDK iEz agj -sAR -jIq +aic +aov wVW -cfW -bIR -lpD +ssW +qEk +hrm wVW -rAI -pos -rmW -rmW -rmW -utE -bjr +rOC +aqN +tCT +tCT +tCT +aDv +aEC wVW -dPI -bIR -wmf +dNZ +qEk +mje wVW -ufP -eqH +aKn +aKz mKq -jrL +aWq aXb aGr -vIB -kaP -nCZ -ygW -fOW +ceK +sxD +bhJ +bHG +cWy aES hrI tVx nLp aag aag -uQY +ajZ aaa aaa aaa @@ -90666,63 +90667,63 @@ aaa aaa aaa bdH -kfC +aad aag aag aag sGw -ftg +cqp xzB -mBM +smH vnY asE qmh -lzv -hkV -pKz +wSQ +vop +tgy jHt -tIJ +vPM bHB -hov +xyw anW aYt aYt aYt anW aYt -nrT -dLq -nrT -dLq -nrT +pcl +gHZ +pcl +gHZ +pcl brY aYt -qkb -mhq +cSx +nPB hYG ggh gRd -mcJ -fVH -hov -unu +hif +jRS +xyw +bGK bHB btO cdA -tAl +omP aYt -fwN +bOC bcm -ieO +bUQ xFt -ieO +bUQ uKH -vNc +rVc kyP aag aag aag -uQY +ajZ bdH aaa aaa @@ -90770,7 +90771,7 @@ bdH bdH bdH aaa -kfC +aad aag aag cZe @@ -90786,43 +90787,43 @@ hvH hmV mXj agj -sAR -jOl +aic +aoA wVW -iMX -vUY -myF +atx +jvX +ato wVW -jFe +vTu alX alX avY alX aIf -ulK +aED wVW -fgC -vUY -tXX +ryR +jvX +iaa wVW -ufP -vpo +aKn +aKy mKq -pie -vIB -vIB -gNj +aWt +ceK +ceK +eua aES -szm -nSU -tsv +eBd +brS +cpj aES luE wgO nLp aag aag -uQY +ajZ aaa aaa aaa @@ -90869,63 +90870,63 @@ aaa aaa aaa bdH -kfC +aad aag aag aag sGw -bsa +jOq xzB eWs nso jdZ -bwU -kiH -ntL -ojR +pqM +bZS +rlD +uUf jHt -xfe +kCm bHB btO -osN +bea aoN -osN -jRm -ilo -ebV -osN -jRm -ilo -ebV -osN -jRm -ilo -ebV -hql -feB -nfV -uxG -rST -liD -ilo -gaH +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +ohE +vWJ +qUL +txO +mwQ +bEK +baS +bGL bHB aYt cdA -cQa -xLh -bvO +ivg +llO +kSv bcm emC -ieS -uwm +dZZ +xmn uKH xFt kyP aag aag aag -uQY +ajZ bdH aaa aaa @@ -90973,7 +90974,7 @@ bdH aaa aaa aaa -kfC +aad aag aag cZe @@ -90989,31 +90990,31 @@ agj agj agj agj -ugK -dEV +fEk +hlU wVW wVW wVW wVW wVW aCf -iDJ +kcx aCf wVW aCf -bJM +wpt aCf wVW wVW wVW wVW wVW -oXa -rCL +fDU +uiZ mKq mKq -mzL -oET +kqt +aVX aES aES aES @@ -91025,7 +91026,7 @@ tYV nLp aag aag -uQY +ajZ aaa aaa aaa @@ -91072,24 +91073,24 @@ aaa aaa aaa bdH -kfC +aad aag aag aag sGw -lZn -lNl +dvD +qig eWs eXq -vCs +adR eXq aho aho aho eXq -sXU +hmy bHB -ewq +aZV baI baI baI @@ -91111,24 +91112,24 @@ baI baI baI baI -hsL +bGM bHB aqs bcm bcm -pca +wXT cdA bcm bcm emC emC -fXX +mTL xFt kyP aag aag aag -uQY +ajZ aaa aaa aaa @@ -91176,7 +91177,7 @@ aaa aaa aaa aaa -kfC +aad aag aag cZe @@ -91189,33 +91190,33 @@ awW awW awW awW -dyR -cNA -cBK -sAR -pPP -uyj -cHr -bDo -kwu +aSJ +goj +kAh +aic +aBW +aom +nmh +eco +vdL laV -iwO +aqF alX alX xQa alX aIf -pAf +aBS laV -dAU -eGF -cHr -lUO -rHF -eqH -kOV -vsp -uFC +whB +gio +nmh +aKf +aKu +aKz +vjb +cZb +aXe baw oxu baw @@ -91228,7 +91229,7 @@ hrI nLp aag aag -uQY +ajZ aaa aaa aaa @@ -91275,24 +91276,24 @@ aaa aaa aaa bdH -kfC +aad aag aag aag sGw -lZn -lZn +dvD +dvD eWs -snq -xfd +abG +aeh afy xWp -qiT +aAL aBt ajM -upq +aXh bHB -sva +aZW baI baI baI @@ -91314,24 +91315,24 @@ baI baI baI baI -lKG +bGN bHB xAY -dLq +gHZ wlK aYt aYt aYt lrX bcm -vss -ttZ +jGQ +siT fFU kyP aag aag aag -uQY +ajZ bdH aaa aaa @@ -91379,7 +91380,7 @@ bdH bdH bdH bdH -kfC +aad aag aag cZe @@ -91387,21 +91388,21 @@ cmr vAz gpY uac -tqJ +vFw ajf ajf ajf ajf -hNU -bgd -jfE -nBN +oAO +oEf +aVW +vta aBH aKv aKv aKv aKv -vYs +bYY aCj ayK aAd @@ -91409,16 +91410,16 @@ aAP hvv ayu aCj -vYs +bYY aKv aKv aKv aTa aTk -npc -oLl -fmJ -suX +mtM +rmD +aWz +aZC aZz aZz aZz @@ -91431,7 +91432,7 @@ hrI nLp aag aag -uQY +ajZ aaa aaa aaa @@ -91478,24 +91479,24 @@ aaa aaa aaa bdH -kfC +aad aag aag aag sGw -lZn +dvD klT eWs abH aer -wCV -xUR +agf +ais aoL akz ajM -pDL +caM bHB -jjd +aZX baI baI baI @@ -91517,24 +91518,24 @@ baI baI baI baI -gKY +bGO bHB xAY -dLq +gHZ qCG btO btO btO uII -wFt -ogv -ttZ +fPn +htq +siT nGk kyP aag aag aag -uQY +ajZ bdH aaa aaa @@ -91586,8 +91587,8 @@ abs abs abs cZe -wXu -eEl +aMf +wby gpY mto acW @@ -91595,33 +91596,33 @@ awW awW oGC oGC -dyR -cNA -oFN -biP -njB -vhF -fpK -njB -njB +aSJ +goj +iff +bYz +aBX +rqb +aJw +aBX +aBX laV -iVT +asc ayL aAf aLM wlE alX -mXf +awk laV -njB +aBX aKa -fpK -rsB +aJw +lLS aKq -dPb -mQI -vsp -uFC +cPg +wPf +cZb +aXe iVE baw baw @@ -91629,8 +91630,8 @@ baw sgU baw pgD -paA -uWF +cyv +eKZ nLp tQV tQV @@ -91678,27 +91679,27 @@ aaa aaa bdH aaa -bBr -wLo -wLo +aac +aaf +aaf aag aag aag aag sGw -lZn +dvD sZc -meg +dGP acq aeJ -nlo -kts -uhm -ntB +azl +ahV +khD +rYJ ajM -hov +xyw bHB -cte +aZY baI baI baI @@ -91720,27 +91721,27 @@ baI baI baI baI -qVb +bGP bHB xAY -dLq +gHZ xJR aYt aYt puI iWx bcm -vdb +ymg uKH -ieO +bUQ kyP aag aag aag aag -wLo -wLo -plE +aaf +aaf +ajY aaa bdH aaa @@ -91786,17 +91787,17 @@ aeW ajD anM oGC -hcb -vXT +add +aSA bvb -wyV -krM +afr +ajI pYu awW acW -hcb -rKm -lav +add +ryG +ohB aiX awd awd @@ -91808,35 +91809,35 @@ awd awd awd wVW -uhd -teT -mdc +ayv +ayM +aAj aBI -lFd -sug -gBh +aCk +aDK +aEG wVW awF -bJG +aIQ awF ecr -nSJ +aJc ecr ecr ecr -iUB +ohS aET -lmV -mLT -mLT +nUv +aJU +aJU sgU baw dqb -onD -aCm +tiW +goL mor -hDl -mLT +iKK +aJU baw mAp mAp @@ -91881,7 +91882,7 @@ aaa aaa bdH aaa -kfC +aad aag aag aag @@ -91889,19 +91890,19 @@ aag aag aag sGw -lZn +dvD iQJ eWs acu -xfd +aeh afF xWp azJ bLP eXq -hyA +eVm bHB -ewq +aZV baI baI baI @@ -91923,19 +91924,19 @@ baI baI baI baI -hsL +bGM bHB tIS bcm bcm -pca +wXT cdA bcm bcm bcm emC wuh -ipV +fgU kyP aag aag @@ -91943,7 +91944,7 @@ aag aag aag aag -uQY +ajZ aaa bdH aaa @@ -91989,11 +91990,11 @@ aea ajE awW awW -hcb -dyR +add +aSJ awW -gUz -krM +bZe +ajI awW awW acW @@ -92001,33 +92002,33 @@ qdQ eFT hhA weD -dav -iic -fBC +unT +kng +fDV aiX aiX -xTJ -xLK -xTJ -xLK +tAL +awX +tAL +awX wVW wVW wVW -lkE +lMF jnX -sZP +rdz wVW wVW wVW cbF -mCT +aGZ awF -ess -iXY -vyL +cST +aTz +aUl aET esC -afo +nsQ aET mSi wHp @@ -92035,11 +92036,11 @@ gZw sgU baw baw -onD -qsn +tiW +nig baw -uFC -mLT +aXe +aJU baw baw baw @@ -92084,7 +92085,7 @@ aaa aaa bdH aaa -kfC +aad aag aag aag @@ -92093,18 +92094,18 @@ aag aag sGw nHX -hpp +cEA eWs -tbs +acM aer -wCV -xUR +agf +ais xWp -qcI +aBw ajM -hov +xyw bHB -sva +aZW baI baI baI @@ -92126,19 +92127,19 @@ baI baI baI baI -lKG +bGN bHB btO cdA -kOQ -hzh -ohK +apE +icp +fER bcm emC -aBL -ieO +hVL +bUQ uKH -wtZ +hSb kyP aag aag @@ -92146,7 +92147,7 @@ aag aag aag aag -uQY +ajZ aaa bdH aaa @@ -92192,57 +92193,57 @@ aoy awW awW awW -hcb -lRz +add +aoI awW -tDE -krM +aeZ +ajI awW uzy abB -hcb -hcb -hcb +add +add +add weD -jAY -wio -jAY +nwL +amh +nwL aiX -lsT +wbO avU avU mKN wEw -miu -ntQ +kOB +awZ aiX -hLa -eMq -tcA +wLC +mGb +uOh awF aEM -uvL +aGV rvA aKE awF -mfr -hFP -gnp +jzE +aUw +aUm aET aET aET aET -lmV -mLT -mLT +nUv +aJU +aJU pIV baw baw -onD -xEw +tiW +tTu baw -rfU -mLT +gnv +aJU baw baw baw @@ -92287,7 +92288,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -92296,18 +92297,18 @@ aag aag sGw xzB -oHF +hRA eWs -bZm +acZ aeN -nlo -hSH -cxA +azl +ahS +ajA akz ajM -hov +xyw bHB -jjd +aZX baI baI baI @@ -92329,19 +92330,19 @@ baI baI baI baI -gKY +bGO bHB aYt cdA -wsK +uiT aYt -kPs +jyR bcm -sOp +fUZ xFt -ieO +bUQ uKH -jku +eyM kyP aag aag @@ -92349,7 +92350,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -92390,67 +92391,67 @@ bdH bdH aaC abw -jPO +adr awW ajH ajf abf -pBy +aEQ ajf ajf ajf -dko +teo abf ajf evX -tDE -xOg -lRz +aeZ +aka +aoI weD -pcK -wio -wio +fdE +amh +amh aiX -phT -umB -umB -umB -umB -elB -iRn +cJu +pXx +pXx +pXx +pXx +jrm +evg aiX -umV -ucZ -ieH +iiU +eAx +cmS awF aFg -juC +aGY rvA -dGs +aKN awF -gZV -hFP -gnp -hFP -qQd -bqx +cbm +aUw +aUm +aUw +aRv +pPv aET -sNe -ljR -xEw +nPa +yhI +tTu gVF aZz cts -dqP +tvw aZz aZz aZz -qwD +ejY cts aZz kyX baw -fXq +gCf trb aaC bdH @@ -92490,7 +92491,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -92499,18 +92500,18 @@ aag aag sGw xzB -oFJ +ghA eWs vhw -uhm +khD azw xWp aAK -ooH +aBz ajM -nWM +aXj bHB -cte +aZY baI baI baI @@ -92532,19 +92533,19 @@ baI baI baI baI -qVb +bGP bHB vxb bcm -tAr +apL aYt -xzo +iKb bcm umk xFt -ieO -ttZ -mCp +bUQ +siT +qBl kyP aag aag @@ -92552,7 +92553,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -92593,67 +92594,67 @@ bdH bdH aaC abw -lNJ +adP awW acW awW -hcb -hcb -hcb -pYF -hcb -hcb -hcb +add +add +add +stu +add +add +add oMQ evX -wyV -okc -gaR +afr +akc +buc weD -vPr -rDs -wzK -mTG -wio -dva -ePc -ePc -rsj -uyW +jMm +pcG +iFn +qnD +amh +kWT +wUR +wUR +wWC +auZ aiX aiX -nhO +qmK oIp -wPN +pTS awF -cUq -juC +hRk +aGY rvA -uJW +aKO awF -uLq -uLq -sQE -gsI -hum -lWW +aRx +aRx +aUo +aVi +pbp +pMj awS -hUs -jTC -aCm +lWr +csI +goL sgU baw -mLT -mLT -mLT -lwo -mLT -mLT -mLT +aJU +aJU +aJU +tBu +aJU +aJU +aJU hEV eBe baw -oPw +xYQ trb aaC bdH @@ -92693,7 +92694,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -92702,7 +92703,7 @@ aag aag sGw nkj -tRU +rjF eWs eXq eXq @@ -92711,9 +92712,9 @@ eXq eXq eXq eXq -inl +mrD bHB -ewq +aZV baI baI baI @@ -92735,19 +92736,19 @@ baI baI baI baI -hsL +bGM bHB btO cdA -wsK +uiT aYt -eGo +xNj bcm -wtZ +hSb xFt -ieO +bUQ uKH -ktC +pTX kyP aag aag @@ -92755,7 +92756,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -92797,65 +92798,65 @@ bdH aaC abs adq -hVr -krM -hcb -hcb -ktB -kJa -kJa -kJa -mtO -hcb -hcb -krM -hcb -hcb -ldu +dpo +ajI +add +add +aFJ +aTf +aTf +aTf +iZP +add +add +ajI +add +add +gqP aiX aiX aiX aiX aiX -xlT -dsZ +oqw +lvA osT cZV -vuh -qhR -hgm +pQV +apq +ana aiX -kpV +gwh oIp -qBZ +qUK awF -jld -pAb +gyh +lmA rvA -qRm +aqm awF -rPv -dot -ujw -vLC -hFP -wGQ +dOl +aTA +aUp +qVC +aUw +jmP awS -hLz -mLT -mLT -onD -mLT -ybi -ptJ -pty -pty -pty -rhx -mLT -mLT -onD -hyO +xhn +aJU +aJU +tiW +aJU +qQp +xAI +kiT +kiT +kiT +gjq +aJU +aJU +tiW +msg pgD tQV aaC @@ -92896,7 +92897,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -92914,9 +92915,9 @@ aRu aRu aRu bcm -nWM +aXj bHB -sva +aZW baI baI baI @@ -92938,19 +92939,19 @@ baI baI baI baI -lKG +bGN bHB btO cdA -rgX -xLh -uIi +fpW +llO +vml bcm emC -vNc -vNc +rVc +rVc uKH -rOq +nBF kyP aag aag @@ -92958,7 +92959,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -93000,65 +93001,65 @@ bdH aaC abs adq -rAt -krM -hcb -pPV -cdD +myl +ajI +add +fsU +aHU aTm xxB aTm -hzK -pPV -hcb -krM -hcb -hcb -hcb +jgF +fsU +add +ajI +add +add +add gzI -pcK -wwk -wzK -stF -wio -lOR +fdE +mLz +iFn +alw +amh +dGr rtY fJy -iqb -rsj -lcz +xQg +wWC +szO aiX -ojn +jkT oIp -lqY +fNX awF awF aEW -qFk +aHX aEW awF -iBo -vLC -fzn -tpK -hFP -hFP +aRB +qVC +wvb +eem +aUw +aUw awS -rPi -mLT -mLT -onD -mLT -xvK -irL +nJs +aJU +aJU +tiW +aJU +gBW +ouQ iun sfA vPm -jsn -xvK -mLT -onD -nrW +qys +gBW +aJU +tiW +qgU pgD tQV aaC @@ -93099,7 +93100,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -93107,7 +93108,7 @@ aag aag aag sGw -lZn +dvD oes eWs aRu @@ -93117,9 +93118,9 @@ aRu aRu aRu bcm -hov +xyw bHB -jjd +aZX baI baI baI @@ -93141,19 +93142,19 @@ baI baI baI baI -gKY +bGO bHB uAb bcm emC -ceb +hvx emC emC emC emC emC qpV -ieO +bUQ kyP aag aag @@ -93161,7 +93162,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -93202,67 +93203,67 @@ bdH bdH aaC abw -uJc +aee avd acW awW auK -gRB +aIr aTm -rvJ +cpP aTm -hrb +juX scu awW acW -tDE -xOg -lRz +aeZ +aka +aoI gzI -jAY -sgZ -iXG +nwL +mfQ +nPx aiX -sot -nFp -taD -eOn -xuL -pSG -jUg -kkm -pKa +amd +dXY +fmB +umS +yjM +qbO +aqw +hnI +dME oIp -kLC -hLT +oGI +waP awF -lZw -tmC -vbN +nvG +vGI +aLp awF -iaP -mxt -sDH -hDq -fxo -uzg +jss +aTB +aUq +aVk +ldC +vkb aET -cpe -ljR -xEw +eFM +yhI +tTu sgU baw lRE -idu +tuf vbB aqB vbB -kcy +mlz sOy baw sgU xVF -sSJ +njD trb aaC bdH @@ -93302,7 +93303,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -93310,7 +93311,7 @@ aag aag aag sGw -lZn +dvD iQJ eWs aRu @@ -93320,43 +93321,43 @@ aRu aRu aRu bcm -sXU +hmy bHB -gnH -tKW -pZN -lJm -lzH -tKW -yjC -lJm -lzH -tKW -yjC -lJm -lzH -tKW -yjC -lJm -lzH -tKW -yjC -lJm -qDe -tKW -wNv +aZL +baX +bcw +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bEN +baX +bcp bHB xAY -kpS +aYz emC -ieO -wiU -nEM -lZo +bUQ +wDP +mHF +hhg emC -mCp +qBl uKH -ieO +bUQ kyP aag aag @@ -93364,7 +93365,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -93405,67 +93406,67 @@ bdH aaa aaY abw -dwS +aec avd acW awW avc -frw +aIv aTm -rvJ +cpP cbM -idP +jzZ sLo awW acW -wyV -okc -jeP +afr +akc +xVI gzI -wvY -pIg -cPo +aku +eGH +qnl aiX -mKW -kWu -oWu -iRC -rmu -cin -aHh -cPk -wBa +apt +sCI +pWN +uTN +aqy +nBE +pOD +bZa +voj sUS -kLC -oyw +oGI +qUu awF aHn szU -fgH +fGa awF -vzn -hFP -hFP -hFP -hFP -wGQ +aRC +aUw +aUw +aUw +aUw +jmP aET -dEh -jTC -aCm +dSp +csI +goL sgU baw hJk -htE +yac vbB aqB vbB -pnF +fDS iLd baw sgU xVF -jqM +dLz trb aaC bdH @@ -93505,7 +93506,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -93523,11 +93524,11 @@ aRu aRu aRu bcm -hov +xyw bHB -dEY -hov -sEv +wqh +xyw +bcc aYt aYt aYt @@ -93545,20 +93546,20 @@ aYt aYt aYt aYt -dEY -hov -sEv +wqh +xyw +bcc bHB xAY -kpS +aYz emC -cGU +vFI xFt xFt -ieO -mwG +bUQ +wdG xFt -ttZ +siT nGk kyP aag @@ -93567,7 +93568,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -93609,65 +93610,65 @@ aaa aaY abs adq -bdP -krM -hcb -pPV -cdD +tGj +ajI +add +fsU +aHU aTm fnk aTm -hzK -pPV -hcb -krM -hcb -hcb -mrC +jgF +fsU +add +ajI +add +add +vmN aiX aiX aiX aiX aiX -sfP -dsZ -vuh -ylB +awq +lvA +pQV +mHO aiX aiX aiX aiX -wIn +diw oIp -rNY +wCn tsr tsr tsr tsr tsr tsr -npb -vLC -vLC -hnd -hFP -hFP +aRE +qVC +qVC +prE +aUw +aUw awS -rPi -mLT -mLT -onD -mLT -xvK -irL +nJs +aJU +aJU +tiW +aJU +gBW +ouQ vbB aqB tBq -jsn -xvK -mLT -onD -uyp +qys +gBW +aJU +tiW +bpw pgD tQV aaY @@ -93708,7 +93709,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -93716,8 +93717,8 @@ aag aag aag sGw -clt -hpp +fzx +cEA eWs aRu aRu @@ -93726,11 +93727,11 @@ aRu aRu aRu bcm -udO +bGQ bHB -xGZ -aiO -uRa +tdc +rOc +bcx bPr bPr bPr @@ -93748,20 +93749,20 @@ bPr bPr bPr byv -ojG -aiO -dXw +bEO +rOc +fVz bHB uII -xlc +ruz emC -bJx +jev aML xFt -hkc +oFn emC jaI -ttZ +siT xFt kyP aag @@ -93770,7 +93771,7 @@ aag aag aag aag -uQY +ajZ aaY bdH aaa @@ -93812,65 +93813,65 @@ aaa aaY abs adq -kzq -krM -hcb -hcb -dHc -vjn -vjn -vjn -wgj -hcb -hcb -krM -hcb -hcb -hcb +aeY +ajI +add +add +aIw +aUa +aUa +aUa +jAz +add +add +ajI +add +add +add rwY -pcK -qhL -wzK -stF -uJh -gqi -pSG -pky +fdE +feS +iFn +alw +kFe +mJL +qbO +wbu aiX -pNl +aKG amb aiX -pRg +hOd oIp -qBZ +qUK tsr -fxA -tTT -ftL -qNG +sOL +jIC +lFr +wTu tsr -sfQ -wqs -wqs -wqs -wqs -qnx +aSq +aTE +aTE +aTE +aTE +jLs awS -rPi -mLT -mLT -onD -mLT -mLT -eBm -hxh -hxh -hxh -kdT -mLT -mLT -onD -cpf +nJs +aJU +aJU +tiW +aJU +aJU +gLE +pNM +pNM +pNM +hHr +aJU +aJU +tiW +usm pgD tQV aaY @@ -93911,7 +93912,7 @@ aaa aaa bdH aaY -kfC +aad aag aag aag @@ -93929,9 +93930,9 @@ aRu aRu aRu bcm -oZF +bGR bHB -hov +xyw bkA bkA bkA @@ -93940,11 +93941,11 @@ bkA bkA bkA baZ -ljJ -ixP +qOf +rIj baZ -ljJ -hTh +qOf +bqH baZ gfW gfW @@ -93953,18 +93954,18 @@ gfW gfW gfW gfW -hov +xyw bHB uII -qqV +wrT emC -wdx -dsl -ryH -rfW +fqb +ury +dFW +mvi emC daF -ttZ +siT fFU kyP aag @@ -93973,7 +93974,7 @@ aag aag aag aag -uQY +ajZ aaY bdH bdH @@ -94014,67 +94015,67 @@ aaa aaa aaY abw -lNJ +adP awW ajT aoC -hcb -hcb -hcb -pYF -hcb -hcb -hcb +add +add +add +stu +add +add +add awW acW -tDE -xOg -lRz +aeZ +aka +aoI rwY -jAY -wio -iXG +nwL +amh +nPx aiX aiX -sfK -tbS -tbS -gtZ -xjH +uOJ +pqc +pqc +aqz +aKH and aiX -eyK +aaE oIp -pKa -nQK +dME +fyT xIV xIV edV -bRQ +reM tsr -dMN -wqs -wqs -wqs -wqs -vOb +aSt +aTE +aTE +aTE +aTE +qdA awS -jfX -ljR -xEw +tvQ +yhI +tTu sgU baw -mLT -mLT -mLT -lVm -mLT -mLT -mLT +aJU +aJU +aJU +nnX +aJU +aJU +aJU baw sgU baw -oPw +xYQ trb aaY bdH @@ -94114,7 +94115,7 @@ aaa aaa bdH aaY -kfC +aad sGw sGw sGw @@ -94122,8 +94123,8 @@ sGw sGw sGw sGw -lZn -fPo +dvD +iOX eWs aRu aRu @@ -94132,31 +94133,31 @@ aRu aRu aRu bcm -hov +xyw bHB -hov +xyw bkA -hqw -tzh -aqi -kfa -uDv +bnj +kPx +bgk +biq +dvg nvM -pGr -wIK -wIK -iFB -wIK -wIK -aFT +bnI +qjN +qjN +rdS +qjN +qjN +tGh gfW -kOp -crv -crv -crv -qKH +sgj +bDv +bDv +bDv +bEP gfW -udO +bGQ bHB qnd lFp @@ -94166,8 +94167,8 @@ lFp lFp lFp lFp -dhO -ttZ +ljm +siT xFt kyP kyP @@ -94176,7 +94177,7 @@ kyP kyP kyP kyP -uQY +ajZ aaY bdH bdH @@ -94217,67 +94218,67 @@ aaa aaa aaY abw -jPO +adr awW ajV ajf abf -pBy +aEQ ajf ajf ajf -pBy +aEQ abf ajf evX -wyV -okc -gaR +afr +akc +buc rwY -psy -pIg -cPo +akv +eGH +qnl aiX -qEs -tqY +fuz +pLW sht -tlJ +wex aiX aiX aiX aiX -scF +qIF oIp -iXq +aPV tsr -jkx -dYk -sKl -ylG +iPN +dbX +rGL +cyL tsr -jCe -wqs -qAU -cFQ -ylQ -iIr +aSx +aTE +aTG +aVr +aUC +tTD aET -gee -iIO -aCm +ngf +bAH +goL gVF aZz cts -qwD +ejY aZz aZz aZz -qwD +ejY cts aZz nsc ltA -fXq +gCf trb aaY bdH @@ -94317,15 +94318,15 @@ aaa aaa bdH aaY -kfC +aad sGw -otm -lZn +lrH +dvD xzB xzB xzB -lZn -lZn +dvD +dvD wsz eWs aRu @@ -94335,51 +94336,51 @@ aRu aRu aRu bcm -jtt -pYx -oNu +aYu +wTg +bGq bkA -pZk -sVN -sVN -sVN -rZX +bcz +bej +bej +bej +bzS nvM -ngB -wIK -wIK -wIK -wIK -wIK -ljk +vyu +qjN +qjN +qjN +qjN +qjN +bei gfW -dTu -hIt -gjM -uOI -mQl +bkN +ezG +fdZ +bzg +pqi gfW -kUF -pYx -jtt +rHw +wTg +aYu lFp -lRf +ddw gHl kjD gHl -kqV +qoL lFp -wtZ -ttZ +hSb +siT xFt -ieO -ieO -afg -ieO +bUQ +bUQ +gQQ +bUQ cOt uSU kyP -uQY +ajZ aaY bdH bdH @@ -94425,57 +94426,57 @@ aoy awW awW awW -hcb -rLi +add +apg awW -wyV -hcb +afr +add awW awW abB -hcb -phf +add +xWO aiX aiX aau aau aau aau -vVm -oBE +uVX +ase sht -sfK -gtZ -lUi +uOJ +aqz +mBe atT aiX -xHm +bhR oIp -jba +mYA tsr tsr -jLB +vOY tsr tsr tsr lIj -arx +mVF lIj lIj lIj lIj lIj pgD -lmV -mLT +nUv +aJU pIV baw baw -mLT -aCm +aJU +goL baw -xgH -mLT +vpn +aJU baw baw baw @@ -94520,15 +94521,15 @@ aaa aaa bdH aaY -kfC +aad sGw xzB xzB -lZn -lZn +dvD +dvD sZc abj -pDF +mUE coo lnu lnu @@ -94538,51 +94539,51 @@ lnu aRu aRu bcm -bie -bGb -bie +aZZ +aYC +aZZ bkA -cYk -lzi -lzi -hAk -qXz -ljX -hAp -hAp -fIx -qWu -qWu -qWu -qWu -nfd -cBU -kmj -cBU -peF -qiC +bcA +bgm +bgm +bgl +bpz +biu +kdB +kdB +udr +bqL +bqL +bqL +bqL +bkz +uSS +pIU +uSS +uDA +bER gfW -bie -bGb -bie +aZZ +aYC +aZZ lFp -qAC -rvf +mgd +wfn aId aId -whi +poA lFp -wtZ -lBL +hSb +uGU kGi kGi -kib +khI kGi kGi kow -mCp +qBl kyP -uQY +ajZ aaY bdH bdH @@ -94628,11 +94629,11 @@ aeX awW awW awW -hcb -dyR +add +aSJ awW -gUz -hcb +bZe +add awW awW acW @@ -94641,44 +94642,44 @@ muq aiX aiX aau -ers -ers +dBs +dBs aau -qEs -vAY -sfK -ylB +fuz +tld +uOJ +mHO aiX -qpE +asf atT aiX -pRg +hOd lSN -qBZ +qUK lIj -tel -jOY -geG +tBY +gkE +cTM rqD pcY srO srO lWO wjQ -xBw -xBw -jpo +uag +uag +jnh pgD lza gZw gVF kuk baw -mLT -qsn +aJU +nig baw -uFC -mLT +aXe +aJU baw baw baw @@ -94723,57 +94724,57 @@ aaa aaa bdH aaa -kfC +aad sGw -lZn -lZn +dvD +dvD eWs jri -fPo +iOX kIl -bJI +jmz hsK lnu -wsg -wsg -wsg +bjZ +bjZ +bjZ lnu sGU wfE wfE -obh -qxp -uQu +yap +bqg +eIO bkA -ila -sVN -xSN -njf -wna +eFG +bej +arX +vSG +iag nvM -jSa -wIK -sYv -mCy -wIK -wIK -kDf +qOZ +qjN +gGJ +ham +qjN +qjN +oWf gfW -pcp -gjM -gAo -gjM -tYn +xgJ +fdZ +bnS +fdZ +tzx gfW -nvl -kke -rOM +rZt +qyP +tuC lFp -tmP +lGg aId aId aId -qoD +jFx nmY nmY nmY @@ -94782,10 +94783,10 @@ nmY nmY nmY nmY -ttZ -ieO +siT +bUQ kyP -uQY +ajZ aaa bdH bdH @@ -94831,36 +94832,36 @@ awW awW awW oGC -rKm -jlq +ryG +aVL bBl -tDE -rKm +aeZ +ryG oGC awW acW -hcb -gti +add +bny aiX aiX aiX -oEQ -oEQ +vwV +vwV aiX aiX aiX -xDk -lNK +sHM +kUh aiX aiX aiX aiX -xRs -rGw -xnx +wmo +icQ +pwl lIj lIj -pgm +dvZ lIj lIj lIj @@ -94870,18 +94871,18 @@ lIj lIj lIj lIj -uIN +tWF pgD -lmV -mLT +nUv +aJU sgU baw baw -mLT -plc +aJU +bnZ cIe -rxV -mLT +jez +aJU baw baw baw @@ -94926,69 +94927,69 @@ aaa aaa bdH aaa -kfC +aad sGw -lZn -lZn +dvD +dvD wfE wfE -czO +rXv wfE wfE wfE wfE -wPP -wPP -wPP +kox +kox +kox wfE -bvR -dTo +bsD +btr wfE -gTL -grI -gTL +kLE +lIu +kLE bkA -qfg -sVN -idz -iYp -trA +bcC +bej +tzO +fVG +qpQ nvM -jSa -wIK -xdT -mCy -mCy -wIK -mTn +qOZ +qjN +sld +ham +ham +qjN +oDY wCi -mEj -gjM -fiu -gjM -eWD +eTC +fdZ +ixj +fdZ +uey gfW -fNq -vPF -fNq +kSA +tpB +kSA lFp -bPT -pwg +xDF +eRS aId aId -qPF +tMc nmY -lxg +ouw jDP aId -whh -rWa -gcI +xHS +tEd +vjW nmY -ttZ -ieO +siT +bUQ kyP -uQY +ajZ aaa bdH bdH @@ -95030,9 +95031,9 @@ aaa aaa abs adq -bMs -xOg -nCv +aei +aka +aWn gLl gLl gLl @@ -95045,35 +95046,35 @@ acW awW awW awW -yjD -ulO -lZN -baY -baY -twj -baY -pKa -pKa -hdn -baY -nOS -baY -baY -fAl -baY -baY -nOS -tTo -hdn -baY -baY -baY -baY -twj -baY -aOj -kqG -iXz +fSm +hiy +esQ +iKy +iKy +oyB +iKy +dME +dME +gJC +iKy +udv +iKy +iKy +gji +iKy +iKy +udv +oGW +gJC +iKy +iKy +iKy +iKy +oyB +iKy +kmT +pEY +jsP baw fGg baw @@ -95086,9 +95087,9 @@ vIo vIo vIo vIo -rfU -ljR -xEw +gnv +yhI +tTu pgD tQV aaa @@ -95129,57 +95130,57 @@ aaa aaa bdH aaa -kfC +aad sGw -lZn -lZn +dvD +dvD wfE -vke +mcL jOo wrC mHx pqX evC -hGx +xbk wFR wFR bmF wFR -hGx +xbk aWw -tTU -cbt -gYC +cJK +oGL +hOu bkA -bQb -cav -nhR -mVO -cxs +eUn +bcD +qpx +bet +bgu nvM -jSa -wIK -sYv -mCy -wIK -wIK -hfB +qOZ +qjN +gGJ +ham +qjN +qjN +qyD wCi -dOW -qhW -kJy -qhW -yjc +blZ +bqN +nTo +bqN +bwR gfW -khp -pMx -gVn +oJL +jMa +cVt sHm ddM hZe aId aId -xot +rNK nmY nmY nmY @@ -95188,10 +95189,10 @@ dKK dKK xry nmY -ttZ -ieO +siT +bUQ kyP -uQY +ajZ aaa bdH bdH @@ -95233,9 +95234,9 @@ aaa aaa abs adq -wyV -okc -rLi +afr +akc +apg gLl mis mis @@ -95244,13 +95245,13 @@ yjr gLl aea oGC -vIX +xjD ajf ajf ajf -hNU -ses -uzZ +oAO +pIZ +nsr fSx tTZ tTZ @@ -95274,9 +95275,9 @@ plK plK plK fSx -rsZ -tLO -xnZ +xFx +tFW +dGC aZz aZz aZz @@ -95289,9 +95290,9 @@ ojX ojX mxo vIo -cnU -jTC -qiR +crh +csI +qhb pgD tQV aaa @@ -95332,23 +95333,23 @@ aaa aaa bdH aaa -kfC +aad sGw -tkZ +xiH xzB wfE -pMv +dgl jOo -hGx -lEp -lEp -lEp -hGx +xbk +mub +mub +mub +xbk rkz esM esM uUi -hGx +xbk aWw gtD uRD @@ -95356,22 +95357,22 @@ wru bkA hGh hGh -fAO +bcK hGh hGh bkA -kqq -ime -lHL -wIK -wIK -wIK -sig +vwF +nEJ +ben +qjN +qjN +qjN +hpN gfW omo -eFu +wkc gfW -pAA +uFo omo gfW eWx @@ -95382,19 +95383,19 @@ gJO pwG aId aId -fir -bnQ -lSO +wUK +dDM +vPR nmY aId -qos -uKR -eXR +vXf +qGw +uZV nmY uKH -ieO +bUQ kyP -uQY +ajZ aaa bdH bdH @@ -95451,35 +95452,35 @@ oGC awW awW awW -dyR -xif -vMQ +aSJ +isI +gvu xCB -vzO -sei -bxr -sei -sei -vqG -sei -sei -sei -sei -tPE -sei -vqG -sei -sei -sei -sei -sei -bxr -sei -wqE +nyK +llo +epT +llo +llo +pub +llo +llo +llo +llo +aVK +llo +pub +llo +llo +llo +llo +llo +epT +llo +aWM xCB -jOO -uHD -uFC +tJm +dCD +aXe baw baw baw @@ -95535,59 +95536,59 @@ aaa aaa bdH aaa -kfC +aad sGw -bsa +jOq xzB wfE -xFa +krp jOo -kci -fvX +aGn +oDv wFR -rlB -eWb +gxO +vnD wFR wFR wFR soA -hGx +xbk wfE xos uRD qPk bCd -xWb -dgm -wEE -xuB -xuB -rhd -xOZ -wIK -sYv -wIK -wIK -wIK -osK -gRS -csv -aSs -uJX -aSs -uJx +iey +baf +kws +vSn +vSn +mvI +lqF +qjN +gGJ +qjN +qjN +qjN +pjw +qdz +bmb +bsj +bPk +bsj +byb bCd knm lLO knm yfy ruL -vdE +qUZ aId hJI vwY uIA -mkh +acd ruL aId kyh @@ -95595,9 +95596,9 @@ dKK xry nmY qpV -kQQ +hNh kyP -uQY +ajZ aaa bdH bdH @@ -95638,17 +95639,17 @@ aaa aaa aaa abs -dwS +aec avd akt awW -nQd +qHq mis mis mis mis gLl -cnk +eHX gLl gLl gLl @@ -95656,9 +95657,9 @@ gLl gLl gLl gLl -vMQ +gvu xCB -jOO +tJm aoe aoe aoe @@ -95678,27 +95679,27 @@ aoe aoe aoe aoe -pyG +hwB xCB -lmk +kaj vIo vIo vIo vIo vIo vIo -wQn +xDy vIo vIo ojX ojX ojX ojX -vvI +eOM baw sMM xVF -jqM +dLz tQV aaa aaa @@ -95738,69 +95739,69 @@ aaa aaa bdH aaa -kfC +aad sGw -sLt +eoE xzB wfE -xhc +eiP qOp -lfh +rOJ vYm vYm vYm -vZA -ccX -ccX -ccX -fvk -xFu -ewp +fsp +qtv +qtv +qtv +xFZ +btx +naV pij kJh qPk bCd -oBW -wIK -wIK -wIK -wIK -wIK -wIK -wIK -sYv -wIK -wIK -wIK -wIK -sxf -sxf -wIK -wIK -sxf -kny +tmg +qjN +qjN +qjN +qjN +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +tzP +tzP +qjN +qjN +tzP +wYK bCd knm lLO knm yfy ruL -rtp +gsd aId oqt wCk aId -pYk +lab ruL aId -lRB -qpu -qEG +hgD +pSQ +dOe nmY rEK -fuV +bba kyP -uQY +ajZ aaa bdH bdH @@ -95842,54 +95843,54 @@ aaa aaa abs adq -tLw -xOg -mle +aGP +aka +aWu gLl mis mis mis mis gLl -und -dyE -rJo -xvA -yhX -lMn -sXV +lNL +kUJ +qgn +eIf +mfL +hto +qhg gLl -fDZ +pzw xCB -jOO +tJm aoe -tLs +aoh jHQ -pmD -pmD -pmD -nzE +jkl +jkl +jkl +wDH dSJ -ocH -bXS +hQU +pjF mcW -uzK +vih aoe -dxH -qgz -bpY -vWf -nmb +imp +fYb +cnV +isN +cnZ aoe -vMQ +gvu xCB -jOO +tJm vIo -jjk -jjk -adB -bdZ -adB +giD +giD +wrI +lST +wrI pep mCJ vIo @@ -95898,9 +95899,9 @@ ojX ojX ojX vIo -hqe -ljR -uve +hWB +yhI +qSX pgD tQV aaa @@ -95941,69 +95942,69 @@ aaa aaa bdH aaa -kfC +aad sGw -pPF +jIJ xzB wfE -mIt +fHz opD -kci -epB +aGn +nTZ wFR -cqR -eWb +lah +vnD iRy esM esM jpt -hGx +xbk aWw qPk hKe uJM baZ -pvH -wIK -wIK -wIK -eoc -wIK -wIK -wIK -sYv -wIK -wIK -wIK -wIK -wIK -eoc -wIK -wIK -wIK -nXJ +bep +qjN +qjN +qjN +cle +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +qjN +cle +qjN +qjN +qjN +imo baZ sbE lLO knm yfy ruL -mnD +xPq aId vjv gOR aId -qaQ +ary nmY nZm smW prP xXl nmY -dpC -soC +idL +gnM kyP -uQY +ajZ aaa bdH bdH @@ -96045,65 +96046,65 @@ aaa aaa abs adq -hqS -okc -rLi +aGQ +akc +apg gLl mis mis mis mis gLl -oVw +gtI utp cZq xBW cZq utp -oVw -ipM -pKa +gtI +kYF +dME nbH -jOO +tJm aoe -sqb +vbS arb -pqr -pqr -pqr -pqr +aoq +aoq +aoq +aoq arb -dqd -pqr -pqr -pqr -wNs -jQM -jQM -ycz -jQM -cpB +ccs +aoq +aoq +aoq +aor +aEi +aEi +cnW +aEi +coa aoe -ccM +lXR nbH -pKa -bdZ -adB +dME +lST +wrI pep pep vIo -tew -adB -adB +fzt +wrI +wrI vIo ojX ojX ojX ojX vIo -qfk -jTC -wIg +wvj +csI +iPH pgD tQV aaa @@ -96144,69 +96145,69 @@ aaa aaa bdH aaa -kfC +aad sGw xzB -lZn +dvD sGU -hET +iYx opD -hGx -lAY -lAY -lAY -hGx +xbk +msZ +msZ +msZ +xbk wFR -mSX +ldt nEF tXi -bXP +pcE aWw qPk hKe qPk -orh -wIK -wIK -oWH -ljk -nPR -jLk -xno -fiT -qrh -fJZ -quQ -sWI -hAp -fns -nPR -jLk -oWH -wIK -wIK -uOD +hqW +qjN +qjN +hDX +bei +xgh +mlH +cAF +eEk +kDR +maI +ujz +ljO +kdB +bmO +xgh +mlH +hDX +qjN +qjN +jpp knm lLO knm hnP lFp -tNc +xlO aId oqt iXA aId oZy -mWf +naw npA oqt oEy qmY -loh -ttZ +tUN +siT lZb kyP -uQY +ajZ aaa bdH bdH @@ -96247,7 +96248,7 @@ aaa aaa aaa abs -uJc +aee avd akt qWI @@ -96265,11 +96266,11 @@ gxm gxm gxm gxm -ccM +lXR nbH -jOO +tJm aoe -oOm +qQc fXg dfa dfa @@ -96280,16 +96281,16 @@ gzK arb arb arb -wNs -jjA -jjA -oOK -jQM -duM +aor +sKa +sKa +jBy +aEi +fFh aoe -vMQ +gvu nbH -jOO +tJm gxm gxm gxm @@ -96307,7 +96308,7 @@ vIo ehj irS ilJ -sSJ +njD tQV aaa aaa @@ -96347,69 +96348,69 @@ aaa aaa bdH aaa -kfC +aad sGw xzB -lZn +dvD wfE -lcM +gww opD wFR wFR aqn arT -hGx -lDx -pdl -uKi -pvQ -xvg +xbk +jfZ +kqK +ljf +maL +uKe aWw qPk ckh gyn -muo -pFL -pFL -aWK -pFL -pSp -rWZ -xOA +vcq +qPS +qPS +qim +qPS +vln +mKw +rcx kan ojZ -peS +toS ojZ kan -uEP -fPM -iqO -qWu -tNE -qWu -qWu -yaH +leY +tYi +uYa +bqL +iaF +bqL +bqL +ocf wwE sAD cIO tAb -ksh +vpe dxT -toW -sKs -njM -bhA +olN +jDk +uNq +tOu qyK -sQH +mkn tHQ uxX oZy -hZy +orN nmY -gVB +lQf tHk kyP -uQY +ajZ aaa bdH aaa @@ -96456,30 +96457,30 @@ akt awW gLl vHP -ikL -dBD -dBD +wQI +cIS +cIS gxm -mRc -mRc -mRc -uME -kmA -kmA -kmA +sWb +sWb +sWb +dkO +aps +aps +aps gxm -vZo +gpp xCB -jOO +tJm aoe -sqb +vbS koB -ksv -ksv -ksv -ksv +asU +asU +asU +asU arb -jYS +fEC aoe aoe aCw @@ -96487,25 +96488,25 @@ aoe aoe aoe aoe -moV +hFF aoe aoe -vMQ +gvu xCB -jOO +tJm gxm -dTf -dTf -dTf -swl -uPV -uPV -uPV +aiJ +aiJ +aiJ +qYr +kEA +kEA +kEA gxm -bOv -gUl +qTA +bMZ pep -bOv +qTA vIo baw sMM @@ -96550,12 +96551,12 @@ aaa aaa bdH aaa -kfC +aad sGw nkj -lZn +dvD wfE -hIe +rYi opD wFR wFR @@ -96572,25 +96573,25 @@ qPk hKe uJM baZ -oBw -wIK -wIK -wIK -wIK -sYv -asW +eyQ +qjN +qjN +qjN +qjN +gGJ +bqR vhX -xse -tZw -eDj +gls +cAm +bwH vhX -gku -sYv -wIK -wIK -wIK -wIK -nyW +xqv +gGJ +qjN +qjN +qjN +qjN +xtM baZ sbE jZe @@ -96604,15 +96605,15 @@ wDr wDr wDr wDr -agE +iZE oqt oZy -faH +qhD nmY -ttZ +siT xFt kyP -uQY +ajZ aaa bdH aaa @@ -96654,65 +96655,65 @@ aaa aaa abs adq -onX -xOg -ofN +aWm +aka +kyY gLl lfZ -bPd -oVw -oVw +lWS +gtI +gtI gxm -mRc -mRc -mRc -hAo -kmA -kmA -kmA +sWb +sWb +sWb +vQe +aps +aps +aps gxm -fHl +sHC nbH -jOO +tJm aoe -nvK +aop koB -pmD -pmD -pmD -pmD +jkl +jkl +jkl +jkl arb -tbF +ayW aoe -tdh -dxH -kGB +lFn +imp +kEp aoe -aem -onM -wnr +tsC +uRt +aQz aRJ ajl -vMQ +gvu nbH -jOO +tJm gxm -dTf -dTf -dTf -exL -uPV -uPV -uPV +aiJ +aiJ +aiJ +str +kEA +kEA +kEA gxm -gUl +bMZ pep pep -vlv +osr vIo -dvp -ljR -tFn +rQW +yhI +rRz pgD tQV aaa @@ -96753,69 +96754,69 @@ aaa aaa bdH aaa -kfC +aad sGw xzB -lZn +dvD wfE -uwO +cVK opD -iUn -dIv +oRO +ren wDr -yhn -yhn -yhn +aeL +aeL +aeL oLj -sss -sss -sss +wNG +wNG +wNG wDr -xHo -trl -nCw +qZT +pSF +eZC bCd -jLk -asW -eoc -dke -hbh -bir -bVi +mlH +bqR +cle +tYw +tlA +nyj +vVW vhX -vPi -qpq -iZo +ctJ +rlZ +pGE vhX -gLF -bir -hbh -noa -eoc -sId -fTp +jCK +nyj +tlA +bwT +cle +bCe +sdO bCd -rcB -ibI -eMG +hBW +dxJ +rdT wDr -mkE -mkE -mkE +mQx +mQx +mQx jsa -hbZ -hbZ -hbZ +azy +azy +azy wDr -mTV +kJH oqt qlm -pUC +kRD nmY uKH xFt kyP -uQY +ajZ aaa bdH aaa @@ -96857,65 +96858,65 @@ bdH bdH abs adq -wyV -okc -rLi +afr +akc +apg gLl gLl -cEu +nlI utp -sQd +usu gxm -oZo -oZo -oZo -hAo -kmA -kmA -kmA +sRZ +sRZ +sRZ +vQe +aps +aps +aps gxm -vMQ +gvu lYS -net -wIe -upy +mzn +hSI +pMp gzK -pqr -pqr -pqr -pqr -pqr -pqr -vEh -hlQ -jQM -xeu -onK -pxy -iWb -wnr +aoq +aoq +aoq +aoq +aoq +aoq +aAG +aBd +aEi +aGW +aRF +akx +akw +aQz aRK ajl -yeT +aUB nbH -jOO +tJm gxm -dTf -dTf -dTf -exL -cga -cga -cga +aiJ +aiJ +aiJ +str +jcu +jcu +jcu gxm -gCX +cAa pep -adB +wrI vIo vIo -xgH -jTC -aCm +vpn +csI +goL pgD tQV bdH @@ -96956,69 +96957,69 @@ aaa aaa bdH aaa -kfC +aad sGw xzB esm wfE wfE -vDj +viJ wfE wfE wDr -yhn -yhn -yhn +aeL +aeL +aeL uZm -sss -sss -sss +wNG +wNG +wNG wDr qPk hKe qPk bCd -nvV -vDE +bmn +knH kan kan -shU -qXr +oKv +rHo kan kan kan -abb +jXf kan kan kan -lzf -ulF +cbu +quT kan kan -dSn -iHM +iXW +iLs bCd knm jZe knm wDr -mkE -mkE -mkE +mQx +mQx +mQx guK -hbZ -hbZ -hbZ +azy +azy +azy wDr -cXx +euW rOI aId -sxG +hQP nmY qpV -ieO +bUQ kyP -uQY +ajZ aaa bdH aaa @@ -97044,98 +97045,98 @@ aaa aaa aab bdH -bBr -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf abw -rik +eJU awW akt awW -qVq -sFa +cUo +dwu utp qxS -sQd +usu gxm -vUL -vUL -vUL +lmG +lmG +lmG gxm -eom -eom -eom +asm +asm +asm gxm -vMQ +gvu lSN -woO +xZt aoe -bXS +pjF wUd -ksv -ksv -ksv -oYg -eKS -eKS +asU +asU +asU +fFO +mrL +mrL aoe -cfX -vOl -uRp +yjb +aEN +aGX aoe -jji -iWb -fVW -ehu +aLS +akw +fOL +aRS ajl -fHl +sHC xCB -jOO +tJm gxm -jHU -jHU -jHU +alW +alW +alW gxm -shT -shT -shT +mWJ +mWJ +mWJ gxm -gUl -bOv -adB -bdZ -mLT +bMZ +qTA +wrI +lST +aJU baw sMM baw -ckG +gFd trb -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -plE +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY aaa aab aaa @@ -97161,21 +97162,21 @@ aKR aKR aKR aKR -lZn +dvD xzB -dJp +pIo xzB xzB -gBp +fQy nAm wDr -yhn -yhn -yhn +aeL +aeL +aeL uZm -ewZ -ewZ -ewZ +kaq +kaq +kaq wDr qPk hKe @@ -97184,19 +97185,19 @@ kan kan kan kan -hEN -qpq -hoY -jjQ -uvM -exx -qpq -wqk -uvM -mcq -gAG -qpq -fDw +xdx +rlZ +egc +thP +beW +bTu +rlZ +fqZ +beW +bgP +psK +rlZ +cFP kan kan kan @@ -97205,21 +97206,21 @@ tzw sPY knm wDr -viK -viK -viK +wQu +wQu +wQu guK -hbZ -hbZ -hbZ +azy +azy +azy wDr -mIu +sJI aId aId -sxG +hQP nmY uKH -ieO +bUQ bVU bVU bVU @@ -97247,7 +97248,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -97262,7 +97263,7 @@ aag aag aag abw -rik +eJU awW akt vCt @@ -97272,17 +97273,17 @@ gLl gLl gLl gxm -vUL -vUL -vUL +lmG +lmG +lmG gxm -eom -eom -eom +asm +asm +asm gxm -vMQ +gvu nbH -fui +vQN sqf sqf sqf @@ -97293,26 +97294,26 @@ sqf ajl ajl ajl -gTu -kln -cPm +aCo +aEO +aHa aoe -orR -hQG -iWb -bKB -fXh -pKa +cXW +upM +akw +alD +vEx +dME nbH -jOO +tJm gxm -jHU -jHU -jHU +alW +alW +alW gxm -shT -shT -shT +mWJ +mWJ +mWJ gxm vIo vIo @@ -97322,7 +97323,7 @@ vIo nTH sMM baw -bBn +teg trb aag aag @@ -97338,7 +97339,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -97349,96 +97350,96 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -jbi -hSC -hSC -hSC -hSC -hSC -hSC -jbi -hSC +aKS +aKS +aKS +aKS +aKS +aKU +aKS +aKS +aKS +aKS +aKS +aKS +aKU +aKS aLL -oTf -feu +vtJ +stP eWs -uAh -sLt -otm -dws +hKO +eoE +lrH +kdo wDr -eiC -eiC -eiC +aiR +aiR +aiR wDr -lDP -lDP -lDP +hwH +hwH +hwH wDr qPk hKe qPk kan -fTC -tjV -jKo -jxj -qpq -ovW -qpq -qpq -qpq -qpq -qpq -qpq -qpq -ovW -qpq -nSg +mBk +oDJ +vaQ +iTt +rlZ +buu +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +buu +rlZ +dTZ kan -xZm -dmc +psO +gjK kan knm sPY knm wDr -jHj -jHj -jHj +ydA +ydA +ydA wDr -blO -blO -blO +azD +azD +azD wDr -aMA +ePN aId aId -sxG +hQP nmY -cMB -ryE +xUY +wGe bSf -imk -cJG -imk -imk -imk -imk -imk -imk -imk -cJG -imk -imk -imk -cJG -imk +bWe +bWn +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWn +bWe +bWe +bWe +bWn +bWe bVU aaa aab @@ -97450,7 +97451,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -97466,35 +97467,35 @@ aag aag abs adq -tDE -xOg -lRz +aeZ +aka +aoI gLl mis mis mis yjr gxm -vUL -vUL -vUL +lmG +lmG +lmG gxm -eom -eom -eom +asm +asm +asm gxm -vMQ +gvu nbH -jOO +tJm sqf -utG -dvV -rAW -dbC -dbC +anp +wjz +fnA +jZY +jZY sqf -vgo -jXp +wpu +okO ajl ajl ajl @@ -97502,29 +97503,29 @@ ajl ajl ajl ajl -oNU -bKB +onQ +alD ajl -rnz +bgN nbH -jOO +tJm gxm -jHU -jHU -jHU +alW +alW +alW gxm -shT -shT -shT +mWJ +mWJ +mWJ gxm ojX ojX ojX mxo vIo -rfU -ljR -xEw +gnv +yhI +tTu pgD tQV aag @@ -97541,7 +97542,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -97552,96 +97553,96 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -vzl -wiJ +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +pzG +bby aLL aLL -eQS +frz aLL aLL aLL aLL aLL wDr -eiC -eiC -eiC +aiR +aiR +aiR wDr -lDP -lDP -lDP +hwH +hwH +hwH wDr qPk hKe qPk kan -qNe -xQr +vou +dYU kan -tjN -jNe -lPN -qpq -qpq -iRs -iRs -iRs -qpq -qpq -hjz -qJe -kCL -qaK -emM -vAL +cWm +soK +gDW +rlZ +rlZ +pqD +pqD +pqD +rlZ +rlZ +gYl +frl +wFb +wzZ +tdI +vbV kan knm jZe knm wDr -jHj -jHj -jHj +ydA +ydA +ydA wDr -blO -blO -blO +azD +azD +azD wDr bSf bSf auW bSf bSf -wXQ +ued bSf bSf -pMR -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -vLH -imk +cml +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWo +bWe bVU aaa aab @@ -97653,7 +97654,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -97669,65 +97670,65 @@ aag aag abs adq -wyV -okc -rLi +afr +akc +apg gLl mis mis mis mis gxm -xwH -vUL -vUL +aoz +lmG +lmG gxm -eom -eom -eom +asm +asm +asm gxm -vMQ +gvu xCB -jOO +tJm sqf -uXI -iYa -egw -egw -egw +sOZ +oNJ +eDo +eDo +eDo sqf -iCL -cfG -myB +vXv +wub +gXl ajl -rkr -fre -pqn -kJQ +wqW +awj +dDL +aLZ ajl -dQg -bKB +aCp +alD ajl -cKI +evM xCB -jOO +tJm gxm -jHU -jHU -jHU +alW +alW +alW gxm -shT -shT -qpe +mWJ +mWJ +kbl gxm ojX ojX ojX ojX vIo -xgH -jTC -aCm +vpn +csI +goL pgD tQV aag @@ -97744,7 +97745,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -97755,96 +97756,96 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -gVy +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz aLL -dYi +etF bbS aLL -fuA -cQZ -gmm -xUx +coT +fgh +rZP +gmj wDr -eiC -eiC -eiC +aiR +aiR +aiR wDr -lDP -lDP -lDP +hwH +hwH +hwH wDr -eZM -trl -nCw +iGi +pSF +eZC bst bst bst bst bst bst -iTf -qpq -qpq -jjm -nTC -fwv -qpq -qpq -cRo +oou +rlZ +rlZ +tiI +hDR +oZV +rlZ +rlZ +xMj biA biA biA biA biA biA -rcB -cok -cKQ +hBW +ltv +uYM wDr -jHj -jHj -jHj +ydA +ydA +ydA wDr -blO -blO -blO +azD +azD +azD wDr -onh -vGs -xuA -kSD +wcN +nGi +bVd +bUO bSf weC -oVv +tZc bSf -mCm -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe bVU aaa aab @@ -97856,7 +97857,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -97871,67 +97872,67 @@ aag aag aag abw -rik +eJU awW akt awW -lgh +avJ mis mis mis mis gxm -vUL -vUL -vUL +lmG +lmG +lmG gxm -eom -eom -eom +asm +asm +asm gxm -vMQ +gvu lSN -lmk +kaj sqf -xdV -mlD -kGL -fEI -fEI +anq +awn +xsz +jTj +jTj sqf -kVD -vKy -jZf -doA -fwj -ckV -egU -xnS +lmi +xgP +dwA +wJo +cyU +eme +skl +nzv fQu -pxy -bKB +akx +alD gWG -vMQ +gvu xCB -jOO +tJm gxm -jHU -jHU -jHU +alW +alW +alW gxm -shT -shT -shT +mWJ +mWJ +mWJ gxm ojX ojX ojX ojX -wsc +qxz baw sMM baw -ukm +wiz trb aag aag @@ -97947,7 +97948,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -97958,96 +97959,96 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -gVy +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz aLL -tYQ +fXz bbS aLL -dLs +uUt aLW aLW -nqA +guS wDr -eiC -eiC -eiC +aiR +aiR +aiR wDr -lDP -lDP -wvM +hwH +hwH +srR wDr cvg hKe qPk bst -mXG -tde -tjL -wfU +bui +bvz +bgC +xfT bkE -msn -qpq -vtS -urK -xYS -urK -jCP -qpq -rAp +bJw +rlZ +hBc +hzs +bHg +hzs +aZK +rlZ +hYn cpJ -kKK -qgl -oxL -oJn +lQO +bsQ +bmj +caS biA knm sPY jxu wDr -wHI -jHj -jHj +oVk +ydA +ydA wDr -blO -blO -blO +azD +azD +azD wDr -kXG +wgR bTO bTO -vyG +sYP bSf cpk -xuA +bVd bSf -mCm -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe bVU aaa aab @@ -98059,7 +98060,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -98074,7 +98075,7 @@ aag aag aag abw -rik +eJU awW akt aAn @@ -98084,47 +98085,47 @@ mis mis mis gxm -vUL -vUL -vUL +lmG +lmG +lmG gxm -eom -eom -eom +asm +asm +asm gxm -vMQ +gvu xCB -jOO +tJm sqf -qrs -mlD -ygo -gci -kGO +anr +awn +tEi +asu +hbI sqf ajl -lCG +vtx ajl ajl -gFc -pKE -fwj -eTv +kgp +fbB +cyU +bho fQu -pxy -bKB +akx +alD gWG -vMQ +gvu xCB -jOO +tJm gxm -jHU -jHU -jHU +alW +alW +alW gxm -shT -shT -shT +mWJ +mWJ +mWJ gxm ojX ojX @@ -98134,7 +98135,7 @@ vIo xuY sMM baw -cLX +oby trb aag aag @@ -98150,7 +98151,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -98161,96 +98162,96 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -gVy -buL +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +bdy bbS bbS -buL +bdy bbS xka uLn uoA wDr -eiC -eiC -eiC +aiR +aiR +aiR wDr -lDP -lDP -lDP +hwH +hwH +hwH wDr qPk hKe qPk bst -kQM -qQj -vzG -wAw +bcR +bev +bgA +eas bkE -pAn -lij -sbh -lij -lij -lij -sbh -lij -ovM +bLr +qni +hQY +qni +qni +qni +hQY +qni +lJG cpJ -jLN -tEn -wCN -iht +kRd +bCl +bsz +caT biA knm sPY knm wDr -jHj -jHj -jHj +ydA +ydA +ydA wDr -blO -blO -blO +azD +azD +azD wDr hkB bTO qSm cls -vWI +xoJ weC cls -mKk -mCm -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk +bWc +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe bVU aaa aab @@ -98262,7 +98263,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -98278,65 +98279,65 @@ aag aag abs adq -tDE -xOg -lRz +aeZ +aka +aoI gLl mis mis mis mis gxm -vUL -vUL -vUL +lmG +lmG +lmG gxm -eom -eom -eom +asm +asm +asm gxm -pyG +hwB xCB -jOO +tJm sqf sqf -dzq +awp sqf sqf sqf sqf -wob -inS -lPH +mNI +sdn +xNu ajl -aVp -gum -aHP -geP +vRX +pth +axm +lhv ajl -pBc -bKB +hVz +alD ajl -ccM +lXR xCB -jOO +tJm gxm -jHU -jHU -jHU +alW +alW +alW gxm -shT -shT -shT +mWJ +mWJ +mWJ gxm ojX ojX ojX ojX vIo -rfU -ljR -xEw +gnv +yhI +tTu pgD tQV aag @@ -98353,7 +98354,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -98364,96 +98365,96 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -rLx +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +pDo aLL -dAp +aON xYB aLL -qRt +rlh aLW aLW -wfO +gxh wDr -eiC -eiC -eiC +aiR +aiR +aiR wDr -lDP -lDP -lDP +hwH +hwH +hwH wDr qPk hKe tON bst -fCd -vIN -okr -eUV -izh -gVO -nSg -fyC -uJI -qpq -nSg -fyC -uJI -wxf -tUZ -ipt -vYc -hvf -wlQ +bcS +bag +bgz +elE +bgv +bPz +dTZ +qxL +sYh +rlZ +dTZ +qxL +sYh +fFL +bmc +jdG +bCm +bsP +hgZ biA knm sPY knm wDr -jHj -jHj -jHj +ydA +ydA +ydA wDr -blO -blO -blO +azD +azD +azD wDr -avr +wjC bTO xMf -nYP +unh bSf weC -uED +rfI bSf -jHe -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk +qzc +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe bVU aaa aab @@ -98465,7 +98466,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -98481,32 +98482,32 @@ aag aag abs adq -wEP -okc -lxN +sSj +akc +rMh gLl gLl gLl gLl gLl gxm -eLW -eLW -eLW +qqa +qqa +qqa gxm gxm gxm gxm gxm -hsR +atz nbH -mkV +tyC ajl -hxI -iWb -hwi -xqT -dGd +qhx +akw +axl +gKR +fvd ajl ajl ajl @@ -98514,32 +98515,32 @@ ajl ajl sYT sYT -wCU +tWY sYT ajl -jUr -kme +nMV +vIf ajl -pyG +hwB nbH -pBx +yeg gxm gxm gxm gxm gxm -eLW -eLW -eLW +qqa +qqa +qqa gxm vIo vIo vIo vIo vIo -cnU -jTC -qiR +crh +csI +qhb pgD tQV aag @@ -98556,7 +98557,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -98567,96 +98568,96 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -gVy +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz aLL -dYi +etF bbS aLL -wVE -rTt +djQ +nFs aLW gFa wDr -eiC -eiC -eiC +aiR +aiR +aiR wDr -lDP -lDP -lDP +hwH +hwH +hwH wDr qPk hKe qPk bst -jso -qQj -oPO -auv +buj +bev +dBO +waD bkE -aCY -qpq -xms -qpq -qpq -qpq -xms -qpq -cyO +bQM +rlZ +izY +rlZ +rlZ +rlZ +izY +rlZ +hZN cpJ -cSw -xmf -wCN -jYV +tni +bCn +bsz +hMN biA knm sPY knm wDr -jHj -jHj -jHj +ydA +ydA +ydA wDr -blO -blO -blO +azD +azD +azD wDr -lgR -wPB -cUF -nLG +xad +roG +mZr +eax bSf fvN -oVv +tZc bSf -mCm -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe bVU aaa aab @@ -98668,7 +98669,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -98683,63 +98684,63 @@ aag aag aag abw -rik +eJU awW awW awW -kdu -baY -baY -baY -baY -xCc -eNF -sPy -sPy -rYd -baY -baY -nOS -baY -mJt +wAE +iKy +iKy +iKy +iKy +tMi +lCg +knb +knb +jsd +iKy +iKy +udv +iKy +gre nbH -pKa -iCf -xdU -iWb -iWb -iWb -xvV -opc -opc -oHr -opc -opc -opc -opc -aHP -opc -opc -xdU -xvV -iCf -pKa +dME +bVE +aos +akw +akw +akw +alE +ans +ans +asw +ans +ans +ans +ans +axm +ans +ans +aos +alE +bVE +dME nbH -grH -baY -nPe -baY -baY -euP -eNF -eNF -eNF -pEa -baY -baY -baY -baY -kdu +kPa +iKy +gDk +iKy +iKy +gOa +lCg +lCg +lCg +ccx +iKy +iKy +iKy +iKy +wAE baw baw qYC @@ -98759,7 +98760,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -98770,68 +98771,68 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -hSC -sbu +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbA aLL aLL -eQS +frz aLL aLL aLL aLL -bYI +hrF wDr wDr wDr wDr wDr -iWA -aNy -aNy +jXR +enK +enK wDr kgt hKe qPk bst -juR -fdc -kwz -vdZ +aYQ +bbd +bcL +bez bkE -iXj -qpq -qpq -mUX -rIC -sJr -qpq -qpq -cbv +bRP +rlZ +rlZ +xsw +bZn +kFv +rlZ +rlZ +siW cpJ -jfz -waR -cOO -oly +bmi +bnT +btX +byc biA knm sPY qPU wDr -gFJ -gFJ -mNo +sai +sai +wrN wDr wDr wDr @@ -98839,27 +98840,27 @@ wDr wDr bSf bSf -lie +auX bSf bSf -wXQ +ued bSf bSf -uRZ -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk -imk +cmn +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe bVU aaa aab @@ -98871,7 +98872,7 @@ aaa aaa aab bdH -kfC +aad aag aag aag @@ -98886,11 +98887,11 @@ aag aag aag abw -rik +eJU awW aTm awW -kdu +wAE qQu qQu qQu @@ -98906,27 +98907,27 @@ dcR dcR dcR hWa -cEo -vcf -wJS -wJS -wJS -wJS -eVB -wJS -wJS -wJS -wJS -afV -wJS -wJS -rJT -wJS -wJS -svE -ffG -vcf -cEo +cEG +aEe +akA +akA +akA +akA +jOG +akA +akA +akA +akA +rnN +akA +akA +maT +akA +akA +oap +aSb +aEe +cEG rxQ dcR dcR @@ -98942,7 +98943,7 @@ qQu qQu qQu qQu -kdu +wAE baw vbB ley @@ -98962,7 +98963,7 @@ aag aag aag aag -uQY +ajZ aaa aab aaa @@ -98973,37 +98974,37 @@ aaa aab aaa aKR -hSC -hSC -hSC -hSC -hSC -yhG -hSC -hSC -hSC -hSC -hSC -hSC -yhG -hSC +aKS +aKS +aKS +aKS +aKS +aKV +aKS +aKS +aKS +aKS +aKS +aKS +aKV +aKS aLL -kDs -wao +qVE +iGc bwG -wmN -gwW -eXW +hCk +nRN +mzI olQ oCK -lLU +eob gMk qRb -dIQ -pJW +axY +xrC oWF -pJW -cIM +xrC +toQ exl qyX qPk @@ -99013,15 +99014,15 @@ bst bst bst bst -jiO -qpq -qpq -liq +cjW +rlZ +rlZ +oRy kan -cLj -uzW -qpq -eBh +biy +boX +rlZ +vMG biA biA biA @@ -99031,38 +99032,38 @@ biA wHn rDO cIO -dnR -vhr +rEd +fml fqU -wxZ -wbI -inv +bIO +rSA +cIm emw -dOB -hAJ -wjN +bvD +gZW +lUA bwv -eaD -oAw -kuC -mqu -dxq +hDU +iNH +cDx +ndl +iDk bSf -imk -jZl -imk -imk -imk -imk -imk -imk -imk -jZl -imk -imk -imk -jZl -imk +bWe +bWp +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWp +bWe +bWe +bWe +bWp +bWe bVU aaa aab @@ -99074,42 +99075,42 @@ aaa aaa aab bdH -htC -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo +aae +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah abs abs awW vGQ ajE -kdu -pKa -bxr -pKa -tPE -sei -sei -sei -sei -bxr -sei -sei -sei -sei -wqE +wAE +dME +epT +dME +aVK +llo +llo +llo +llo +epT +llo +llo +llo +llo +aWM lSN -jOO +tJm vOy vOy vOy @@ -99126,46 +99127,46 @@ vOy vOy vOy vOy -lci -leI +wMO +wky sqf -rnz +bgN lSN -vzO -sei -bxr -sei -sei -sei -sei -sei -sei -bxr -sei -pKa -vOd -sei -kdu +nyK +llo +epT +llo +llo +llo +llo +llo +llo +epT +llo +dME +bRO +llo +wAE baw dBp gVA tQV tQV -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -smo -qPi +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +afm aaa aab aaa @@ -99191,65 +99192,65 @@ aKR aKR aKR aKR -tOP +deq lfx -eRd +jgK lfx lfx -ujS -uYw -tOP +yih +kgD +deq bwG vVy gtD -ahs +vEv cvI cvI cvI -gpj +aza qPk wKN qPk kan -hAN -uvM -uKU -rHP +ihw +beW +lkW +biF vhX -gKf -qpq -qpq -bDd +akQ +rlZ +rlZ +pnC dBH -oYn -rEQ -qpq -dfw +bky +ryt +rlZ +wYS vhX -vbq -hHq -ajP -hHq +jva +tAU +xmT +tAU kan knm sPY knm -vKS +qEM wzy wzy wzy -vKS +qEM juo seL -uft -hXS -seR +siC +jNw +xuy juo -poZ -jKh +vqz +vMU mJO vDN -ePh +xbg bVU bVU bVU @@ -99297,9 +99298,9 @@ biV aet biV aet -dMl +ekY aet -dMl +ekY aet abE abE @@ -99310,31 +99311,31 @@ abE abE abE abE -fck -olw -vjP +cXq +bXc +vZJ vOy -uzC -iEk -lJf -fEg -dat +nos +fcy +drT +ipQ +lZZ vOy -pss -bEV -tnJ -hsM -eCP -oUa -uyX +oDL +nEH +vAQ +qIL +ncE +vWt +gei vOy -bQN -vNh -goP +ayX +kXw +pxo sqf -iEG -olw -vjP +lPY +bXc +vZJ pBG pBG pBG @@ -99345,7 +99346,7 @@ pBG pBG pBG pBG -iPQ +oiq mRU mRU mRU @@ -99392,44 +99393,44 @@ aaa aaa aaa bdH -kfC +aad kyw -tOP +deq lfx bwG aQF aQF aQF aQF -jBN +szE aQF -mby -cRG -ahs -bZp +ihW +qOS +vEv +xkN dwj -bZp -gpj +xkN +aza qPk hKe qPk kan -iUj -qpq -qpq -qpq -nhq -tsT -uNy -uNy -xPw +iMI +rlZ +rlZ +rlZ +qep +cnr +qqK +qqK +ayD dBH -oYn -rEQ -qpq -ovW -kYD -fpS +bky +ryt +rlZ +buu +uXf +wxq wJb wJb bPu @@ -99437,13 +99438,13 @@ kan knm sPY knm -vKS -slI +qEM +hEg ewc -kBa -vKS -eam -tZm +lLl +qEM +jvD +cBV mJO mJO mJO @@ -99452,9 +99453,9 @@ mJO mJO mJO mgb -ePh +xbg lyW -uQY +ajZ bdH aaa aaa @@ -99496,48 +99497,48 @@ aaa aaa aaa acv -iDY -gFh -rGP -rGP -iDY -iDY -iDY +aiH +alf +arp +arp +aiH +aiH +aiH aet -fRM -xMn -xMn -xMn -xMn -qOu -cjU -fvY +kPB +aci +aci +aci +aci +gwo +aed +aeG abE -bWM -oUy -bWM +rSW +dNv +rSW vOy -xnr -mmr -bzN -uKL -hLO +oNp +aSn +lYL +pNP +kCj vOy -eOh +nLI rDV dwr rDV mTd gQF -ndu +xXr vOy -yjH -vNh -goP +niL +kXw +pxo sqf -bWM -udI -bWM +rSW +dYl +rSW pBG rdZ rdZ @@ -99546,15 +99547,15 @@ rdZ bCs pBG rLp -stA +ttX pBG -hDA +vpf mRU -xbv +vor qnA -prG +vkI gNN -aYe +lyz woU aaa aaa @@ -99595,16 +99596,16 @@ aaa aaa aaa bdH -kfC +aad kyw -oSA +xwd lfx bwG -vwP -vWx -vwP -pMu -xCF +weR +aPE +weR +vrI +izk aQF aQF aQF @@ -99613,33 +99614,33 @@ aQF aQF aQF aQF -hJK -trl -nCw +mNG +pSF +eZC kan -dCV -rIC -sJE -mNV +avW +bZn +dXr +uay vhX -lPN -qpq -qpq -jVq +gDW +rlZ +rlZ +wYr dBH -oYn -rEQ -qpq -hjz +bky +ryt +rlZ +gYl vhX -nbW -vgW -sJZ -vgW +hCS +xIk +cLA +xIk kan -rcB -cok -vTR +hBW +ltv +qEz bJt bJt bJt @@ -99657,7 +99658,7 @@ mJO mgb mgb lyW -uQY +ajZ bdH aaa aaa @@ -99699,48 +99700,48 @@ aaa aaa aaa acv -iDY +aiH alg bBC bBC aIx aIB -iDY +aiH aet kPZ acI acj vJZ wfZ -axz +adF aef -evd +dWw agA -dpJ -hGe -gqw +mRJ +fjA +gqH vOy -srr -sNk -gDK -roz -utk +anz +vgx +hme +mzq +qJy vOy -crB -crB -atD -crB -mOB -crB -fnF +vti +vti +fBO +vti +gGx +vti +lid lJv -uzN -vNh -goP +aCC +kXw +pxo asn -dpJ -xwa -gqw +mRJ +oEn +gqH pBG rdZ rdZ @@ -99749,15 +99750,15 @@ rdZ rdZ pBG jZU -aMc +jAe pBG jtU mRU -cuQ +tNw ebI -tDm +ukC jtU -tZB +fCi woU aaa aaa @@ -99798,23 +99799,23 @@ aaa aaa aaa bdH -kfC +aad kyw -tOP +deq cGY bwG rUq rUq sab sab -xCF +izk pQc -sIm -aTb -cWw -iiB -ivb -hvs +cWr +jSU +lXO +eKT +wan +cTC aQF syj wKN @@ -99825,15 +99826,15 @@ xMs xMs xMs xMs -jiO -qpq -qpq -tXK +cjW +rlZ +rlZ +kSC kan -gCC -bPv -qpq -aSj +quv +rZB +rlZ +wxc vMo vMo vMo @@ -99845,11 +99846,11 @@ sPY hkC bJt xOL -uXZ -dFz -kDu -gTm -qsH +gGI +eeu +gfq +eFP +gAz mJO plv plv @@ -99857,10 +99858,10 @@ plv plv plv mJO -ePh +xbg pgJ lyW -uQY +ajZ bdH aaa aaa @@ -99908,42 +99909,42 @@ ahN uli uli uli -fmr +bWf aet lwC aTT acl xxi qJj -axz +adF aef aef -vUr -cHn +uZZ +muW lGh -jgv +bBH vOy -sHU -xLN -fHH -fFA +awQ +oLU +thN +vDa vOy vOy -qum -frx -pWk -xnN -xnN -thS -jbY +qfy +inL +oiY +ueJ +ueJ +oDi +trF lJv -jxZ -vNh -goP +edv +kXw +pxo asn -xLr +lXl yiu -jgv +bBH pBG rdZ rdZ @@ -99952,13 +99953,13 @@ rdZ rdZ pBG cVq -rKX +nOb pBG vpI mRU mRU mRU -wrZ +gBs mRU mRU woU @@ -100001,58 +100002,58 @@ aaa aaa aaa bdH -kfC +aad kyw -tOP -hUp +deq +veq bwG pKh sab -pel -tQC -sHZ +rDv +bmW +jWu pQc -tYI +aqo aRy aRy aRy aRy -hBa +nIj aQF rWv hKe qPk xMs -gMK -vdJ -fYF -qqG +aSO +feY +xEz +bgn bgw -ceu -qpq -qpq -jjQ -uvM -mcq -qpq -qpq -wJP +eXb +rlZ +rlZ +thP +beW +bgP +rlZ +rlZ +hAU xqy -wQW -aQl -dpV -rCq +bmk +wZE +iGn +byd vMo knm sPY knm lhB -pcx -cOg -dqB -cOg -cOg -jHH +pOY +bDs +jge +bDs +bDs +hLC mJO plv plv @@ -100060,10 +100061,10 @@ plv plv plv mJO -ePh +xbg mgb lyW -uQY +ajZ bdH aaa aaa @@ -100111,42 +100112,42 @@ uli uli uli mov -eLx +bWq aet lhX aXc acl jlN qqn -axz +adF bls aeH -iiY -bGe +agq +ijd efV -jgv +bBH vOy -xng -xfx -wqK -bVV -ctI -rgx -vPQ -qDA -xBx -pSe -iQP -gVz -tWa +hng +dnC +hPN +vCk +qEn +qam +riE +gAS +lMv +dVu +eSo +qmD +aIC lJv -pmn -vNh -goP +aCt +kXw +pxo asn -xLr +lXl poD -otd +qmW pBG rdZ rdZ @@ -100155,22 +100156,22 @@ rdZ rdZ pBG dzp -riX +ngV pBG jtU jtU uBx -teS -hDA +fLi +vpf prf -hDA +vpf woU aaa -bBr -wLo -wLo -wLo -plE +aac +aaf +aaf +aaf +ajY aaa aaa aaa @@ -100204,58 +100205,58 @@ aaa aaa aaa bdH -kfC +aad kyw -tOP +deq deF bwG -orp -vkx -jjc -fho -cSo -shP -iNP +mTi +lJK +kYV +hhn +aQp +aQG +ulZ aRA aRA bQU bQU -ozK -jaQ +bjD +dqE htl vaq vTX xMs -qkD -dtM -qTg -fmP +lOH +dUS +bcP +dSX bgw -qOq -qpq -qpq -iRs -iRs -iRs -qpq -qpq -bXW +fbw +rlZ +rlZ +pqD +pqD +pqD +rlZ +rlZ +rFH xqy -bpp -pdk -fLE -bzw +aGg +bof +vit +dxu vMo knm sPY knm lhB -tLE -cOg -ldA -cOg -cOg -mTS +xCb +bDs +bIJ +bDs +bDs +qJS mJO plv plv @@ -100263,10 +100264,10 @@ plv plv plv mJO -ePh -ePh +xbg +xbg lyW -uQY +ajZ aaa avo avo @@ -100308,56 +100309,56 @@ aaa aaa aaa acv -nVh +aez uli aIx uli uli mov -eLx +bWq aet lhX eYM uuR dHu qqn -axz +adF aef -ejL +kqN agA -xLr +lXl qdJ -otd +qmW vOy -hNu -foy -xFF -tAi -dyw -aWr -aWr -urQ -ndN -uzN -vNh -xDZ -heC +xyt +wiW +tOr +dBj +wei +kBP +kBP +jsx +tjn +aCC +kXw +pQP +qAT vOy vOy -rwk -qGa +mFq +vqW sqf -bak +rnM poD -jgv +bBH pBG pBG pBG pBG -lCb +nec pBG pBG -gzR +saL pBG pBG mRU @@ -100366,16 +100367,16 @@ mRU mRU mRU jtU -hDA +vpf woU aaa -kfC +aad aag aag aag aag -wLo -plE +aaf +ajY aaa aaa aaa @@ -100407,14 +100408,14 @@ aaa aaa aaa bdH -kfC +aad kyw -tOP +deq oWq bwG aQF aQF -qcK +aPH xIQ tmX pQc @@ -100423,42 +100424,42 @@ aRy feI brb cpp -dPM -iLj +buv +aWF qPk hKe qPk xMs -mKO -gFZ -ody -xXz -pHs -nAs -qpq -jCP -tQT -ofs -clq -vtS -qpq -hHZ -tOk -pfq -aGf -rQJ -mom +akE +qGF +bcV +bgr +bgy +fxZ +rlZ +aZK +vYt +fDj +eBZ +hBc +rlZ +pKZ +bmd +bnR +ggz +dka +bye vMo knm sPY knm lhB -ccc -cOg -ePI -xvJ -lra -pKm +aQW +bDs +bNw +wIG +wLK +hAz bJt bJt bJt @@ -100466,10 +100467,10 @@ bJt bJt bJt bJt -ePh -mfG +xbg +otW lyW -uQY +ajZ avo avo avs @@ -100511,13 +100512,13 @@ aaa aaa aaa acv -nVh +aez uli uli uli uli uli -iDY +aiH aet lhX acl @@ -100526,34 +100527,34 @@ acl qqn aef aef -xVE +tRD abE -jAn +tkF qdJ -jgv +bBH vOy -nTT +iYf bIM -nBn -tyi +wPz +iUo vOy -bVm -hoR -etc -ndN -uzN -vNh -tCa -ulw -xJI -qBO -anK -azm -nVO -bGe +xqp +lzA +vkp +tjn +aCC +kXw +vtm +emK +fGu +hPe +sdu +btC +vLj +ijd efV -jgv -hcz +bBH +rRT pBG gqQ cHG @@ -100569,16 +100570,16 @@ gel fkX mRU jtU -xBp +tMU woU -wLo +aaf aag aag aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -100610,74 +100611,74 @@ bdH bdH bdH bdH -kfC +aad kyw -oSA +xwd lfx bwG -vwP -vWx -xCF +weR +aPE +izk xIQ -lgn +vse aQF -enz +blp aRy -cyH -lRK -tJc -tkV +aTn +aTY +iCF +gJP aQF uNf hKe qPk xMs -wzX -dtM -wlm -xrK +aYR +dUS +mqU +bgs bgw -tXf -lij -ccW -xqC -xqC -xqC -ccW -lij -pAP +icw +qni +klH +tgV +tgV +tgV +klH +qni +uah xqy -cxy -oYh -fLE -qnn +jhn +jZd +vit +bzo vMo knm sPY knm lhB -fBI -cOg -dQN -cOg -cOg -cOg -xcS -kos -ffO -hhN -cOg -mCr +pxD +bDs +gSk +bDs +bDs +bDs +xjb +fbo +duo +iIl +bDs +ujV bJt -ePh -ePh +xbg +xbg lyW -uQY +ajZ avo avs avs -daC -qua +hAG +vtr avs avs avo @@ -100716,63 +100717,63 @@ aaa acf ahy avZ -ruZ -ruZ -ruZ +ipK +ipK +ipK uli -fmr +bWf aet lhX acl acl acl qqn -axz +adF aef afs agA -xLr +lXl yiu -jgv +bBH vOy -urZ -foy -nBn -qLf +mTp +wiW +wPz +jeq rQy -lJR -crB -etc -toL -xCS -sZu -dWj -pSe -qTf -riA -pSe -nDG -jgD -cHn +wWR +vti +vkp +cfT +hec +gNp +hVf +dVu +rmc +lON +dVu +oDR +vOP +muW cDI -ptW -gCQ -kEI +tru +uXE +qvL wmP wmP dRP eFY nQA eAN -koX +xqQ rfb -kGV -xOr -vRi +cXF +rLU +dKp cHu mRU jtU -hDA +vpf woU aag aag @@ -100781,7 +100782,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -100813,75 +100814,75 @@ bdH bdH bdH bdH -kfC +aad kyw -tOP +deq sJa bwG pGG sab -xCF -xAK +izk +hds aQF aQF -pem +haQ aRy -qdB -ikg -mgP -nzX +boY +qZH +bsN +buB aWD qPk hKe qPk xMs -mbX -bRI -jex -oBk +bXw +eiw +bda +bgt bgw -oJs -qpq -qpq -qpq -qpq -qpq -qpq -qpq -ifI +jxi +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +nrN xqy -rFw -xJQ -sgM -mCZ +nYD +boh +qDP +wbP vMo knm sPY cbL bJt -nZo -cOg -fhC -eTH -jeN -eTH -eTH -eTH -eTH -plR -pKm -thj +qom +bDs +rAx +jFE +fuS +jFE +jFE +jFE +jFE +idx +hAz +gHj bJt oqI -ePh +xbg avo avo avo avs -jKN -cmQ -cmQ -sRf +rKn +awa +awa +umm avs avo aaa @@ -100919,47 +100920,47 @@ aaa acf aet aIx -ruZ +ipK ceC -qTa +eRR uli -eLx +bWq aet loV acK acm acK esK -tZP -nix +adD +sOw afs agA -xLr +lXl yiu -jgv +bBH vOy -lHU +axn dRh -sUQ -oCA +ydE +bST rQy vOy -jSO -etc -nRg -lVH -pOa -psW +vdO +vkp +aoM +kBo +chc +naR vOy -pLj +hrn vOy -pwE +aRd aIo vOy -bCa +whc yiu -jgv -xVg +bBH +mxq pBG lvb eAN @@ -100967,14 +100968,14 @@ jVg rGU xCf eAN -koX +xqQ rLv -pzf +bHk vZw -pzf +bHk cHu mRU -hDA +vpf mRU woU aag @@ -100984,7 +100985,7 @@ aag aag aag aag -uQY +ajZ bdH bdH aaa @@ -101016,75 +101017,75 @@ bdH bdH bdH bdH -kfC +aad kyw lfx -tOP -eRd -tMA -tMA -mXY +deq +jgK +aNs +aNs +hyw mzz aQF aQF -yhk +blj aRy -bQx -gEn -epY -nzX +bpa +fHF +bml +buB aWD -nCw -trl -nCw +eZC +pSF +eZC xMs xMs xMs xMs xMs xMs -kfl -qpq -apm -uxj -rIC -sJr -eNV -qpq -iOI +jGn +rlZ +ggJ +oXY +bZn +kFv +dut +rlZ +sPJ vMo vMo vMo vMo vMo vMo -rcB -cok -rqT +hBW +ltv +kGw bJt bJt -ePl -rJg -cPU +nFI +qdk +vzP bJt -vZi +hjB bJt -fLw -cOg -dQN -cOg -nnU +xfK +bDs +gSk +bDs +bpI bJt -xkz -ePh -dsk -oVe -oVe -eIQ -exo -exo -rMD -wvq +jLH +xbg +lpy +avC +avC +wEg +axa +axa +dSZ +oMs avs avo bdH @@ -101122,46 +101123,46 @@ aaa acf aet uli -ruZ +ipK awe -dce +fwD uli -nEP +oGy aet lhX acl acl acl qqn -axz +adF aef afs agA -xLr +lXl yiu -jgv +bBH vOy -jgG -ide -qKR -qKR -qKR +aAr +pGK +tpa +tpa +tpa vOy -wTH -etc -pqv -iih -xNm -qsh +dHV +vkp +jUM +lou +eBO +pRn vOy -xqB -uwx -jNf -wcO +ayZ +aCD +hFC +qmy vOy -xLr +lXl yiu -jgv +bBH pBG pBG hEl @@ -101170,14 +101171,14 @@ fQS oGY neT eAN -koX -myY +xqQ +cNH vzp vZw -wqt +erd cHu mRU -amP +vzB mRU woU aag @@ -101187,7 +101188,7 @@ aag aag aag aag -uQY +ajZ bdH bdH aaa @@ -101219,75 +101220,75 @@ bdH bdH bdH bdH -kfC +aad kyw txp -wao +iGc bwG vMr vMr -xCF -ikq +izk +uhl aQF aQF -oDe +blf aRy -xeY -oyW -gnl -nzX +kkt +htL +aUL +buB aWD qPk hKe qPk -lEi +nyw iXU hDw kzb -ffS +pha kan kan -iYO -siB +mwM +wmQ kan kan kan -iYO -yhb +mwM +eRy kan kan -gRX +rIO vEH uFH tQd -lEi +nyw knm sPY knm yfS -nmB -wQV -ndK -ekg -ddi -qex +sEi +dck +quV +doJ +loY +tOW lkd dYR -cOg -dQN -mJW +bDs +gSk +reL wiI bJt -bzt -eDD +tqV +dSm avo avo avo avs -cmQ -cmQ -cmQ -wzR +awa +awa +awa +qUp avs avo bdH @@ -101325,11 +101326,11 @@ aaa acf aet avx -ruZ -ruZ -ruZ +ipK +ipK +ipK uli -eLx +bWq aet lhX acl @@ -101338,33 +101339,33 @@ acl qqn aef aef -nOc +pHG abE -jAn +tkF poD -jgv +bBH vOy -miR +aID gLc -kho -ppW -geK +mKx +iit +kZV vOy vOy -xxw +jpl vOy -lmg +wKL vOy vOy vOy -kON -nRg -nRg -uMq +qqQ +aoM +aoM +vgB kgs -xLr +lXl poD -jgv +bBH bvX ojQ eAN @@ -101373,24 +101374,24 @@ jVg nQA nQA eAN -koX +xqQ rfb -pzf +bHk vZw -pzf +bHk cHu mRU -hDA +vpf mRU woU -smo +aah aag aag aag aag aag aag -uQY +ajZ bdH bdH aaa @@ -101422,74 +101423,74 @@ bdH bdH bdH bdH -kfC +aad kyw cme -rgU +whm bwG -orp -vkx -xCF +mTi +lJK +izk xIQ -xNQ +vyp aQF -ooC +blw aRy -bSt -tHV -iCt -tkV +aTr +aTZ +aUM +gJP aQF rmz wKN qPk -lEi +nyw beH dcd beH -wLv +bqZ beH neS beH beH tJR -ubF +rRU oEw beH beH neS beH -wLv +bqZ beH beH beH -lEi +nyw knm sPY knm yfS -iIH -qlT -dBe -evy -wbv -cDB +hgL +swt +wSX +wpI +ktX +smi lkd tsa -cOg -dQN -cOg +bDs +gSk +bDs vwI bJt lAa mgb lyW -uQY +ajZ avo avs avs -uxD -cFq +loK +wpg avs avs avo @@ -101526,48 +101527,48 @@ bdH aaa aaa acv -nVh +aez uli uli uli uli uli -oxY +oWz aet lhX gsZ uxO bTt qqn -axz +adF aef -rfj +aGS agA -xLr +lXl poD -jgv +bBH vOy -aRD -ide -kck -xxs -kck +aMd +pGK +pRX +mHD +pRX vOy jFf -etc -hMy -erb +vkp +jrM +mWs lmw vOy -kyl -oJq -aVY -kki -tDk +dyb +tsM +prx +fpT +eVT kgs -xLr +lXl poD -jgv +bBH bvX kVV vQR @@ -101576,24 +101577,24 @@ epJ jML jML fnH -koX +xqQ rLv -qQl -bpn +pRy +wwW mRW cHu mRU jtU -hDA +vpf woU aaa -kfC +aad aag aag aag aag -smo -qPi +aah +afm bdH bdH aaa @@ -101625,14 +101626,14 @@ bdH bdH bdH bdH -kfC +aad kyw cGY -rfX +ipn bwG aQF aQF -dKN +sPc xIQ sab pQc @@ -101641,53 +101642,53 @@ aRy aRy eXr iFH -dPM -vup +buv +aWE qPk ckh htl -tAA +aum emr emr emr -lJh +uNB quq duv beH beH beH -wLv +bqZ beH beH beH fcf beH -sDg +pmH rCO rCO rCO -gRi +eVv wwE mDZ knm -cow -ijm -qMj -uJg -rig -bHs -cDB +ykj +rlQ +ven +agH +wxU +tvM +smi lkd rBj -cOg -dQN -cOg -cfb +bDs +gSk +bDs +fUB bJt mgb nhw lyW -uQY +ajZ avo avo avs @@ -101729,48 +101730,48 @@ bdH bdH aaa acv -nVh +aez aIB aKg uli uli mov -eLx +bWq aet lhX kNO acl jlN qqn -axz +adF aef nIS -vUr -cHn +uZZ +muW poD -jgv +bBH vOy -sdI +aMg aSo -kck -xxs -kqO +pRX +mHD +tzL vOy vqZ -etc -eLK -tdK +vkp +rDr +usy nDo vOy -mHr -etc -sQq -nRg -wOL +glB +vkp +ger +aoM +aFf mmN -xLr +lXl poD -jgv +bBH bvX maO lPm @@ -101787,14 +101788,14 @@ wJH sNR mRU jtU -hDA +vpf woU aaa -htC -smo -smo -smo -qPi +aae +aah +aah +aah +afm aaa aaa bdH @@ -101828,69 +101829,69 @@ bdH bdH bdH bdH -kfC +aad kyw oif -tOP +deq bwG -vwP -vWx -xCF -mNA -hWG -lkA -mee +weR +aPE +izk +uhP +aQq +aQH +upO pOi pOi pOi pOi -vKa -iLj +nVF +aWF qPk wKN qPk -lEi +nyw eGZ ieX pfM -wLv +bqZ rEf rWT emr emr usX -ppw +vKe rCO rCO rCO vVd eBg -kkC +wRT bhq dcd eTd -lEi +nyw knm rDO hqp -iEy -dEi -nqI -tvh -mqA -bHs -aao +kKk +rDt +gpI +xwp +fLg +tvM +dfC cEi bJt -vms -dQN -cOg -igx +oKb +gSk +bDs +nqO bJt nQo pgJ lyW -uQY +ajZ aaa avo avo @@ -101938,47 +101939,47 @@ aIB uli uli mov -eLx +bWq aet lwC tIK acl sNO qJj -axz +adF aef nIS -aPk -cHn +eWF +muW poD -jgv +bBH vOy -eys -cZS -kck -xxs -kck +aQZ +bkT +pRX +mHD +pRX vOy foP -tEM -qkv -yfH +sZy +vEr +irU bVe vOy -mQH -haT -dms -aWr -gXA +ggl +jjS +qMP +kBP +kqo vOy -jAn +tkF poD -otd +qmW pBG pBG pBG pBG -bGY +qRr pBG pBG pBG @@ -101990,7 +101991,7 @@ mRU mRU mRU jtU -xBp +tMU woU bdH bdH @@ -102031,27 +102032,27 @@ bdH bdH bdH bdH -kfC +aad kyw -amD +byt lfx bwG iWQ iWQ -wSe -vfr -hTB +uFd +mUq +qwt pQc -uxA -nmZ -nmZ -eBF -eBF -odR +bng +bmX +bmX +tou +tou +jhy aQF -nCw -syB -hgI +eZC +hMk +mkw bdd bdd bdd @@ -102062,7 +102063,7 @@ fUA beH spF uBN -wLv +bqZ jMr eGZ beH @@ -102073,27 +102074,27 @@ bdd bdd bdd bdd -uGy -cok -rcB +xwm +ltv +hBW yfS -aVq -qMj -xjp -eNd -bHs -cDB +ape +ven +njJ +kiM +tvM +smi lkd kvU -kWv -jlU -cOg +idX +cnu +bDs knK bJt -ePh -nnq +xbg +oUZ lyW -uQY +ajZ bdH bdH bdH @@ -102141,42 +102142,42 @@ ahN aIB aKg uli -fmr +bWf aet abK acL acn cRK dXV -axz +adF aef -ejL +kqN agA -xLr +lXl yiu -jgv +bBH vOy -vUV +dVd lea -ydx -mpx -geK +hKl +lDN +kZV vOy vOy -iVN -iVN -iVN +eNI +eNI +eNI vOy vOy -wiF -crB -crB -crB -lnl +hRa +vti +vti +vti +aEZ vOy -xLr +lXl yiu -jgv +bBH fKh gQk trU @@ -102190,10 +102191,10 @@ pBG jtU jtU uBx -alj -hDA +ycM +vpf jtU -hDA +vpf woU bdH bdH @@ -102234,69 +102235,69 @@ bdH bdH bdH bdH -kfC +aad kyw -jVP +jNo lfx bwG iWQ iWQ sab aNr -rWU +pQY pQc -bBm -bBm -bYM -tQs -byz -sIe +bll +bll +bpo +dVO +bsR +aQr aQF qPk wKN qPk -ioC -eIb -nRT -ijs -fVU +tda +ngI +dkq +lRZ +acc beH beH dwl bdd bdd -oim +gac bdd bdd aMt beH beH -fVU -iXd -ykb -cct -diP +acc +qby +btY +bAJ +huU knm sPY knm yfS -aVq -qMj -ose -wGJ -bHs -cDB +ape +ven +bWT +fKV +tvM +smi lkd qTY -cOg -dQN -qTc +bDs +gSk +ljG tSp bJt -ePh -uPd +xbg +ssk lyW -uQY +ajZ bdH bdH bdH @@ -102338,54 +102339,54 @@ bdH aaa aaa acv -iDY +aiH uli bLO bLO bLO bLO -iDY -gEm -jvh -jvh -jvh -jvh -jvh -vYP +aiH +qga +eAU +eAU +eAU +eAU +eAU +fcE aef -lnD +uNN abE -udF +dfA yiu -jgv +bBH vOy vOy vOy -kuU -kuU -kuU +mSK +mSK +mSK vOy vOy -mZd +voV wKP -mxQ +hLr vOy vOy -wgX -wTo -wFy -mCG -gRp +rhO +pgM +nPE +oqZ +uaI vOy -eHU +hUu yiu -jgv +bBH fKh iuG sOv eAN fdx -sWv +gAk dzp rMT dzp @@ -102395,7 +102396,7 @@ mRU mRU mRU mRU -hDA +vpf mRU woU bdH @@ -102437,69 +102438,69 @@ bdH bdH bdH bdH -kfC +aad kyw -tOP +deq lfx bwG -orp -vkx -orp -vkx -bvT +mTi +lJK +mTi +lJK +kmp aQF -eDx -rxr +bln +xEX aQF aQF aQF aQF aQF -kvy -jRv -fkW +ldb +rYI +fzc bdg -hgE -iAW +vyg +bni cwX vuA -wJj -wJj -wJj +nVi +nVi +nVi vuA -jUE -pSL -wUf +tab +udi +wCs vuA -wJj -wJj -wJj +nVi +nVi +nVi vuA snb -xXb -gcT +xbd +bAU bdg -vTz -xrs -yjJ +jlD +pYN +raE bJt -owh -gJZ -iZs -sqS -gaG -kbH +wbC +lHu +oiL +qBM +wXI +nUd lkd -nhF -cOg -dQN -frR +xOT +bDs +gSk +oDE bJt bJt -ePh +xbg mgb lyW -uQY +ajZ bdH bdH bdH @@ -102541,37 +102542,37 @@ aaa aaa aaa acv -iDY -iDY -woK -dSv -woK -leo -iDY +aiH +aiH +bWd +awi +bWd +mOb +aiH aet -qpo -llN -vhk -bDl -btL -elu -sHR -amv +aBD +acU +uPr +sTd +lfH +aeI +eva +xzf abE -jAn +tkF poD -nSr -obZ -gqw +dSI +iLL +gqH vOy vOy vOy vOy vOy vOy -iVN -iVN -iVN +eNI +eNI +eNI vOy vOy vOy @@ -102580,15 +102581,15 @@ vOy vOy vOy vOy -wwp +qQD poD -jgv +bBH fKh ubI nQA nQA jvM -bOr +pLa nTR gDp rwq @@ -102596,9 +102597,9 @@ pBG jtU mRU oyO -uvg +nve mRU -amP +vzB mRU woU bdH @@ -102640,9 +102641,9 @@ bdH bdH bdH bdH -kfC +aad kyw -hlL +xbI lfx bwG aQF @@ -102654,55 +102655,55 @@ aQF aQF aQF aQF -qUY +wYG yhR -glO +gHi bwG -vlh -lVd -vlh +pzj +uhq +pzj bdg -xEM -hIT +apz +dyd fyD bdd -rRE -rRE -rRE +dhR +dhR +dhR vuA -qVT -xmQ -oWD +eYu +qaW +wbN vuA -uQe -uQe -uQe +lVS +lVS +lVS bdd vPw -dGj -kxm +bvr +bBQ bdg -htS -oFP -htS +sgL +aRL +sgL rde -onF +vjC iMm mJi iMm iMm -pqR +mkc bJt -ecl -cOg -dQN -qID +xaN +bDs +gSk +luS bJt uCw -ePh +xbg mgb lyW -uQY +ajZ bdH bdH bdH @@ -102745,12 +102746,12 @@ aaa aaa vHn cGd -vmo +moK cGd cGd aNi aNi -oOa +bWr aNi aNi aNi @@ -102761,20 +102762,20 @@ aNi aNi aNi aNi -eHU +hUu poD tsn tsn -jgv +bBH vOy elR xXh xXh xXh dMK -pTf -uWr -mvq +aCR +aAT +aNY elR xXh xXh @@ -102783,9 +102784,9 @@ dMK vOy vOy vOy -xLr +lXl poD -jgv +bBH pBG mGT nQA @@ -102797,11 +102798,11 @@ pBG pBG pBG jtU -csi +rXF jtU -amP +vzB mRU -pAO +kuK mRU woU aaa @@ -102843,69 +102844,69 @@ bdH bdH aaa bdH -kfC +aad kyw -tOP -tOP +deq +deq bwG -xJk -oDO -ylz -hEP -rDZ +tEu +mUY +vOw +ouU +dro bwG -qWr -kRv +gSH +xJp qxJ -wmN -tOP -gwW +hCk +deq +nRN bwG -sWD -ukt -sWD +wsS +vxY +wsS bdg -tkh -inX -nzM +auj +bbf +ber vuA -wJj -wJj -wJj +nVi +nVi +nVi vuA -hXl -eIb -gwQ +jkz +ngI +xGJ vuA -wJj -wJj -wJj +nVi +nVi +nVi vuA -oLs -qau -iwA +bpv +tMW +bBY bCh -aXw -sxj -aXw +mPM +esd +mPM yfS -bYj +xML iMm jSy wGb iMm -gfs +rjn bJt -uND -cOg -dQN -fkA -vnN +wUX +bDs +gSk +vSp +lHG kOJ mgb mgb lyW -uQY +ajZ bdH bdH bdH @@ -102938,57 +102939,57 @@ aaa aaa bdH bdH -bBr -wLo -wLo -wLo -wLo -wLo -wLo -wLo +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf vHn -rAB -iue -iue -wEj +ejV +hoT +hoT +vyh aNi cYT aNm cYT lEF beZ -pRx -yal +vif +bhx aOR -yal -pRx +bhx +vif aOR bsw -xLr +lXl hPZ bPi ava -jgv +bBH vOy wWz -loq -xCw -hEM +vHO +ruc +uvP wTM -sgI -qgI -vtz +dNq +vVs +aFa wWz -rPM -xCw -oRw +liY +ruc +xOY wTM vOy -xMH -obZ -jVs +uWk +iLL +lRh poD -otd +qmW pBG tGT nQA @@ -103002,19 +103003,19 @@ pBG mSM mRU gRc -hiG +oOp mRU jtU -hDA +vpf woU -wLo -wLo -wLo -wLo -wLo -wLo -wLo -plE +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY aaa aaa aaa @@ -103039,7 +103040,7 @@ bdH bdH bdH bdH -bBr +aac kyw kyw kyw @@ -103048,64 +103049,64 @@ kyw kyw kyw kyw -tOP +deq caq bwG igb -gwS +cpz ooA kpj -muT -hSB -lEX +sBY +wyG +qjL kpj rAo -cdl +lka kpj kpj -gYb +mQY ygp tdi fZE -ioC -ttl -bFe -qYL -fVU +tda +mng +wTm +wCI +acc beH beH beH -fVU -ttl -bFe -qYL -fVU +acc +mng +wTm +wCI +acc beH beH beH -fVU -ttl -bFe -qYL -ioC +acc +mng +wTm +wCI +tda oSM ter oSM bJt -qbW -evy -gIp -evy -fSr -bAq +swE +wpI +ocm +wpI +wnL +kHd bJt hSw -dnv +qxE rui -fkA +vSp bJt uXU -ePh +xbg nhw lyW lyW @@ -103115,7 +103116,7 @@ lyW lyW lyW lyW -plE +ajY aaa aaa aaa @@ -103141,7 +103142,7 @@ aaa aaa bdH bdH -kfC +aad aag aag aag @@ -103150,9 +103151,9 @@ aag aag aag vHn -yfl +dGg tob -iue +hoT tob aNi aZe @@ -103160,55 +103161,55 @@ aNm aNm lRP beE -yal -yal +bhx +bhx hMi -vRW -vRW +aco +aco dYu bsw -jbd -kMs -ieC +cOe +vwT +akh poD -otd +qmW vOy wWz -vRE -uiw +anw +wLy jlG -kQE -iFm -lTI -xdr -pCy +aqP +kCE +wLN +npt +xuE hqh -uiw -tpM +wLy +eiE wTM vOy -xLr +lXl mfO mHY yei -jgv +bBH fKh eYn nQA nQA vEG -wNg +mlP eAN eAN eAN pBG -hDA +vpf mRU mRU mRU mRU vpI -hDA +vpf woU aag aag @@ -103217,7 +103218,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -103244,20 +103245,20 @@ bdH bdH kyw kyw -wmN +hCk maK lfx lfx lfx -tOP -tOP -tOP +deq +deq +deq lfx -fOp +eYp lfx vmq cqH -sTF +tjO bdd bdd bdd @@ -103280,7 +103281,7 @@ fUA qYZ bdd vuA -xuM +fnx vuA bdd qCc @@ -103304,16 +103305,16 @@ bdd bdd bdd bJt -vOs -ueb +cDC +vuF bJt bJt -ePh +xbg mgb mgb mgb -uet -xZp +gLm +ttD mgb mgb mgb @@ -103344,7 +103345,7 @@ aaa aaa bdH bdH -kfC +aad aag aag aag @@ -103353,7 +103354,7 @@ aag aag aag vHn -nzf +oSG tob tob tob @@ -103363,38 +103364,38 @@ aNm aNm lTE beE -yal -yal +bhx +bhx aOR -yal -yal +bhx +bhx cCa aNi aNi aNi -bak +rnM qdJ -jgv +bBH vOy wWz -jvW -mwO +ovG +gxP aPJ wTM -bXp -jIu -vtz +apS +wse +aFa wWz -qtQ -mwO -laZ +ual +gxP +aOe wTM vOy -bbx +piQ yiu xIj xIj -jgv +bBH fKh wvo nQA @@ -103405,13 +103406,13 @@ skR oxc nBi pBG -amP +vzB mRU pGh xEs mRU jtU -xBp +tMU woU aag aag @@ -103420,7 +103421,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -103446,80 +103447,80 @@ bdH bdH bdH kyw -kRv +xJp lfx -tOP -ujS -tOP -tOP +deq +yih +deq +deq lfx lfx lfx rHq bwG -pju -hiJ -iKx -liR +nPO +cGB +ugj +fbC bdd -aRn -mIK -oUd -adz -gAB -ngh -kIZ +uvU +xZk +dGU +lgF +eYj +aSp +mho bdg fZE iLm fZE bdg -wLv -wLv -wLv -wWN +bqZ +bqZ +bqZ +bCg beH fUA beH -wWN -wLv +bCg +bqZ beH -wLv -wWN +bqZ +bCg beH fUA beH -wWN -wLv -wLv -wLv +bCg +bqZ +bqZ +bqZ bdg oSM xub oSM bdg -wEt -mIY -qcz -oiP -wEt -uCC -faf +lCE +oZD +lwh +oPz +lCE +xLi +qkY bdd -iHh -rtS -ddi -kVw +qXo +feq +loY +aDU bJt -czs +vAx mgb -ePh +xbg mgb xpL mgb mgb -ePh -ePh +xbg +xbg mgb lyW aaa @@ -103547,7 +103548,7 @@ aaa aaa bdH bdH -kfC +aad aag aag aag @@ -103556,9 +103557,9 @@ aag aag aag vHn -bwQ +oeH tob -iue +hoT tob aNi aZs @@ -103566,38 +103567,38 @@ aNm aNm mwL beE -yal -yal +bhx +bhx aOR -yal -yal +bhx +bhx qiy ahR ahR -pyd -xFh +egt +shC vIZ -jgv +bBH vOy woh vgO aoJ alk xAe -rpX -jIu -bip +avH +wse +cXC woh pLO qxm vgO xAe vOy -cRB +psk poD -cJQ -kMs -smP +sin +vwT +gsJ fKh lDa eAN @@ -103608,13 +103609,13 @@ pBG pBG pBG pBG -hDA -wEm -hDA -amP +vpf +tra +vpf +vzB mRU iJT -hDA +vpf woU aag aag @@ -103623,7 +103624,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -103649,11 +103650,11 @@ bdH bdH bdH kyw -tOP +deq lfx nsY nsY -tfU +pRT nsY nsY nsY @@ -103662,22 +103663,22 @@ nsY nsY bwG bwG -gRk +msC bwG bdd -mMj -vdx -nko -hpw -nko -iDX -kIZ +xwE +dAQ +tGG +kEs +tGG +bpA +mho bdg fZE naa fZE bdg -wLv +bqZ beH beH beH @@ -103695,34 +103696,34 @@ beH beH beH beH -wLv +bqZ bdg oSM ter oSM bdg -wEt -pVa -cUJ -kWs -cZs -vZc -imz +lCE +uek +dkX +qXp +oCl +tPm +kiX bdd -xpj +tLc rsM iMm -tJa +hTT nsY nsY -ikB +nik nsY nsY nsY nsY nsY nsY -shZ +kqb mgb lyW aaa @@ -103750,7 +103751,7 @@ aaa aaa bdH bdH -kfC +aad aag aag aag @@ -103759,46 +103760,46 @@ aag aag aag vHn -xvz -iue -iue -iue +mId +hoT +hoT +hoT aNi jWr aNm jWr mBJ dtZ -yal -yal +bhx +bhx wWg -vRW -vRW +aco +aco hpY aOR aOR -ntz -cHn +bgK +muW qdJ -jgv +bBH vOy vOy vOy -wyv -rdX -tGA -trV -hCW -tfR -qpP -jwT -ogi +uqd +amk +pYo +avF +coJ +iAz +cQo +aIP +aoK vOy vOy vOy -bjJ +pLE poD -jgv +bBH mRU mRU pBG @@ -103806,17 +103807,17 @@ aGs eAN eAN vEG -gNz -aKx -xnF -fhZ +vrJ +xOs +kOH +hIs pBG mSM mRU -jXT -hDA -wEm -hDA +tCd +vpf +tra +vpf mRU woU aag @@ -103826,7 +103827,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -103853,34 +103854,34 @@ aaa aaa kyw lfx -tOP +deq nsY xWT -vSS +kxd jgk nsY rSG -deU +rur oqS nsY -oJv -qKw -tOP +hsh +cPP +deq eLH bdd -gxb -rbu -rbu -kxr -nko -qDU -kIZ +eUZ +lCr +lCr +fwM +tGG +lJD +mho bdg fZE naa fZE bdg -wLv +bqZ beH aLJ bmr @@ -103898,31 +103899,31 @@ beH rJK gBo beH -wLv +bqZ bdg oSM ter oSM bdg -wEt -cYq -pGF -wIR -fpl -lxI -gGh +lCE +fMe +sNI +jmn +sgD +kUR +vMM bdd -alt +hxZ rsM iMm -lRA +gzV nsY xWT -vSS +kxd viu nsY rSG -kuY +qkP oqS nsY mgb @@ -103953,7 +103954,7 @@ aaa aaa bdH bdH -kfC +aad aag aag aag @@ -103962,10 +103963,10 @@ aag aag aag vHn -hfs -bHv +eDq +jFI cGd -vmo +moK aNi aNi aNi @@ -103981,29 +103982,29 @@ aOR aOR agr aNi -xLr +lXl lGh -jgv +bBH vOy vOy vOy vOy -bXT -ghK -xUL -owI -pXd -lnX -dHw +vKb +rzN +avG +jbK +aOd +sXd +aJn vOy vOy vOy vOy -nOM +mIR lGh -jgv +bBH mRU -hDA +vpf pBG xiU xUa @@ -104012,14 +104013,14 @@ mLe pBG pZH nnL -rGX +lgt pBG vpI mRU -mgm +bhV jtU mRU -amP +vzB mRU woU aag @@ -104029,7 +104030,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -104056,80 +104057,80 @@ aaa aaa kyw lfx -tOP +deq nsY xWT -vSS +kxd viu nsY iIP -vSS +kxd dDt nsY exb -tOP -tOP +deq +deq qLY bdd -oCM -xkP -rbu -mEa -rbu -gNi -pVf +ljW +bDP +lCr +ijr +lCr +mpn +pZR bdd -bzd -vzN -bzd -uXh -wLv +atH +iEM +atH +bCx +bqZ beH bgO -xfu -xfu -xfu -xfu +boq +boq +boq +boq wNT -xzs +pVB hsg -geo +iPv kbV -yiM -yiM -yiM -yiM +uMk +uMk +uMk +uMk bgO beH -wLv -uXh +bqZ +bCx oSM ter oSM bdd -cgg -ftI -lxI -lxI -hAY -vem -qhh +tSF +lsn +kUR +kUR +mkl +gXB +car bdd -vDF +hTf rsM oos -pCU +sBL nsY xWT -qhS +rfT viu nsY dmR -vSS +kxd dDt nsY mgb -ePh +xbg lyW aaa aaa @@ -104156,7 +104157,7 @@ aaa aaa bdH bdH -kfC +aad aag aag aag @@ -104168,11 +104169,11 @@ vHn cGd cGd cGd -vTF -qql -hfs -hfs -hfs +iTQ +lWt +eDq +eDq +eDq aNi aNi aNi @@ -104184,33 +104185,33 @@ aNi aNi aNi aNi -bjJ +pLE lGh -jgv +bBH bPF -jTN +aqG ata vOy -vlu -mlo -jnr -syP -aLg -sJg -elk +apR +aqS +mnW +nPf +vYz +awR +uoi vOy jyJ -eSj +niF bPF -jAn +tkF yiu -jgv +bBH mRU -hDA +vpf pBG pBG pBG -vqV +qIx pBG pBG pBG @@ -104222,7 +104223,7 @@ mRU mRU mRU mRU -hDA +vpf mRU woU aag @@ -104232,7 +104233,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -104259,80 +104260,80 @@ aaa aaa kyw lfx -tOP +deq nsY -sTH -uqZ -bOp +gsg +vHq +vvY nsY -mCY -xbL -iGF +rNb +bxC +jiU nsY jvt -ecu -tOP +hiu +deq vSr bdd -pCs -pCs -pCs -wVL -kOo -oKX -cFd -apD +asr +asr +asr +mki +nYp +fZG +phd +pmv mzv yfg fZE -lEi -wLv +nyw +bqZ beH bgO -xfu -xfu -xfu -xfu +boq +boq +boq +boq wNT -lxK +vBp kNl -xGx +nhi kbV -yiM -yiM -yiM -yiM +uMk +uMk +uMk +uMk tmB eBg -ppw -gRi +vKe +eVv cVZ xdf cVZ -rzs -ppw -ppw -aen -bHQ -aAp -vDH -jYJ +hLS +vKe +vKe +uSH +uwt +rLP +pPA +ycx bdd -vDF +hTf rKO wGb -dsU +gUf nsY -kSe -xbL -rkv +gwM +bxC +pJD nsY -mfU -xbL -iGF +iSm +bxC +jiU nsY mgb -ePh +xbg lyW aaa aaa @@ -104369,63 +104370,63 @@ gxm gxm gxm gxm -iue +hoT tob tob -iue +hoT tob tob -fIG -iue +hqm +hoT tob tob tob tob -iue -wEj -iue +hoT +vyh +hoT tob tob -vVe -cHn +fkK +muW lGh -cHn -mNQ -jTN +muW +cbg +aqG atb vOy -tXS -ghK -pjE -dss -aAX -lnX -oVZ +xSY +rzN +lCt +lto +paa +sXd +gVq vOy sLk -eSj -mNQ -cHn +niF +cbg +muW yiu -cHn -csi +muW +rXF jtU jtU -hDA -alj -dsK +vpf +ycM +tne jtU jtU -hDA -alj -hDA +vpf +ycM +vpf jtU jtU jtU uBx -teS +fLi jtU -hDA +vpf gxm gxm gxm @@ -104457,25 +104458,25 @@ aaa aaa aaa aaa -bBr -wLo -wLo +aac +aaf +aaf kyw lfx -tOP +deq nsY nsY -mdA +qxC nsY nsY nsY -usa +ntx nsY nsY qWL kIk -wMd -mlR +eXD +kMr bdd bdd bdd @@ -104489,25 +104490,25 @@ fZE iLm fZE bdg -wLv +bqZ beH bgO -xfu -xfu -xfu -xfu +boq +boq +boq +boq wNT -lxK +vBp hWs -xGx +nhi kbV -yiM -yiM -yiM -yiM +uMk +uMk +uMk +uMk bgO beH -wLv +bqZ bdg oSM xub @@ -104521,25 +104522,25 @@ bdd bdd bdd bdd -dOq +tuo rsM oos -dsU +gUf nsY nsY -oZd +iFM nsY nsY nsY -lHY +gLZ nsY nsY mgb nhw lyW -wLo -wLo -plE +aaf +aaf +ajY aaa aaa aaa @@ -104561,18 +104562,18 @@ aaa aaa aaa gxm -dkH -dkH -gyl -qoi -qoi -qoi -qoi -qoi -qoi -qoi +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam gxm -ttC +hgk tob njn njn @@ -104590,27 +104591,27 @@ aej aej aej aej -meO +gpT lGh -pvF +cQF vOy vOy vOy vOy -fEi -aFk -tSa -jAo -sbs -lGn -xAL +msi +kDk +kbJ +cJM +jlA +qLi +dEm vOy vOy vOy vOy -wWk +xac yiu -fJl +vbU nIN nIN nIN @@ -104628,18 +104629,18 @@ nIN nIN nIN jtU -hDA +vpf gxm -lGd -lGd -lGd -lGd -lGd -lGd -lGd -heG -lAK -lAK +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF gxm aaa aaa @@ -104660,89 +104661,89 @@ aaa aaa aaa aaa -kfC +aad kyw kyw kyw -tOP +deq caq nsY -mju -fXn -gqA +tUS +bNh +wNl nGh -arE -irY -oKY +fPp +lqN +vlO nsY -dVj -tqC -uXO +xxG +smA +ktR lfx bdd -sUP -qCv -bUh -dDa -ibS -ocV -ppw -mPS +dJI +jaf +kwc +ebp +mPR +osU +vKe +dYX mzv xhW fZE bdg -wLv +bqZ beH bgO -xfu -xfu -xfu -xfu +boq +boq +boq +boq wNT -utP -kmv -bLU +pUA +wga +mfM kbV -yiM -yiM -yiM -yiM +uMk +uMk +uMk +uMk bgO beH -wLv +bqZ bdg oSM iOo cVZ -wQG -cGF -kkT -ppw -imm -gCL -pwk -aXQ +iUk +cIx +fUC +vKe +sDA +kWN +tln +bko bdd -vDF +hTf wRO iMm -dsU +gUf nsY -xxv -tWe -fGG +aaq +wHj +qdv uQo -leP -jRs -btB +iQt +uZo +xmJ nsY -ePh +xbg mgb lyW lyW lyW -uQY +ajZ aaa aaa aaa @@ -104764,18 +104765,18 @@ aaa aaa aaa gxm -dkH -dkH -gyl -qoi -qoi -qoi -qoi -qoi -qoi -qoi +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam gxm -rLn +bLf tob njn rWz @@ -104789,35 +104790,35 @@ rWz rWz rCZ aej -kaw -qvd -aZA +aeO +afG +ags aej -xLr +lXl lGh -jgv +bBH vOy elR xXh xXh apU -emJ +taH aBe otu jBO -uap +jNc ean xXh xXh dMK vOy -xLr +lXl yiu -jgv +bBH nIN -fjk -wKk -fjk +iIb +wui +iIb nIN rgL rgL @@ -104831,18 +104832,18 @@ rgL lAW nIN jtU -nwO +nVE gxm -lGd -lGd -lGd -lGd -lGd -lGd -lGd -heG -lAK -lAK +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF gxm aaa aaa @@ -104865,85 +104866,85 @@ aaa aaa kyw kyw -hUp -tOP -tOP +veq +deq +deq lfx nsY -odr -rlN -fGO +kio +sJY +qJY qLH -gWn -rKY -qiI +xTW +oGP +cnM nsY -fxw -vBx -vBx -tOP +kqB +txH +txH +deq bdd -wHY -jVB -xKQ -kfn -kfn -ejN -sSg +fva +lkL +mBO +cHB +cHB +hDV +vmP bdd fZE iLm fZE bdg -wLv -wLv +bqZ +bqZ bgO beH beH duv beH htI -fpo -lnM -yiN +cCD +shp +oAB gyv beH duv beH beH bgO -wLv -wLv +bqZ +bqZ bdg oSM xub oSM bdd -joM -hAy -slQ -slQ -slQ -wnz -aXQ +oNP +tge +yjU +yjU +yjU +tEC +bko bdd -wOs +gKB rsM oos -dsU +gUf nsY -lSy -vnL -shg +mKJ +deT +uAC rhQ -mJb -nQf -sQX +pyc +uMn +ivz nsY -ePh +xbg mgb -ePh -ePh +xbg +xbg lyW lyW aaa @@ -104967,18 +104968,18 @@ aaa aaa aaa gxm -dkH -dkH -gyl -qoi -qoi -qoi -qoi -qoi -qoi -qoi +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam gxm -uPB +rGz tob njn rWz @@ -104992,31 +104993,31 @@ rWz rWz rWz aej -afU -uUg -nVP -vWj -cHn +aeP +agI +aia +yaz +muW qdJ -jgv +bBH vOy wWz -loq -iaZ -iaZ -miI +vHO +uXj +uXj +iwJ jVt uyH -loq -miI -iaZ -iaZ +vHO +iwJ +uXj +uXj rdt wTM vOy -xLr +lXl poD -jgv +bBH aQx xzh sjM @@ -105034,18 +105035,18 @@ rgL rgL nIN jtU -fMJ +bWg gxm -lGd -lGd -lGd -lGd -lGd -lGd -lGd -heG -lAK -lAK +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF gxm aaa aaa @@ -105067,87 +105068,87 @@ aaa aaa aaa kyw -jrw +lHB lfx lfx lfx lfx -pJk -pds +heK +kam axc juD twW vHh pvh -tGO +sZs nsY bwG -act +erL scX caq bdd -iCQ -kfn -dwk -kSS -ctX -tqj -mlL +cDH +cHB +scN +vvw +wmz +rhy +rec bdg fZE naa onn bdd bdd -laf +bDQ bgO -eYU -eYU +vGG +vGG bgO -isY -isY -dZt -xMb +xRJ +xRJ +xRw +bPO whA -mdh -mdh +xAt +xAt bgO -izc -izc +gAj +gAj bgO -vdP +cab bdd bdd tmE ter oSM bdg -vgy -ecI -izc -bJB -xBN -fWX -gGh +jLS +xdP +gAj +dBI +sMu +eYF +vMM bdd -liM +sOt cNX cdI -pCU +sBL nsY -hGB +eiN dVs tat kNC xuQ uPW -hGy -rqc +kYv +oDx sAS sAS sAS -gwP -ePh +rCh +xbg lyW aaa aaa @@ -105182,7 +105183,7 @@ gxm gxm gxm hqb -rkC +vsd njn rWz rWz @@ -105195,35 +105196,35 @@ rWz rWz rWz aej -cgx -pEW +aeQ +agK agu -gLq -cHn +eup +muW qdJ -jgv +bBH vOy wWz -ann -kkS -hCg -aVc -oxZ +uwZ +wWm +jQt +nwi +sNz uyH -ann -lBB -hCg -hoF -oxZ +uwZ +kGQ +jQt +coZ +sNz wTM vOy -xLr +lXl poD -jgv +bBH aQx -qsW -drC -gOZ +bcg +bkM +gYp nIN rgL rgL @@ -105236,7 +105237,7 @@ rgL rgL rgL nIN -kaf +jZo hQK gxm gxm @@ -105270,87 +105271,87 @@ aaa aaa aaa kyw -igR +eqm lfx -emq +vvH bwG bwG nsY -gvr -qzn +gAP +oEX irT tyb xxm qSK -nMW +ieu nsY -cnD +mZc lfx -oDD -tOP +neH +deq bdd -fUs -dpY -nMv -fji -ctX -grE -mlL +xXW +gVu +ydO +krU +wmz +vbI +rec bdg -bzd -vzN -bzd -iot +atH +iEM +atH +ppV bdd -wLv +bqZ bgO -eYU -eYU +vGG +vGG bgO -isY -isY -pcJ -wnE -boT -mdh -mdh +xRJ +xRJ +viO +gMU +ksN +xAt +xAt bgO -izc -izc +gAj +gAj bgO -wLv +bqZ bdd -tqg -kLf -vHH -kLf +eoy +brq +jnc +brq bdg -vgy -xpR -aJu -rLT -izc -uus -gMc +jLS +frb +kNX +mZf +gAj +ngn +jUq bdd -qgy +pEl roU oos -uze +uVh nsY -bHZ -jTu -eMi +kzK +lFh +jYc pVA -kxT -kbA -sQX +mzV +pML +ivz nsY -kDw +iZd mgb -ePh -dbQ -nrV +xbg +jPx +xQd lyW aaa aaa @@ -105373,17 +105374,17 @@ aaa aaa aaa gxm -fXG -fXG -qsJ -uVs -uVs -uVs -uVs -uVs -uVs -uVs -iRf +ojH +ojH +taV +ouf +ouf +ouf +ouf +ouf +ouf +ouf +aLc wBI hGG njn @@ -105398,35 +105399,35 @@ rWz rWz rWz aej -gox -pEW +aeR +agK agu aej -udF +dfA qdJ -otd +qmW vOy wWz -cWK -lbW -uiw -oXW -oxZ +pEJ +xQm +wLy +eqD +sNz uyH -nFM -cTD -uiw -lbW -duY +sWW +mWW +wLy +xQm +tfH wTM vOy -bbx +piQ poD -jgv +bBH aQx -mYr +viv xzh -xbh +syp nIN rgL rgL @@ -105441,17 +105442,17 @@ rgL nIN vmJ elv -sec -trG -trG -trG -trG -trG -trG -trG -ttz -xsm -xsm +vRR +qXS +qXS +qXS +qXS +qXS +qXS +qXS +hXX +xDe +xDe gxm aaa aaa @@ -105473,87 +105474,87 @@ aaa aaa aaa kyw -pJC -tOP -tOP -oQa -nre +htg +deq +deq +qCH +cXm nsY -hnB +hUz dbn qvC tyb uRM ipe -ptd +ehR nsY xEe lfx -cRN -wBA +tdH +igw bdd -rTX -kJv -fah -mCe -aUc -rhA -aUc +sgm +kEg +nFA +jkD +xgN +vgn +xgN bdg fZE naa fZE fZE bdg -wLv +bqZ qMR -dcs -dcs +rwv +rwv dRT -lfS -lfS -vIk +dqD +dqD +bUb dRT -pAl -pAl -pAl +eWp +eWp +eWp dRT -hQr -hQr +tXb +tXb fOk -wLv +bqZ bdg oSM oSM ter oSM bdg -skM -tIj -sIB -gKj -vDT -hPH -fWU +vLg +loy +naK +mRq +xkB +qXO +eeh bdd -oqa -kJg -dnB -qWm +pcO +tJV +qoY +uCh nsY -vxr -kaY -cPi +tXT +jJk +wLG tyb -pkP -wBJ -sQX +sZH +rjV +ivz nsY -pvx +qZy jfS -jDd +bUH ciB -naS +soT lyW aaa aaa @@ -105576,85 +105577,85 @@ aaa aaa aaa gxm -fXG -fXG -qsJ -uVs -uVs -uVs -uVs -uVs -uVs -uVs -bfB +ojH +ojH +taV +ouf +ouf +ouf +ouf +ouf +ouf +ouf +sdf cRL hGG njn njn njn -yiD +ahi njn njn njn njn -pXr +uux njn njn aej aej -otf -cbi +agO +aid aej -jbd -tmk -smP +cOe +vZI +gsJ vOy wWz -ann -exR -hCg -gLk -oxZ +uwZ +tyD +jQt +vfP +sNz uyH -ann -exR -hCg -gLk -oxZ +uwZ +tyD +jQt +vfP +sNz wTM vOy -jbd -tmk -smP +cOe +vZI +gsJ nIN nIN -bbQ +cyh nIN nIN nIN nIN -qAh +nNX nIN nIN nIN nIN -cRj +ayo nIN nIN nIN vmJ nzD -tXq -trG -trG -trG -trG -trG -trG -trG -ttz -xsm -xsm +xDV +qXS +qXS +qXS +qXS +qXS +qXS +qXS +hXX +xDe +xDe gxm aaa aaa @@ -105678,14 +105679,14 @@ aaa kyw lfx lfx -ujS -oQa -sPr +yih +qCH +spT nsY nsY nsY nsY -oDZ +tIp nsY nsY nsY @@ -105708,23 +105709,23 @@ naa meQ fZE bdg -wLv +bqZ beH -eYU -eYU +vGG +vGG beH -isY -isY -isY +xRJ +xRJ +xRJ beH -mdh -mdh -mdh +xAt +xAt +xAt beH -izc -izc +gAj +gAj beH -wLv +bqZ bdg oSM awE @@ -105747,14 +105748,14 @@ nsY nsY nsY nsY -tgZ +goy nsY nsY nsY nsY -xqf -uRe -adh +ecj +bZf +lZI faR wxu lyW @@ -105779,85 +105780,85 @@ aaa aaa aaa gxm -fXG -fXG -qsJ -uVs -uVs -uVs -oGo -uVs -uVs -uVs -oTW -hZc -iYA -tAI -dTW +ojH +ojH +taV +ouf +ouf +ouf +ptA +ouf +ouf +ouf +fTj +jOD +oOw +cPK +sPb dlo -aVa -jmi -pBl -dzj -rtt +sAz +jZC +uyd +ito +cuN cQW -fwZ -dTW -lBF -kCW -wOp -wOp -dxX -mnk -jIo -pFn +lQa +sPb +gtg +ilq +aMy +aMy +wNC +hOn +sYU +xCs vOy wWz -fHV -mwO -mwO -rue -bef +qxP +gxP +gxP +jgg +jZs uyH -nQi -rue -mwO -mwO -qfO +iRN +jgg +gxP +gxP +nMe wTM vOy -mnk -jIo -pFn -dxX -jMZ -toN -qew -bah -gpS -ePu +hOn +sYU +xCs +wNC +kin +oQI +laI +qwU +neZ +fpA qUx -tEo -odd -tRi -cKc -ltg +gUS +wrX +kMp +jkB +hlT qNI -odd -cFJ -vKQ -xyE -oTC -trG -trG -trG -bIT -trG -trG -trG -ttz -xsm -xsm +wrX +tqO +kdn +nyS +qec +qXS +qXS +qXS +jpn +qXS +qXS +qXS +hXX +xDe +xDe gxm aaa aaa @@ -105880,38 +105881,38 @@ aaa aaa kyw lfx -tOP +deq bwG bwG bwG bwG bwG bwG -gJo +kUI bFB -pZV -bzd -rqP -eEQ -rqP -xXi -fSL -rqP -bzd -hEL -dKF -hEL -hEL -nYx -hEL -bzd +iPt +atH +sCg +hgs +sCg +osX +uCt +sCg +atH +eUf +pwx +eUf +eUf +rIP +eUf +atH fZE fZE naa meQ fZE bdg -wLv +bqZ beH beH beH @@ -105927,38 +105928,38 @@ beH beH beH beH -wLv +bqZ bdg oSM awE ter oSM oSM -kLf -sPZ -nsE -amV -amV -amV -amV -kLf -kRw -kRw -gew -uke -oHY -kRw -kLf -dla +brq +mdC +qWK +lyq +lyq +lyq +lyq +brq +eMI +eMI +gjg +bom +kiy +eMI +brq +cSP cSH -ruv +svt mJO mJO mJO mJO mJO mJO -dbQ +jPx mgb lyW aaa @@ -105992,28 +105993,28 @@ gxm gxm gxm gxm -qic +dho wVt wVt -qfz +jlc sVV kbv -nbJ +dTn kbv kbv kbv -qfz +jlc kbv -nbJ +dTn sVV sVV sVV sVV vnM -nLv -rmd +lLA +ejx jIs -sUX +xLw vOy woh vgO @@ -106029,28 +106030,28 @@ vgO vgO xAe vOy -pQA +uAP rgO -nNI -hXa +kak +nOp cMz cMz cMz cMz cMz -akK +gsC cMz -iZb +qLg aXD cMz cMz -akK +gsC cMz bTY -iZb +qLg iup ryY -eNg +cnn gxm gxm gxm @@ -106083,38 +106084,38 @@ aaa aaa kyw lfx -tOP +deq bwG ycl ycl ycl jCg bwG -kyb +eNL pVr -wjj -lyu +oHs +osQ tpR tpR tpR tpR tpR tpR -lyu +osQ tpR tpR tpR tpR tpR tpR -lyu +osQ wxp tpR baW meQ fZE bdg -wLv +bqZ beH beH beH @@ -106130,38 +106131,38 @@ beH beH beH beH -wLv +bqZ bdg oSM awE jas jhA cVZ -vft +qWx jhA jhA jhA jhA jhA jhA -vft +qWx jhA jhA jhA jhA jhA jhA -vft -syI +qWx +ldW mkx -usU +eWv mJO plv plv plv mbR mJO -jWi +eBG nhw lyW aaa @@ -106184,7 +106185,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -106192,31 +106193,31 @@ aag aag aag vHn -nUf -iue -bsO -maf -ePF -sJO -jca -leO +fbe +hoT +rpG +bGa +dVn +vwC +fbR +xMz kMV -hpm -xIR -ewn -leO -fjV +eON +gxn +vEV +xMz +sdv xMO -jLn -leO -mHC -xIR -wOp -fQE -dxX -vhL -nIB -lZj +wDg +xMz +lIY +gxn +aMy +kNV +wNC +wlr +xyp +mnf vOy vOy vOy @@ -106232,31 +106233,31 @@ vOy vOy vOy vOy -gTG -dAH -lZj -dxX -qRE -toN -uZe -fzg -jIh -iqs +gPA +eWf +mnf +wNC +gVW +oQI +iaO +vUn +atJ +rCl ePM -psT -als -bRq -hrP -mLn +pzd +oWx +nNx +pMA +ncT gHh -als -mDb -nZA -prq -icJ -csi +oWx +dbc +cNM +ofU +njk +rXF jtU -amP +vzB woU aag aag @@ -106264,7 +106265,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -106286,86 +106287,86 @@ aaa aaa kyw lfx -tOP +deq bwG ycl ycl ycl ycl bwG -tbP +xgk oUi -cnY -bzd -tzU -tzU -wGn -nVl -ycA -aFS -bzd -xEi -cmj -ylL -qyS -pwy -cHm -bzd +tLZ +atH +xSx +xSx +fBi +tXo +mBa +pYh +atH +wMl +aAU +dkP +dsY +rwj +xZR +atH fZE meQ -vzN +iEM meQ onn bdd -laf -ttl -ghd -ghd -ghd -ghd -qYL -xBP -aXs -rza -poV -uHG -uHG -uHG -uHG -qJv -vdP +bDQ +mng +bCu +bCu +bCu +bCu +wCI +moQ +flW +fvf +rgW +vUe +vUe +vUe +vUe +kuw +cab bdd tmE awE -vHH +jnc awE oSM -kLf -tEt -tEt -tTM -hao -nDW -lXG -kLf -dyX -umH -tFf -urW -sAt -sAt -kLf -ssQ +brq +gOS +gOS +sLX +bIj +jtZ +eLu +brq +xpl +exc +jCx +mqt +vno +vno +brq +wDG ihI -kTH +fnc mJO plv plv plv plv mJO -dbQ -lbT +jPx +enQ lyW aaa aaa @@ -106387,7 +106388,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -106404,53 +106405,53 @@ njn njn njn njn -njV +hZE sVV -dQo +oON njn njn -cJr +daI njn njn ael ael -qUs -itG +agQ +aih ael hyT lGh -qIj -dcF -dcF -dcF -rUz -dcF -dcF -dcF -mWM -dcF -oQy -dcF -rUz -dcF -dcF -dcF -wwH +iCg +cGO +cGO +cGO +rpV +cGO +cGO +cGO +uSa +cGO +kaO +cGO +rpV +cGO +cGO +cGO +cDP lGh tkd nIN nIN -qKX +rBD nIN nIN nIN -qKX +rBD nIN nIN nIN -taI +mKi sfT -hBk +hGV nIN nIN nIN @@ -106458,8 +106459,8 @@ nIN nIN nIN mRU -hDA -xBp +vpf +tMU woU aag aag @@ -106467,7 +106468,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -106489,86 +106490,86 @@ aaa aaa kyw lfx -tOP +deq bwG ycl ycl ycl ycl -swd +jUx fZE bBR -gLp +tup jeb jeb jeb -kIo -mmI +uIT +lKb jeb jeb jeb jeb jeb -kIo -dsg +uIT +mWy jeb jeb jeb fZE meQ -vzN +iEM meQ fZE bdg -wLv -pSL -nXA -nWw -hce -nXA -jgi -bfp +bqZ +udi +ddk +dEQ +hgg +ddk +cQc +nlB ugu -gjE -iVL -qfv -nqR -oBo -ssn -dfs -wLv +oQH +wHo +uWc +wka +tTp +veu +mDW +bqZ bdg oSM awE -vHH +jnc awE oSM vra vra vra -nER -tur +mDT +cgl vra vra vra vra vra -nER -lhk +mDT +rJx vra vra vra -cWq +uGf mkx oSM -dBh +vfo plv plv plv plv mJO nEl -pRq +bhy lyW aaa aaa @@ -106585,11 +106586,11 @@ aaa aaa aab aaa -bBr -wLo -wLo -wLo -wLo +aac +aaf +aaf +aaf +aaf aag aag aag @@ -106598,27 +106599,27 @@ aag aag aag vHn -ttC -iue -iue +hgk +hoT +hoT njn rWz rWz rWz jXN njn -pRL +xVe sVV -udz +mbx njn -eFq -wjb -pOy -eod +tXa +gJg +tSX +lzt ael -dea -nbL -pGs +afE +agT +dgI ael ogT yiu @@ -106642,18 +106643,18 @@ xIj lGh syO nIN -mkR -uHa -mkR +aGm +gNo +aGm nIN -yjm +uig xzh xzh -oYO +fje nIN -bnD +aNO sfT -hBk +hGV nIN rgL rgL @@ -106671,11 +106672,11 @@ aag aag aag aag -wLo -wLo -wLo -wLo -plE +aaf +aaf +aaf +aaf +ajY aaa aaa aab @@ -106686,12 +106687,12 @@ aaa aaa aab aaa -bBr -wLo -wLo -wLo +aac +aaf +aaf +aaf kyw -tOP +deq lfx bwG ycl @@ -106699,13 +106700,13 @@ ycl ycl ycl bwG -iDe +hiP meQ -sJU +czN jeb -vNG -oJT -rwr +vlX +aNx +qGc jhD jeb osc @@ -106713,43 +106714,43 @@ cMV osc jeb aIq -spL -qbz -vNG +xHp +hmF +vlX jeb bMf meQ -vzN +iEM meQ fZE bdg -wLv -pSL -nXA -hce -nXA -nOJ -jgi -bfp +bqZ +udi +ddk +hgg +ddk +dNM +cQc +nlB ugu -gjE -iVL -qfv -opy -qfv -dkw -dfs -wLv +oQH +wHo +uWc +duw +uWc +fIZ +mDW +bqZ bdg oSM awE -vHH +jnc awE eOx vra -wES -rSO -pXt +asX +chf +wDJ tJz vra ukV @@ -106757,13 +106758,13 @@ oNj ukV vra gll -jsI -chA -wES +lpt +mgF +asX vra -oEW +pHh mkx -dRn +hNv mJO plv plv @@ -106771,12 +106772,12 @@ plv plv mJO nEl -jLP +rxe lyW -wLo -wLo -wLo -plE +aaf +aaf +aaf +ajY bdH aaa aab @@ -106788,7 +106789,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -106810,61 +106811,61 @@ rWz rWz rWz njn -ims -xIR -ntw +hHe +gxn +ioH njn -pgb +jXk cGR -tly -hIN +wks +jFM ael -xVn -nYN -gxE +afH +agV +ain ael cQC poD -vbK -qkp -qkp -vbK -qkp -qnb -ggX -pKr -pKr -pKr -kLz -nZZ -qkp -fRG -qkp -qkp -fRG +rjr +aMl +aMl +rjr +aMl +iSx +dUR +kaE +kaE +kaE +oYV +qvh +aMl +xXd +aMl +aMl +xXd lGh iMD nIN nIN xzh -clf +uVY nIN -ioW -uHa +lbO +gNo xzh -ioW +lbO nIN -rTQ -hrP -sqR +uRY +pMA +waJ nIN rgL rgL rgL rgL nIN -cWS -hDA +oNM +vpf woU woU aag @@ -106878,7 +106879,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -106889,12 +106890,12 @@ aaa aaa aab aaa -kfC +aad aag aag aag kyw -buI +xkb dAA bwG ycl @@ -106902,84 +106903,84 @@ ycl ycl ycl bwG -mOM +cVf meQ -nLc +jTt jeb -pOf -oLn -rwr +obE +tdE +qGc rth rth -pGz -pGz -pGz +oef +oef +oef nny rth -spL -nDq -qpL +xHp +xwl +rHf jeb rrU meQ -vzN +iEM meQ fZE bdg -wLv -eIb -xkP -xkP -xkP -xkP -hFB -xBP -nYq -rza -lxL -mdh -mdh -mdh -mdh -eci -wLv +bqZ +ngI +bDP +bDP +bDP +bDP +nBw +moQ +hGO +fvf +uNM +xAt +xAt +xAt +xAt +nNH +bqZ bdg oSM awE -vHH +jnc awE uNp vra -swK -tqH -pXt +bMq +qUq +wDJ nyQ nyQ -rRF -rRF -rRF +xJH +xJH +xJH miV nyQ -jsI -sFo -jTv +lpt +qYQ +ptj vra -mdD +opV mkx -iTm +xVY mJO plv plv plv plv mJO -dbQ +jPx mgb lyW aag aag aag -uQY +ajZ aaa aaa aab @@ -106991,7 +106992,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -107005,69 +107006,69 @@ aag aag aag vHn -iue -iue +hoT +hoT njn rWz rWz rWz rWz -kCP +aba aGA kbv fZo njn -jyr -gUw -gUw -qMz +pKL +jsA +jsA +qTi ael -mCd -uId +afI +agY aiq xfm xIj qdJ -qIj +iCg mOi mOi mOi mOi mOi sOK -pyE -aPh -uor +tAt +auc +hyE aqU aHq aHq aHq aHq aHq -vDL +sfz qdJ nZK -kHh +mOZ nIN xzh -uHa -psF +gNo +aZv xzh xzh xzh -uHa +gNo nIN mzs aPT xyB -iXJ +ceD rgL rgL rgL rgL nIN -wrx -hDA +isq +vpf woU aag aag @@ -107081,7 +107082,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -107092,12 +107093,12 @@ aaa aaa aab aaa -kfC +aad aag aag aag kyw -tOP +deq qZK bwG bwG @@ -107105,31 +107106,31 @@ bwG bwG bwG bwG -wLJ -wLJ -ykL +dTd +dTd +div jeb -vNG -sWh +vlX +thA gAA gAA -iiE -ali -gWS -xTY -iiE +bfn +oMH +coB +rSj +bfn gAA gAA -qoq -vNG +fFD +vlX jeb wEK meQ -vzN +iEM meQ fZE bdg -wLv +bqZ beH beH beH @@ -107145,44 +107146,44 @@ beH beH beH beH -wLv +bqZ bdg oSM awE -vHH +jnc awE dNW vra -wES -wOz +asX +drj cgo cgo -dLT -hzW -nrt -lNN -dLT +hyk +qyW +khd +kaI +hyk cgo cgo -cmx -wES +hQc +asX vra -jhl -itc -fyF +crc +goo +hAA mJO mJO mJO mJO mJO mJO -dbQ +jPx pgJ lyW aag aag aag -uQY +ajZ aaa aaa aab @@ -107194,7 +107195,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -107208,7 +107209,7 @@ aag aag aag vHn -iue +hoT tob njn rWz @@ -107216,17 +107217,17 @@ rWz rWz rWz njn -iXK -kCW -vpx +mAF +ilq +pjj njn -qsP +kCl cGR -gUw -lLZ +jsA +uqs ael -uYX -uId +afJ +agY aiq xfm xIj @@ -107237,32 +107238,32 @@ onU onU qwJ cOV -wyq +imS rxl xQV qQS aqU -oBN -dKa -tpb -vHw +aCZ +dgg +xRk +bti aHq -klk +wvX qdJ nZK -hfZ +olF nIN xzh -kOg +lZJ nIN -ioW -uHa +lbO +gNo xzh -skJ +vwj nIN -oqX -mxY -oyz +gfN +efj +sxE nIN rgL rgL @@ -107284,7 +107285,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -107295,12 +107296,12 @@ aaa aaa aab aaa -kfC +aad aag aag aag kyw -oSA +xwd lfx bwG ycl @@ -107308,13 +107309,13 @@ ycl ycl jCg bwG -whf +wBw bZo -vii +vsf jeb -vNG -oLn -rwr +vlX +tdE +qGc rth rth hNM @@ -107322,43 +107323,43 @@ vxX uBO rth rth -spL -nDq -vNG +xHp +xwl +vlX jeb dQV meQ -vzN +iEM meQ onn bdd -laf -kdz -cDc -cDc -cDc -cDc -iLQ -xBP -ohG -rza -gYM -kOz -kOz -kOz -kOz -vRC -vdP +bDQ +lnm +iLh +iLh +iLh +iLh +grR +moQ +ovp +fvf +rAb +sCA +sCA +sCA +sCA +bVw +cab bdd tmE awE -vHH +jnc awE gvK vra -wES -tqH -pXt +asX +qUq +wDJ nyQ lrT bqW @@ -107366,26 +107367,26 @@ xaC qeY nyQ nyQ -jsI -sFo -wES +lpt +qYQ +asX vra -mWu +lDk dEK -kux +oWN mJO plv plv plv mbR mJO -dbQ +jPx mgb lyW aag aag aag -uQY +ajZ aaa aaa aab @@ -107397,7 +107398,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -107419,14 +107420,14 @@ rWz rWz rWz njn -njV +hZE kbv -udz +mbx njn ePz cGR -gUw -lLZ +jsA +uqs ael afK ahc @@ -107437,35 +107438,35 @@ qdJ xIj mOi vRA -gjc +oYZ ezq -eLg -aLU +eXy +tFe xQV -wCa -xcU +pax +akV aqU -czK +qjF oqv iqd -pTT +rUy cnS -vDL +sfz qdJ qTS nIN nIN xzh -kkG +oIY nIN -mkR -nkP +aGm +qoM xzh -uHa +gNo nIN -igO +aDS aPT -hBk +hGV nIN rgL rgL @@ -107473,7 +107474,7 @@ rgL rgL nIN jtU -hDA +vpf woU aag aag @@ -107487,7 +107488,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -107498,12 +107499,12 @@ aaa aaa aab aaa -kfC +aad aag aag aag kyw -tOP +deq lfx bwG ycl @@ -107511,13 +107512,13 @@ ycl ycl ycl bwG -xsB +tQe meQ -aNp +ktl jeb -pOf -sWh -rwr +obE +thA +qGc rth rth rth @@ -107525,43 +107526,43 @@ aTW aTW rth rth -spL -glA -qpL +xHp +diJ +rHf jeb fZE meQ -vzN +iEM meQ fZE -uXh -wLv -dPn -wWn -wWn -wQL -wWn -cVT -bfp +bCx +bqZ +cNf +dll +dll +lRs +dll +rJu +nlB ugu -gjE -rxE -kGW -oVg -nBC -mGv -nCa -wLv -uXh +oQH +mnI +sJC +vSK +qnC +nuK +dVe +bqZ +bCx oSM awE -hJr +vOZ awE oSM vra -swK -wOz -pXt +bMq +drj +wDJ nyQ nyQ nyQ @@ -107569,13 +107570,13 @@ obQ obQ nyQ nyQ -jsI -qGY -jTv +lpt +eBV +ptj vra -hGw +xzI mkx -nyn +hdV mJO plv plv @@ -107583,12 +107584,12 @@ plv plv mJO nEl -ePh +xbg lyW aag aag aag -uQY +ajZ aaa aaa aab @@ -107600,7 +107601,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -107615,25 +107616,25 @@ aag aag vHn tob -mBZ +hUb njn njn njn njn njn njn -pDk +laM kbv -bvv +nkH njn bVR -wjb -qpF -fLe +gJg +sPa +mSo ael -vEJ -pKs -gpP +afL +ahe +aij ael xIj yiu @@ -107643,40 +107644,40 @@ mAs mAs flR uMO -aLU +tFe xVc xQV vpH aqU -rPj +gjB wDy aGN -gST +dxv cnS -wwH +cDP qdJ -cHn -psF -uHa -uHa -rnT +muW +aZv +gNo +gNo +pga nIN nIN nIN -qKX +rBD nIN nIN -wPK +oIa aPT -hel +bqY nIN nIN nIN nIN nIN nIN -hDA -hDA +vpf +vpf woU aag aag @@ -107690,7 +107691,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -107706,21 +107707,21 @@ kyw kyw kyw kyw -tOP -wao +deq +iGc bwG ycl ycl ycl ycl -tOF +cmC fZE meQ -qCY +hvz jeb -vNG -oLn -rwr +vlX +tdE +qGc rth rth tPI @@ -107728,43 +107729,43 @@ tPI iXT rth rth -spL -nDq -vNG +xHp +xwl +vlX jeb fZE meQ -jSu +cmL czR jzT -jis -oru -dPn -wWn -uVQ -cZU -wWn -cVT -bfp +bCy +bDS +cNf +dll +qSE +nff +dll +rJu +nlB ugu -gjE -rxE -ajL -nBC -nBC -nBC -nCa -mmT -jis +oQH +mnI +nMp +qnC +qnC +qnC +dVe +cac +bCy hQf sTU -pil +xLX awE hCf vra -wES -tqH -pXt +asX +qUq +wDJ nyQ nyQ pHA @@ -107772,21 +107773,21 @@ pHA nyQ nyQ nyQ -jsI -sFo -wES +lpt +qYQ +asX vra -rIr +wcD mkx oSM -wbp +cnd plv plv plv plv mJO kLm -ePh +xbg lyW lyW lyW @@ -107803,7 +107804,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -107818,18 +107819,18 @@ aag aag vHn tJq -rLn +bLf njn rWz rWz rWz jXN njn -njV +hZE kbv -udz +mbx njn -cJr +daI njn njn njn @@ -107851,35 +107852,35 @@ mAe mAe mAe aqU -vNF +jVE nTs pje pje -pOX -kYo +cnT +trx gnK -rDF +aNE nIN nIN nIN nIN nIN -yjm +uig hPL xzh dMj nIN -igO +aDS aPT -hBk +hGV nIN rgL rgL rgL laD nIN -czH -hDA +wUJ +vpf woU aag aag @@ -107893,7 +107894,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -107904,26 +107905,26 @@ aaa aaa aab kyw -aTS -tOP -tOP -tOP -tOP -tOP -kRv +ety +deq +deq +deq +deq +deq +xJp bwG ycl ycl ycl ycl bwG -gHa -rDU -fdF +lFL +sNL +ygB jeb jeb -fpQ -riW +hfa +jwK wnY cLC lyh @@ -107931,43 +107932,43 @@ rtA esn nFK lEO -aUE -xeL +xWd +oSL jeb jeb fZE meQ -jum +dAm fEF otC bdd -wFU -hRJ -isY -isY -isY -isY -jqH -xBP -gtc -rza -slj -haM -haM -haM -haM -mdF -lKV +bDT +tHv +xRJ +xRJ +xRJ +xRJ +tSB +moQ +caO +fvf +vrW +iXb +iXb +iXb +iXb +pzV +cad bdd vMA oYi -rmJ +sIR awE oSM vra vra -qvO -oAz +eUh +jTI lzq nyQ nhx @@ -107975,13 +107976,13 @@ eiq oEA wXH xBQ -pfw -qaE +mSU +wVy vra vra -gHq -qCJ -jVK +siy +wIX +aCu mJO plv plv @@ -107989,12 +107990,12 @@ plv plv mJO nEl -ePh -xxJ +xbg +jPU mgb -eMy +cgU oqI -dxq +iDk lyW aaa aab @@ -108006,7 +108007,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -108020,26 +108021,26 @@ aag aag aag vHn -iue -uPB +hoT +rGz njn rWz rWz rWz rWz njn -ims -xIR -pYM +hHe +gxn +gKd njn -gUw -gUw -vFU -xkJ +jsA +jsA +wET +gxk adO -dQF -rSI -hin +afM +fpR +ahf adO oDm poD @@ -108047,34 +108048,34 @@ xIj mOi mzP mzP -uOU +nkK tqu aqU gpW ofY eQj aqU -pvT +lyE rsO aGN -igN +rbB cnS -fRG +xXd qdJ -qIj +iCg aUH -hZq -lCY -hZq +aXx +jKI +aXx nIN -mkR -uHa +aGm +gNo xzh -uHa +gNo nIN -fYL -hrP -dZF +lCL +pMA +gcm nIN rgL rgL @@ -108096,7 +108097,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -108107,97 +108108,97 @@ aaa aaa aab kyw -amD +byt lfx lfx lfx lfx txp -hUp +veq bwG ycl ycl ycl ycl bwG -fNg -fNg -fNg +bwP +bwP +bwP jeb -tya -bfQ +tkN +qHg gAA beP -iiE -rRA -fKp -uLo -iiE +bfn +pkz +qfh +ipE +bfn moI gAA -qmp -tya +cGV +tkN jeb hjQ meQ -sbb +fNd oUi qdV bdd -xkC -wLv -wLv -wLv -rVp -wLv -wLv -wLv -rVp -wLv -wLv -wLv -rVp -wLv -wLv -wLv -lmT +bDU +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +cae bdd huP nbu -kUt +kcg awE oSM vra -jtm -prZ +gNq +hXb cgo fwY -dLT -aki -dLT -qbJ -dLT +hyk +nNV +hyk +mBc +hyk fwY cgo -dSY -jtm +skF +gNq vra -aOg -aOg -aOg +fqA +fqA +fqA mJO plv plv plv plv mJO -cBY +rxq sAS cXX sAS sAS nHG -ePh +xbg lyW aaa aab @@ -108209,7 +108210,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -108230,21 +108231,21 @@ rWz rWz rWz rWz -wNi +bWh hmj kbv fZo njn iSd -gUw -gUw -uIZ +jsA +jsA +qbP adO -tgS +afN ahh aiw -cbC -cHn +ahG +muW qdJ xIj mOi @@ -108252,17 +108253,17 @@ mzP mzP cJv xQV -nCE +mCx qQS -pVe -oLQ +tIu +uPI aqU -uuY +wmK liJ -iFv -fOB +pTj +cnq cnS -vDL +sfz poD xIj aUH @@ -108271,20 +108272,20 @@ mMP mMP nIN xzh -uHa +gNo xzh -uHa +gNo nIN mzs aPT xyB -kEe +cix rgL rgL rgL rgL nIN -fMJ +bWg jtU woU aag @@ -108299,7 +108300,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -108310,7 +108311,7 @@ aaa aaa aab kyw -tOP +deq lfx wDr wDr @@ -108323,13 +108324,13 @@ wDr wDr wDr wDr -kBJ -fNg -fNg +txE +bwP +bwP jeb -ehW -bfQ -rwr +aMx +qHg +qGc hxe aPf rth @@ -108337,15 +108338,15 @@ rth rth rth hxe -spL -qmp -cES +xHp +cGV +nBa jeb -bzd -bzd -jum -xkT -pFX +atH +atH +dAm +aCX +suH bdd beQ beQ @@ -108353,11 +108354,11 @@ beQ beQ bdd bdd -oLR -elr +hjk +bOJ bdd -oLR -elr +hjk +bOJ bdd bdd beQ @@ -108365,15 +108366,15 @@ beQ beQ beQ bdd -exG -mLa -rmJ -kLf -kLf +oCb +wwv +sIR +brq +brq vra -xZE -prZ -pXt +bMu +hXb +wDJ ivs nyQ nyQ @@ -108381,13 +108382,13 @@ pHA nyQ nyQ ivs -jsI -dSY -ceT +lpt +skF +pQF vra -aOg -aOg -fLo +fqA +fqA +gzM wDr wDr wDr @@ -108412,7 +108413,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -108426,24 +108427,24 @@ aag aag aag vHn -fUE -iue +btV +hoT njn rWz rWz rWz rWz njn -iXK -kCW -vpx +mAF +ilq +pjj njn xqh svq -gUw -gnm +jsA +xGI adO -sfM +afO ahh aiw adO @@ -108457,38 +108458,38 @@ ryn ryn mOi xdA -pMC +cZD uUB aqU aHq -kdF +cnH kzk -pFU +cnR aHq xIj qdJ xIj aUH -gyX -kQZ -rMv +sIA +gSj +aXA nIN xzh -uHa +gNo xzh -ioW +lbO nIN -oqX -mxY -oyz +gfN +efj +sxE nIN rgL rgL rgL rgL nIN -myw -xBp +kUL +tMU woU aag aag @@ -108502,7 +108503,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -108513,26 +108514,26 @@ aaa aaa aab kyw -tOP -wao +deq +iGc wDr -kQo -kQo -kXQ -kRr -kRr -kRr -rCp -kRr -kRr -xuV -fNg -fNg -fNg +mFL +mFL +iFp +wNz +wNz +wNz +oWE +wNz +wNz +suU +bwP +bwP +bwP jeb -wKH -xpD -rwr +iow +aMO +qGc hxe rth hXd @@ -108540,43 +108541,43 @@ guW aQM rth hxe -spL -gBN -wKH +xHp +aUi +iow jeb fZE meQ -kSq +rTA tAW stR bCz -sOF -iSb -iSb -iSb -iSb -pme -lRy +bDV +bGw +bGw +bGw +bGw +bNA +bKA bdj -ekL +oMe bdj -lRy -pme -iSb -sOF -iSb -iSb -iSb +bKA +bNA +bGw +bDV +bGw +bGw +bGw bCz oSM oYi -rmJ +sIR awE dnP vra -niC -lZv -pXt +wTw +bNE +wDJ ivs nyQ vqI @@ -108584,26 +108585,26 @@ vWB bSK nyQ ivs -goE -pTN -niC +bUi +bUT +wTw vra -aOg -aOg -aOg -xuR -hrM -hrM -fQV -hrM -hrM -hrM -pQW -sag -sag +fqA +fqA +fqA +dBg +aqL +aqL +buY +aqL +aqL +aqL +uWm +nRA +nRA wDr -dbQ -dpz +jPx +wdW lyW aaa aab @@ -108615,7 +108616,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -108637,16 +108638,16 @@ rWz rWz rWz njn -dSw +xXT sVV -jAW +tkR njn -qBV -cAB +ugo +uTl cGR -pwS +wnb adO -iHW +jkj ahh aiw adO @@ -108654,8 +108655,8 @@ eMr lGh xIj ioU -pzq -sLT +pvK +qPE xqD ioU ntj @@ -108663,35 +108664,35 @@ ntj ntj ntj ntj -tgq +cnE liJ -uog -nva +hgB +cbn aHq eMr gqz -xFh -rai -dhn -ofB -tqU +shC +aUd +ckK +iKM +aHM nIN xzh -uHa +gNo dMj -pgk +vNo nIN -oSt +nme sfT -ulY +vAH nIN rgL rgL rgL rgL nIN -bFx -hDA +edG +vpf woU aag aag @@ -108705,7 +108706,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -108717,39 +108718,39 @@ aaa aab kyw lfx -qWr +gSH wDr -kQo -kQo -kXQ -kRr -kRr -kRr -kRr -kRr -kRr -xuV -fNg -fNg -fNg +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP aLT aLT aLT aLT -uFQ -nTc +ozq +ueZ aPK aLT aQN -lVc -uXr +wsR +dAq aQL aQL aQL aQL dQV meQ -jum +dAm fEF fZE bCA @@ -108773,37 +108774,37 @@ bCA bCA oSM oYi -rmJ +sIR awE gvK bJC bJC bJC bJC -hsF -vht +cib +xvE bQZ bJC bSL -boW -cAv +moM +rXS bSJ bSJ bSJ bSJ -aOg -aOg -aOg -xuR -hrM -hrM -hrM -hrM -hrM -hrM -pQW -sag -sag +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA wDr nEl mgb @@ -108818,7 +108819,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -108832,24 +108833,24 @@ aag aag aag vHn -iue -iue +hoT +hoT njn njn njn njn njn njn -eEn -cHi -loj +ehL +kyr +chb njn njn njn -sXS +eDe njn njn -dzc +lFt ahh aiw adO @@ -108857,36 +108858,36 @@ ogT yiu xIj ioU -fAw -voO -gTn -mME -nET -aaB -nET -nwl -tTc -mtz +qyZ +wTd +cmK +cyP +kSi +mmn +kSi +qyA +kXu +jHC liJ qmP -ghf +uoH aHq xIj lGh xIj aUH -ezA -kDT -uXl +dbv +lII +aWc nIN -qKX +rBD nIN nIN nIN nIN -tPZ -qgd -rrr +tCx +ncG +tZg nIN nIN nIN @@ -108908,7 +108909,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -108920,96 +108921,96 @@ aaa aab kyw oif -gwW +nRN wDr -kQo -kQo -kXQ -kRr -kRr -kRr -kRr -kRr -kRr -xuV -fNg -fNg -fNg +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP aLT -viR -nEe +kaB +vVb aLT -kKi -vzm -xtJ +aOy +aOz +mKb aLT -dwo -tWC -nCh +vbM +aRP +aSH aQL -aif -qQU +mJP +bSn aQL hEm kti eFa fEF -een -sjY -sjY -sjY -sjY -sjY -sjY -sjY -sjY -eqp +exQ +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bri bdj -eqp -sjY -sjY -sjY -sjY -sjY -sjY -sjY -sjY -abv +bri +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +uuI oYi mkx bIW eMZ bJC -bIP -oVy +jSp +lAQ bJC -sJH -eyZ -jyP +bOZ +bPa +vhR bJC -fTq -pZx -hSA +mWQ +bTy +bUf bSJ -gxe -qxy +hII +iJS bSJ -aOg -aOg -aOg -xuR -hrM -hrM -hrM -hrM -hrM -hrM -pQW -sag -sag +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA wDr -xKn -nTP +xgS +svF lyW aaa aab @@ -109021,7 +109022,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -109035,23 +109036,23 @@ aag aag aag vHn -iue +hoT tob lso -iue +hoT tob tob -fIG -bsO -poU +hqm +rpG +cSa aeA -qWT -iWO -wpf +sjz +hbl +qYz cGR cGR -gUw -aSG +jsA +cdZ aiw ahh aiw @@ -109060,10 +109061,10 @@ xIj poD xIj ioU -gZi -ktk -emE -lQg +mSz +nIG +cSk +ene aGN aGN suy @@ -109072,32 +109073,32 @@ uaV nSS iKf aGN -dsj +qrv aHq vcG qdJ xIj amM -gmw +ckd mQC -tqU -psF +aHM +aZv xzh xzh kya -nkP -psF -qGB +qoM +aZv +wcm lJY -otO -csi -teS -hDA +guo +rXF +fLi +vpf uBx jtU jtU -hDA -hDA +vpf +vpf woU aag aag @@ -109111,7 +109112,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -109139,63 +109140,63 @@ wDr aLT aLT aLT -tuQ +sXt aMQ -pMW +aNI bfy aMz -phS +sHY aLT -fTU +msm aRT xMR -ftD +aTw aUj -jVG +kLk aQL -gAb +npw vzi eFa fEF -uio -uOn -uOn -vkU -sah -luT -ndC -uOn -uOn -aox +rbd +bdk +bdk +bgR +bwc +eqP +pUp +bdk +bdk +brj bQQ -dVv -uOn -uOn -ndC -luT -cie -tNF -uOn -uOn -vlG +fSl +bdk +bdk +pUp +eqP +myJ +eKI +bdk +bdk +cxF oYi mkx fic -fwI +kjW bJC -ciT +ojF bNG -pQb +bOx chR bJD -cET +mzg bJC -aZG +ycZ bTA cIr -vGo +gHo bUU -tJS +uDW bSJ bSJ ljv @@ -109224,7 +109225,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -109240,22 +109241,22 @@ aag abh cGd cGd -vmo +moK cGd cGd cGd cGd cGd -leB -rnQ -dDS +wYa +nBK +mzS njn njn njn njn cGR njn -oRu +afP ahh aiw nph @@ -109266,39 +109267,39 @@ ioU ioU ioU ioU -qHz -kGX -kGX -gXi -kGX -keZ +nmV +oeM +oeM +pUd +oeM +eed udZ aGN aGN -ogw +pSU aHq upW qdJ xIj amM -kSb +drk mQC -dQs +mkG nIN qHT nIN nIN nIN nIN -dLg -xDv -qpk +nuM +uHr +xwX mRU mRU mRU mRU mRU -wrZ +gBs mRU mRU uOi @@ -109314,7 +109315,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -109328,16 +109329,16 @@ kyw lfx gUn wDr -bcq -bcq -bcq -qBt -qBt -qBt -qBt -qBt -qBt -qBt +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF wDr aLT aLT @@ -109346,11 +109347,11 @@ aLT aLT aLT tNR -uit -rAO +aMP +eAg aLT -vTi -wYm +qoJ +aRZ aSI aQL aQL @@ -109360,7 +109361,7 @@ aQL uBj eFa fEF -fqS +wMB bdl bdl bdl @@ -109369,9 +109370,9 @@ bdl bdl bGo bGo -xIf -awI -xks +qjY +pCr +jpD cpK cpK bdl @@ -109380,7 +109381,7 @@ bdl bdl bdl bdl -oSZ +opd oYi mkx jwP @@ -109390,11 +109391,11 @@ bJC bJC bJC mjS -mFa -mJH +bNF +szM bJC -ybs -rer +qrc +bTE syH bSJ bSJ @@ -109403,19 +109404,19 @@ bSJ bSJ ljv wDr -xoD -xoD -xoD -xoD -xoD -xoD -xoD -wMs -wMs -wMs +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp wDr nEl -ePh +xbg lyW aaa aab @@ -109427,7 +109428,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -109443,14 +109444,14 @@ aag abh acx vuG -nOw +aeC aeA aeA -kxh +axw aeA bbe aeA -nOw +aeC aeA bbe aeA @@ -109466,27 +109467,27 @@ xIj yiu xIj ioU -sEy -vPt +lPO +vJg ioU -kHg -kGX -kGX -keZ -kGX -keZ +vQf +oeM +oeM +eed +oeM +eed vQq eEo aGN -miS +rub aHq sgH qdJ xIj amM -iis -umz -lVa +eqB +obC +hcf nIN nhN nIN @@ -109494,11 +109495,11 @@ lJY lJY lFK lJY -nrv +vcE lJY lFK lJY -apc +lMY lJY qvI lJY @@ -109517,7 +109518,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -109528,97 +109529,97 @@ aaa aaa aab kyw -wfd -wfd +oxn +oxn wDr -bcq -bcq -bcq -qBt -qBt -qBt -qBt -qBt -qBt -qBt +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF wDr aLT aLT -aJo +bbY bdr -dbG +bdz bdr bft -sRS -lak +bgU +bhG aLT -iWl -xhL +bjs +blA bno bpC -bvq +brn aRT -vJa +buM aQL fZE eFa fEF -fqS +wMB bdl -gBw -lGJ -fbf -mqV +bEr +bEs +bIs +bdm rbY -lst -iLl -ebm -ouG -ebm -pQm -vQd +eAG +bOK +bPD +bYa +bPD +jOk +bNB tiE -wjK -gLU -giO -vYS +xGo +bYu +nmK +caf bdl -drt +oDU oYi mkx oSM bJC -cXf +cdT cfo -txC +cgq cfo chM -bvM -fYl +cjd +cjA bJC -rKW -cmH +ckr +ckQ clh clg -sXm +clI clg -hRN +clW bSJ ljv wDr -xoD -xoD -xoD -xoD -xoD -xoD -xoD -wMs -wMs -wMs +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp wDr -aRs -lXC +cZI +xGT lyW aaa aab @@ -109630,7 +109631,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -109644,22 +109645,22 @@ aag aag aag abi -qHt +acz aeA aje amF asA -teN +ayb amF amF amF -teN +ayb asA amF kmE aeA njn -vKX +xzx njn ahJ ahJ @@ -109669,19 +109670,19 @@ xIj poD xIj ioU -glY -hHu -yhf +dnS +viN +bAu nVB -sKo -kGX -keZ -kGX -keZ +eHY +oeM +eed +oeM +eed iLf aRi aGN -dsj +qrv aHq fsh qdJ @@ -109691,22 +109692,22 @@ aGz aGz aGz nIN -kOg +lZJ nIN lJY qbx dcp yeH -uIP +sSl dcp dcp dcp -uIP +sSl yeH dcp nja lJY -akN +xxZ uyC aag aag @@ -109720,7 +109721,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -109731,97 +109732,97 @@ aaa aaa aab emA -qSg -qSg +vIg +vIg wDr -bcq -bcq -bcq -qBt -qBt -qBt -qBt -qBt -qBt -qBt +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF wDr aLT aLT -hVI -gnW +bca +aMC aLT -xOu -bEf -xRt -uFr +avv +bfu +rGj +aQT aLT -xYd -wMP -kaK -mot +aTv +blB +bnp +aTx aQL -tZd -bDR +aUY +buN aQL fZE eFa fEF -fqS +wMB bdl -vIa +bDX bCA bCA bdj rbY -oFg -lRy +bEc +bKA bCA -yhz +bQS bCA -lRy -oFg +bKA +bEc tiE -gER +tjl rIH tUh -chs +cag bdl -nca +jDz oYi mkx oSM bJC -whR -mxS +cdU +bMy bJC -itu -fWV -cET -lMf +cog +chN +mzg +cdP bJC -oKZ -pan -jQE -cNc +dpO +ckX +cli +coj bSJ -mEw -oLg +bVo +clX bSJ ljv wDr -xoD -xoD -xoD -xoD -xoD -xoD -xoD -wMs -wMs -wMs +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp wDr -etR -vqi +cOo +rJf tcO aaa aab @@ -109833,7 +109834,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -109847,69 +109848,69 @@ aag aag aag abi -pLg +acA aeA ajk aeA -nOw -nOw -nOw -efD -nOw -nOw -nOw +aeC +aeC +aeC +cVb +aeC +aeC +aeC vOh gUX ily njn -sXS +eDe njn -nOw -nOw -nOw +aeC +aeC +aeC mdm xIj poD xIj ioU -eTL -wlW +pPM +qKz ioU -kgU -kWL -kWL -gUt -vEM -tQh -kYs -olu -tQh -vxS +mGu +fXx +fXx +kXf +huO +iLO +qLV +xNv +iLO +bUa aHq ogT lGh xIj mdm -nrv -nrv -nrv +vcE +vcE +vcE nIN -qKX +rBD nIN cBb xVS lJY -nrv -nrv -nrv -ijH -nrv -nrv -nrv +vcE +vcE +vcE +iTd +vcE +vcE +vcE eKH lVo lJY -jDa +kAm uyC aag aag @@ -109923,7 +109924,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -109934,8 +109935,8 @@ aaa aaa aab emA -kmK -kmK +gPS +gPS wDr wDr wDr @@ -109954,13 +109955,13 @@ aLT aLT aLT aLT -mFJ -xRt -uFr +bfx +rGj +aQT aLT -xYd -wMP -mHm +aTv +blB +kiU aQL aQL aQL @@ -109969,27 +109970,27 @@ aQL dQV eFa fEF -doV +fNH bdl -ibF +bDY bCA bCA -mUU -tAg -flo -flo -flo -flo -flo -flo -flo -mTh -lRy -kkz +nLt +gmb +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +nXU +bKA +jac bCA -hdk +cah bdl -vJQ +wPi oYi mkx gvK @@ -109998,13 +109999,13 @@ bJC bJC bJC bJC -mFn -cET -lMf +chO +mzg +cdP bJC -oKZ -pan -jCv +dpO +ckX +clj bSJ bSJ bSJ @@ -110023,8 +110024,8 @@ wDr wDr wDr wDr -fBU -exI +nGM +hIp tcO aaa aab @@ -110036,7 +110037,7 @@ aaa aaa aab aaa -kfC +aad aag aag aag @@ -110051,29 +110052,29 @@ aag aag abh acx -tdz -tHt -nOw -nOw -uKf -nkp -nkp -nkp -fcX -nOw -nOw -tHt -nOw -dDS -nOw -plp -phE -phE -cGi -dOj -qxG -ure -nAb +ahz +ajs +aeC +aeC +ayc +aOE +aOE +aOE +ciu +aeC +aeC +ajs +aeC +mzS +aeC +oZI +fjo +fjo +opu +hlj +iso +ceV +nsH alL alL alL @@ -110089,29 +110090,29 @@ jvY alL alL alL -qxG -ure -nAb -dOj -xLx -hEQ -hEQ -fsc -xDv -dLg -nrv -sGV -nrv -nrv -xTL -hwP -hwP -hwP -pUe -nrv -nrv -sGV -lJN +iso +ceV +nsH +hlj +nvz +ner +ner +vdR +uHr +nuM +vcE +kUV +vcE +vcE +eCo +iry +iry +iry +sYw +vcE +vcE +kUV +cil rRq uOi aag @@ -110126,7 +110127,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aab @@ -110137,97 +110138,97 @@ aaa aaa aab emA -nwH +jEM ikT owU iTq ikT -nwH -saT +jEM +kjY riB -heU +fGi qan -oaA +jkN jUh -jAl +tIF bCk -oaA +jkN aLT -gGA -khQ -cPQ +bco +aMB +bdA aLT -frV -xRt -vgK +ial +rGj +aPl aLT -dZY -lfm -xzX +aPn +aRU +bnr aQL -wNy -cUc -kPl +brr +aUZ +buO aQL fZE eFa fEF -cnY +tLZ bdl -ftu +bDZ bdj -eqp -kkb +bri +bLX bdl -xQu -iCS -eMH -iCS -eMH -iCS -eMH +kSU +bNP +bmD +bNP +bmD +bNP +bmD mYv -vtV -kkz -gJv -iQp +doP +jac +xxa +cai bdl -xlQ +tkg oYi mkx oSM bJC -frv -iEZ -riR +cdV +bMx +cgr bJC -ydF -cET -qiO +raK +mzg +bgW bJC -vVa -pan -jNH +ckR +ckX +iyS bSJ -nEw -ahb -pot +clJ +bVn +clY bSJ ljv -dHF -djr -djr -djr -hDz -arW -dHJ +dnZ +eHy +eHy +eHy +cyp +oaO +lWY ljv jiM -lWZ +ere lYg lYg sEu -weL +lia tcO aaa aab @@ -110239,11 +110240,11 @@ aaa aaa aab aaa -htC -smo -smo -smo -smo +aae +aah +aah +aah +aah aag aag aag @@ -110254,67 +110255,67 @@ aag aag abh acx -nie -tHt -nOw -tQX -eMv +pMk +ajs +aeC +wXh +ayn atr lMy aex -byW -tQX -nOw -udP -teN -jaA -doQ -wux +ciw +wXh +aeC +ydz +ayb +jxq +fbV +msS asA asA -wux -iYY -aJH +msS +nZf +rho jIs -mAa +emL jvY jvY jvY jvY -gsw -uUT -wge -yfF -mrR -uUT -vuW +apW +aqV +asH +aui +avN +aqV +axV jvY jvY jvY jvY -faC +gqI iCT -fMO -iYY -kBS +qnH +nZf +ohi yeH yeH -kBS -jRg -ohz -uIP -lFx -nrv -kwW -oSY +ohi +oJK +qnX +sSl +kkx +vcE +kpo +iMx tGi cea bXe -qxf -kwW -nrv -sGV -kqD +eyG +kpo +vcE +kUV +xyL rRq uOi aag @@ -110325,11 +110326,11 @@ aag aag aag aag -smo -smo -smo -smo -qPi +aah +aah +aah +aah +afm aaa aaa aab @@ -110340,97 +110341,97 @@ aaa aaa aab emA -gPz -saT -soH -poX -nwH +kJZ +kjY +fGB +snN +jEM ikT -nwH +jEM lty -fdf +eTD lty -nwH +jEM ikT -saT +kjY bCk heO aLT -gGA +bco bdr -cPQ +bdA aLT -cSR -xRt -uFr +bfw +rGj +aQT aLT -xYd -wMP -iZK +aTv +blB +vJV aQL -wNy +brr aRT -kPl +buO aQL fZE eFa fEF -bmU +xpc bdl lOr lOr -cdN +iwI bdl bdl -agG -iCS -eMH -iCS -eMH -iCS -tKM +reH +bNP +bmD +bNP +bmD +bNP +byu obo tiE -ouP +bYv tiE tiE bdl -lQm +fJt oYi mkx oSM bJC -frv +cdV cfo -riR +cgr bJC -pxB -cET -lMf +chQ +mzg +cdP bJC -oKZ -pan -owG +dpO +ckX +clk bSJ -nEw +clJ clg -pot +clY bSJ ljv -egz +eaz lYg lYg aqH -nVT -xtZ -dHn +oxl +wac +mjy ljv ien -hVJ -hVJ -hVJ -gia -ovw +xhO +xhO +xhO +cmN +srl tcO aaa aab @@ -110447,87 +110448,87 @@ aaa aaa bdH aaa -htC -smo -smo -smo -smo -smo -smo -smo +aae +aah +aah +aah +aah +aah +aah +aah abi -vGJ +nGY gyU ajk aeA asY -ixc +ayQ atr -mIA +iDK atr -qBP +ciD ngl aeA ajk aeA -heM -nOw -nWe -rnQ -rnQ -leB -dOj -pZb -tHZ -swS +fXO +aeC +pdo +nBK +nBK +wYa +hlj +giW +puP +tfF jvY -smx -rLN +arg +atf jvY -vYR -cKr -iHv -cKr -kQV -cKr -fgk +apX +aqb +asI +aqb +avO +aqb +axW jvY -wAa -mmh +aMm +aOq jvY -vBG -tHZ -swS -dOj -qpk -xDv -xDv -rlx -waB -thm +bgM +puP +tfF +hlj +xwX +uHr +uHr +ehm +nXG +qYd lJY xVS lJY ttS -hwc +wEO faO -oPi +cOd bXe -hLQ +deg wLu lJY xVS kPH -gtN +knL uyC -smo -smo -smo -smo -smo -smo -smo -qPi +aah +aah +aah +aah +aah +aah +aah +afm aaa aaa aaa @@ -110547,89 +110548,89 @@ emA emA emA emA -sqr +sEg ikT -nwH +jEM ahL -olE +bFl nZW -nwH +jEM ikT -nwH -nwH +jEM +jEM bCk aLT -dwN +bcZ bdr -kNF -uzp +bdC +beR bfy -xRt -uFr +rGj +aQT aLT -xYd -wMP +aTv +blB bnt -syz -jCu +bpG +brs aRT -vmL +bew aQL -bzd -jum -xkT -bzd +atH +dAm +aCX +atH mCo -kfx -qsw -lRy -xwu -sGO -fYj -iCS -eMH -iCS -eMH -iCS -eMH -pQo -isv -ybU -kRJ -dKT +iwZ +jFy +bKA +oNW +dmF +pXV +bNP +bmD +bNP +bmD +bNP +bmD +lyk +bOR +eHa +cmo +xAB mCo -kLf -mLa -rmJ -kLf +brq +wwv +sIR +brq bJC -sPO +bKX cfo -xLd -hse +cgs +chk chR -cET -lMf +mzg +cdP bJC -oKZ -pan +dpO +ckX cll -mPU -nvJ +clE +clK clg -jJT +bVy bSJ ljv ljv ljv ljv -rKK +tWl jer ljv ljv ljv jEA -bVT +hCq tcO tcO tcO @@ -110659,69 +110660,69 @@ bdH bdH bdH abi -bjf +dEJ gyU ajk aeA atp -piL +ayR atr -mIA +iDK atr -iQQ +cji nqV aeA ajk ily cMx -hgf +fVk cMx -tPX -nOw -gGg +rjX +aeC +beN mdm -aZg +lLt qdJ -jBn +vCv jvY -fiJ +arh atm jvY -sQi -cKr -osW -cKr -omW -cKr -bRd +apY +aqb +asJ +aqb +avP +aqb +axX jvY nSG -iMo +aOs jvY -aZg +lLt poD -jBn +vCv mdm -ovc -nrv -oHQ +rmo +vcE +uul yat -eXh +qLk yat cBb xVS lJY hlX -cXZ +umh bXe -oPi +cOd tGi -jNm +pfH wlF lJY xVS kPH -nIn +qGU uyC bdH aaa @@ -110750,85 +110751,85 @@ aaa aaa aaa emA -ccO +tcm ikT -nwH +jEM uzv -fjb +tYr uzv -nwH +jEM ikT -bmS -nwH +hYf +jEM ikT aLT -gGA +bco bdr -cPQ +bdA aLT -fMI -hdb -vgK +bfD +aPj +aPl aLT -dZY -wMP -eYh +aPn +blB +sNb aQL -wNy +brr aRT -kPl +buO aQL jpW eFa svw mzv -mHa -sEY +bmv +bEg bGU bGU -cXN -iyd -sDF -tgj -tgj -tgj -tgj -tgj -tgj -umf -mfj +bKz +snw +qsC +bNL +bNL +bNL +bNL +bNL +bNL +bWL +bXH bYw nDM -umf -qMv +bWL +sSa bRo dOG gKw tgz bJC -frv +cdV cfo -riR +cgr bJC -rhH -cET -qiO +foL +mzg +bgW bJC -vVa -pan -ors +ckR +ckX +loS bSJ -nEw +clJ clg -pot +clY bSJ bXh lYg lYg lYg sEu -egz -lWZ +eaz +ere lYg lYg sEu @@ -110863,67 +110864,67 @@ aaa bdH abh acx -aaK -tHt -nOw -tQX -eMv +gCB +ajs +aeC +wXh +ayn atr rmG bXz -byW -tQX -nOw -tHt -rrP +ciw +wXh +aeC +ajs +qon cMx -uJG +gqx aep ggQ ggQ aME aep -aZg +lLt lGh -jBn +vCv jvY -nuj +ari aoP jvY -qil -cKr -uJf -cKr -wkL -cKr -oOe +apZ +aqb +asK +aqb +avQ +aqb +aqa axo atm -xgl +aOr jvY -aZg +lLt poD -jBn +vCv aep aME ggQ aME aep -tlK +dcX yat -mkK -sGV -nrv -kwW -oSY +dHe +kUV +vcE +kpo +iMx bXe sZY mzF -qxf -kwW -nrv -sGV -jKx +eyG +kpo +vcE +kUV +bxA rRq uOi bdH @@ -110953,89 +110954,89 @@ aaa aaa aaa emA -rAL -soH -saT +hyb +fGB +kjY yia -rEn -qyY -hlF +ugZ +kcG +fBo ikT -nwH -nwH +jEM +jEM ikT aLT -gGA -gnW -cPQ +bco +aMC +bdA aLT -mFJ -eNW -uFr +bfx +bgY +aQT aLT -xYd -wMP -uZp +aTv +blB +nCp aQL -wNy -tZd -kPl +brr +aUY +buO aQL fZE eFa fEF -cnY +tLZ mCo -kxU -flo -flo -flo -ken -uFb +bEh +bNQ +bNQ +bNQ +pjG +boy bpQ bpQ -xUP +bsJ bpQ bpQ -dMF -ayd -lRy -lRy -bfa -gLB +bxf +bZr +bKA +bKA +cXR +cal mCo -rIr +wcD oYi mkx oSM bJC -frv -mxS -riR +cdV +bMy +cgr bJC -sSh -cET -lMf +chP +mzg +cdP bJC -oKZ -pan -nGy +dpO +ckX +cln bSJ -nEw -mEw -pot +clJ +bVo +clY bSJ tgm -hVJ -hVJ -hVJ -hVJ +xhO +xhO +xhO +xhO gEh sOD gEh -hVJ -hVJ -pen +xhO +xhO +tWp tcO aaa aaa @@ -111066,19 +111067,19 @@ aaa bdH abh acx -qdi -tHt -nOw -nOw -pXN -oQT -sZR -sZR -vpG -nOw -nOw -tHt -nOw +aeB +ajs +aeC +aeC +azk +aOU +biL +biL +cmF +aeC +aeC +ajs +aeC cMx qbw aep @@ -111086,27 +111087,27 @@ afj afk agM aep -aZg +lLt yiu -jBn +vCv jvY -iyp +arj atm jvY -kjm -cKr -cKr -cKr -cKr -cKr -cKr -jKU +xRH +aqb +aqb +aqb +aqb +aqb +aqb +bzD atm -iMo +aOs jvY -aZg +lLt yiu -jBn +vCv aep aHS afk @@ -111114,19 +111115,19 @@ sHo aep cnm yat -nrv -sGV -nrv -nrv -imd -cCw -cCw -cCw -ncJ -nrv -nrv -sGV -ctd +vcE +kUV +vcE +vcE +shs +kAU +kAU +kAU +aYE +vcE +vcE +kUV +riP rRq uOi bdH @@ -111166,19 +111167,19 @@ emA emA emA iTq -poX +snN aLT aLT aLT aLT aLT -oMI -eNW -uFr +hQW +bgY +aQT aLT -xYd -wMP -jTf +aTv +blB +qhU aQL aQL aQL @@ -111187,13 +111188,13 @@ aQL fZE eFa fEF -lSd +bNr bdl bEi -ayd -eMH -syG -ken +bZr +bmD +ngw +pjG boz bpR bpR @@ -111201,13 +111202,13 @@ bpR bpR bpR bxg -ayd -lRy -lRy -xte +bZr +bKA +bKA +cir bdl bdl -kfQ +sXC oYi mkx oSM @@ -111216,20 +111217,20 @@ bJC bJC bJC bJC -njK -cET -lMf +uUo +mzg +cdP bJC -oKZ -pan -azK +dpO +ckX +sUO bSJ bSJ bSJ bSJ bSJ cZp -hVJ +xhO tcO tcO tcO @@ -111268,17 +111269,17 @@ aaa aaa bdH abi -odf +acX aeA aju amH -nOw -nOw -nOw -efD -nOw -nOw -nOw +aeC +aeC +aeC +cVb +aeC +aeC +aeC aeA ajk aeA @@ -111289,27 +111290,27 @@ afk afk afk aep -aZg +lLt poD -jBn +vCv jvY -gDM +ark atm jvY -rfE -cKr -tAd -cKr -yjB -cKr -hVG +bhf +aqb +asL +aqb +avR +aqb +kTv axo atm -nOu +thv jvY -aZg +lLt yiu -jBn +vCv aep afk aHl @@ -111320,17 +111321,17 @@ yat lJY itR kKR -nrv -nrv -nrv -ijH -nrv -nrv -nrv +vcE +vcE +vcE +iTd +vcE +vcE +vcE lJY xVS lJY -mxD +hki uyC bdH aaa @@ -111369,34 +111370,34 @@ aaa aaa emA ikT -nwH +jEM aLT -eSw -khQ -whd +bcE +aMB +bdD aLT -bgc -eNW -vgK +bfz +bgY +aPl aLT -dZY -wMP -kcJ +aPn +blB +bnu aQL -nbt -cUc -fvS +brt +aUZ +buS aQL fZE eFa fEF -cnY +tLZ bdl brp -ayd -eMH -uma -ken +bZr +bmD +xId +pjG boz bpR bpR @@ -111404,35 +111405,35 @@ bpR bpR bpR bxg -ayd -flo -flo -flo -cjY -rHg -pAx +bZr +bNQ +bNQ +bNQ +bGz +egD +oQn oYi mkx oSM bJC -oMl -iEZ -fTy +cdX +bMx +cgt bJC -giE -gyk -qiO +chS +bQA +bgW bJC -vVa -pan -mQg +ckR +ckX +meu bSJ -iUv -ahb -rog +clL +bVn +clZ bSJ tgm -hVJ +xhO tcO aaa aaa @@ -111471,33 +111472,33 @@ aaa aaa bdH abi -tXm +acY aeA ajv amF asA -teN +ayb amF amF amF -teN +ayb asA amF ohL aeA cMx -ygj +oVo aep aep aep aep aep -wbW -mdQ -wbW +umI +ddO +umI jvY alL -uvl +atk jvY jvY axo @@ -111507,12 +111508,12 @@ axo axo jvY jvY -xpF +aAy alL jvY -wbW -eNw -wbW +umI +juj +umI aep aep aep @@ -111524,16 +111525,16 @@ lJY ucw dcp yeH -uIP +sSl dcp dcp dcp -uIP +sSl yeH dcp lMp lJY -ovr +jbt uyC bdH aaa @@ -111572,45 +111573,45 @@ aaa aaa emA qGC -nwH +jEM aLT -eSw +bcE bdr -whd +bdD aLT -oGS -eNW -uFr +rrq +bgY +aQT aLT -xYd -wMP -xzb +aTv +blB +mtr aQL -nbt +brt bpC -fvS +buS aQL bMf eFa fEF -cnY +tLZ bdl bEl wup -eMH -obN -ken -qFy +bmD +hBz +pjG +boA bpR bpR bsK bpR bpR -mBU -ayd -yjL -yjL -yjL +bxh +bZr +krN +krN +krN oqY lde oSM @@ -111618,24 +111619,24 @@ oYi mkx oSM bJC -oMl +cdX cfo -fTy +cgt bJC -pxB -qsF -lMf +chQ +cjf +cdP bJC -oKZ -pan -ktp +dpO +ckX +xoe bSJ -iUv +clL clg -rog +clZ bSJ -ksx -dtT +xMm +pFr tcO aaa aaa @@ -111679,47 +111680,47 @@ aeA aeA aeA aeA -nOw +aeC aeA aeA aeA -nOw +aeC ntI aeA -nOw +aeC puO cMx qbw -uZz +xnh aep aep aep aep -lpX +sHI jao -nOP +qhT jvY -pXI +arl atm alL -uVm -sBU -uRl -rcf -izS -kFI -oiw +awv +axu +azc +aAZ +aDa +aFh +aHr alL aMo -fpr +aOt jvY -lpX +sHI lOn -uEo +wCe oIB -tSN -mgQ -vcW +jgr +cXz +rtc oIB cnm yat @@ -111727,11 +111728,11 @@ lJY uxC lJY lJY -kGh +fFe lJY lJY lJY -nrv +vcE lJY lJY lJY @@ -111775,34 +111776,34 @@ aaa aaa emA ikT -nwH +jEM aLT -oMZ +abS bdr -kNF -sfd +bdC +beS bfy -eNW -uFr +bgY +aQT aLT -xYd -wMP +aTv +blB bnt -bvn -jCu +bpH +brs bpC -pCJ +abT aQL -bzd -jum -xkT -bzd +atH +dAm +aCX +atH bdl buz -ayd -eMH -eal -ken +bZr +bmD +dmE +pjG boz bpR bpR @@ -111810,34 +111811,34 @@ bpR bpR bpR bxg -ayd -uYr -wBb -bTL -uGz -rDw -abv -mLa -rmJ -kLf +bZr +ibc +uly +bNN +vbR +eGq +uuI +wwv +sIR +brq bJC -cJZ +ack cfo -xLd -qxR +cgs +chl chR -qsF -lMf +cjf +cdP bJC -oKZ -pan +dpO +ckX cll -oyT -nvJ +clF +clK clg -vgm +acp bSJ -uNY +qKK gEh tcO aaa @@ -111880,63 +111881,63 @@ abh abh abh abh -nOw +aeC atr -nOw +aeC atr -nOw +aeC cMx cMx cMx cMx -evA +mRI cMx cMx qbw -vFi +rYU cMx cMx cMx cMx -lpX +sHI jao -nOP +qhT jvY -kuF +abF atm -rzV +auH atm atm atm -tSv +aBb aFi aFi aHs -hIv +aIT atm -nYl +aVF jvY -lpX +sHI aPC -efU +pKH oIB -tAP -pSn -dNC +fXE +kaS +aiQ oIB cnm yat yat kNq kNq -efW +qDB kNq kNq -nrv +vcE bXe -nrv +vcE bXe -nrv +vcE uOi uOi uOi @@ -111977,35 +111978,35 @@ aaa aaa aaa emA -nwH +jEM ikT aLT -eSw -gnW -whd +bcE +aMC +bdD aLT -oFH -eNW -vgK +bfC +bgY +aPl aLT -dZY -iDp -hVU +aPn +aRX +cSQ aQL -nbt -tZd -fvS +brt +aUY +buS aQL fZE eFa fEF -qCY +hvz bdl bEm -ayd -eMH -mcB -ken +bZr +bmD +hAc +pjG boz bpR bpR @@ -112013,34 +112014,34 @@ bpR bpR bpR bxg -ayd -uAp +bZr +xBV uys uys uys uys -cvU +bfd oYi mkx oSM bJC -oMl -mxS -fTy +cdX +bMy +cgt bJC -vdm -qsF -qiO +chV +cjf +bgW bJC -vVa -wtO -rGh +ckR +bTC +mvl bSJ -iUv -mEw -rog +clL +bVo +clZ bSJ -cbj +hTU lNk tcO aaa @@ -112079,71 +112080,71 @@ aaa aaa aaa aaa -kfC +aad aag aag abh -nOw +aeC atr -nOw +aeC atr -nOw +aeC cMx -wMp -lwL +jrC +jYa cMx wFX cMx -sSb +kqa qbw -ygj +oVo cMx -ygj -ygj +oVo +oVo cMx -lEz +nSw qsG -nOP +qhT jvY jvY jvY jvY -xZO -xZO -lWK -lqA -cUM -xZO -xZO +awx +awx +azd +aBc +aDb +awx +awx jvY jvY jvY jvY -sCw +sjG lOn -nOP +qhT oIB -rda +wqr bZw -kBN +xUV oIB cnm -muP +cjm yat -oso -vZU +toD +wDq aPO -hDh +sNP kNq -nrv +vcE bXe -nrv +vcE bXe -nrv +vcE uOi aag aag -uQY +ajZ aaa aaa aaa @@ -112180,70 +112181,70 @@ aaa aaa aaa emA -sQD +rIV dYc aLT aLT aLT aLT aLT -mFJ -eNW -uFr +bfx +bgY +aQT aLT -xYd -wMP -eYh +aTv +blB +sNb aQL aQL aQL aQL aQL -sob -bFd -dXC -sob +edn +qRd +gtH +edn bdl -fxG -bTL -bTL -bTL -kQc -hIM +bpT +bNN +bNN +bNN +bmB +boB bpS bpS -pwF +bsL bpS bpS -cqE -ayd -lRy -smv -sZF -gtj +bxi +bZr +bKA +dyx +eYr +bUo uys -izi -iWS -ukH -izi +kKB +rsL +jts +kKB bJC bJC bJC bJC bJC -dtL -tuI -lMf +chW +rvT +cdP bJC -oKZ -pan -wlT +dpO +ckX +hAZ bSJ bSJ bSJ bSJ bSJ -nLE +xsv gEh tcO aaa @@ -112282,71 +112283,71 @@ aaa aaa aaa aaa -kfC +aad aag aag abh -nOw -sUD -dBA -nOw -tco +aeC +atu +azU +aeC +ldl cMx qbw -jAE +iAI cMx tvA cMx -uiO +iml fIK -dbR -uWG +kZc +wuS fIK fIK -uWG -qNL +wuS +tzF qsG -nOP +qhT alL -wVO -wwn +urM +dBG jvY jvY jvY jvY -sfc +aBf jvY jvY jvY jvY -kBG -orX +wjv +fDG alL -lpX +sHI aPC -qNL -rfD -sUR +tzF +qgK +tEB uBM -wPG +dXo oIB fME -lAU +kon yat -vvm -rLV +swG +jei aPO -tPM +hIX kNq -nrv -wdO -wQq -nrv -kGh +vcE +pxJ +swM +vcE +fFe uOi aag aag -uQY +ajZ aaa aaa aaa @@ -112383,68 +112384,68 @@ aaa aaa aaa emA -nwH +jEM kDd aLT -vIe -hIb +bdJ +bds aLT -qgV -cAh -glj -uFr +bpL +bfE +njd +aQT aLT -xYd -wMP -wnT -cUc +aTv +blB +uvu +aUZ aQL -tJu -tin +bsS +mqK aQL bqc tcS mww -saG +sZe bdl -lQx +bEp bCA wlh -pkm -elG -hKS -uoT -hKS -uwo -rKs -jXn -acw -eMH -lRy -smv -unc -pmm +cvb +bmC +nwG +lDL +nwG +lMw +jeO +nQv +ltb +bmD +bKA +dyx +hGN +pVx uys -wRg +wKm ekM aVM wVm bJC -kGg -rQD +cfp +cgu bJC -iEZ -pxB -qsF -lMf +bMx +chQ +cjf +cdP bJC -oKZ -pan -qIW -ahb +dpO +ckX +clo +bVn bSJ -hiZ -sAv +clM +clS bSJ cZp gEh @@ -112485,71 +112486,71 @@ aaa aaa aaa aaa -kfC +aad aag aag fTl taw taw taw -evA +mRI taw cMx vPT -jAE +iAI cMx wTn cMx -xGd +cLd qbw -kKD +pTI cMx -ygj -ygj +oVo +oVo cMx -fkP +nWf lOn acQ -bRB -rDh -xNB -cRR -cRR -cRR -nXj +kwd +amw +anO +arq +arq +arq +aze xYZ -dXy -cRR -cRR -cRR -xNB -gAm -bRB +aDe +arq +arq +arq +anO +qaV +kwd acQ lOn -nOP +qhT oIB -tJj +wKF hzb -sOS +ltU oIB wSB -wHy +gAO yat -uye -rLV +bCR +jei aPO -tZa +fJp kNq kNq kNq kNq -efW +qDB kNq fVe aag aag -qPi +afm aaa aaa aaa @@ -112586,71 +112587,71 @@ aaa aaa aaa emA -nwH +jEM ikT aLT -eMh +beT bdr -lUc +bkg aMz bfy -eNW -vgK +bgY +aPl aLT -dZY -wMP +aPn +blB bnt aRT -oTa +ihY bpC -ndU +dnE aQL -sjx -lGT -fNz -dMy +qfI +dpA +ggo +lhs bdl tiE tiE -fYT +tPj tiE tiE bdl bdl -tYk -ybk +fnI +agv bdl bdl bdl -rle -rle +kFO +kFO uys uys uys uys -vMs -gna -vMs -mPJ +gyw +bFX +gyw +hza bJC -ldJ +bMA cfo -qrn +chm bJD chR -qsF -qiO +cjf +bgW bJC -vVa -pan +ckR +ckX cll bTA -hzB +clG clg -dJz +bVq bSJ ien -adT +dFL tcO aaa aaa @@ -112689,32 +112690,32 @@ aaa aaa aaa aaa -kfC +aad aag fTl -kPY -faJ +vrZ +qlu taw wTn -hsQ +kCu cMx -spa -jAE +sdd +iAI cMx wFX cMx -wlM +nDH qbw -vFi +rYU cMx -ygj -vFi +oVo +rYU cMx -kYg +nXV qMI rUN -oYB -wjF +aqg +oOW atn atn atn @@ -112726,32 +112727,32 @@ anP iJs dFN atn -mMY -cro +aOB +aRj rUN hft -qsi +swn oIB -oty -mbt -smY +phj +vEf +cNK oIB xiW -kFW -ejT +mCg +ryJ aPO aPO aPO -rLV -rLV -tZS -rLV -rLV +jei +jei +lYt +jei +jei aPO -rLV +jei fVe aag -uQY +ajZ aaa aaa aaa @@ -112789,7 +112790,7 @@ aaa aaa aaa emA -sqr +sEg ikT aLT aLT @@ -112797,11 +112798,11 @@ aLT aLT brv nuA -eNW -uFr +bgY +aQT aLT -xYd -wMP +aTv +blB oiQ lml aQL @@ -112811,27 +112812,27 @@ aQL oxe tcS mww -saG +sZe bdl -bRZ -kfA -cbe -hhm -jFS +fKT +bGy +kOW +snM +iqo bdl -pjX -icY -cWv -hXg -wlA +clV +crD +kLP +gvU +cyo bdl -nKV -rZc -cSl -daB -pai +hTP +tXj +sgc +xCa +bUy bdl -eAA +eTx ekM cJs pOW @@ -112841,11 +112842,11 @@ bJC bJC cdf jxx -qsF -lMf +cjf +cdP bJC -oKZ -pan +dpO +ckX rXj gfo bSJ @@ -112853,7 +112854,7 @@ bSJ bSJ bSJ cZp -hVJ +xhO tcO aaa aaa @@ -112892,32 +112893,32 @@ aaa aaa aaa aaa -kfC +aad aag fTl -dHH -iEH +hjT +rWb taw oAK -hsQ +kCu cMx -hgf +fVk cMx cMx tvA cMx -ygj +oVo qbw -ygj +oVo cMx -ucD +iVz rAS cMx -lpX +sHI lOn acQ -bRB -qPj +kwd +eDT amx amx amx @@ -112929,32 +112930,32 @@ amx amx mpZ amx -xSB -bRB +aoT +kwd acQ tof -uEo +wCe oIB -mIL -hqN -hGv +cHC +dha +pxj oIB wSB -kgN +hYj yat -lGM -rLV +fPF +jei nNT jwJ -qUn +mgX nZG nZG nZG xGm -rLV +jei fVe aag -uQY +ajZ aaa aaa aaa @@ -112992,71 +112993,71 @@ aaa aaa aaa emA -nwH +jEM ikT aLT -eMh +beT bdr -iFr +bpK aMz bfy -eNW -uFr +bgY +aQT aLT -xYd -wMP +aTv +blB bnt aRT -enr +mUx bpC -ndU +dnE aQL bqc tcS mww -saG +sZe bdl -lwU +fgm bdj rHN kuu -pSx +mDj bdl -kJU -iXN +jre +dXG nqx hzg -rSZ -vdz -tYk +vBU +fIX +fnI ipa fYZ vYC -xLz +noj hpS -xzq +gyE ekM cJs pOW bJC -ldJ +bMA cfo -fPk +chn bJD chR -qsF -lMf +cjf +cdP bJC -oKZ -pan +dpO +ckX cll bTA -cRe +clH oFV -dJz +bVq bSJ -ssI -bVT +vUJ +hCq tcO aaa aaa @@ -113095,32 +113096,32 @@ aaa aaa aaa aaa -kfC +aad aag fTl -faJ -xSg -jhj +qlu +uKl +kiR oxy -fJW -cEd -fJW +oQL +jsu +oQL gqt oxy oxy -quf +vTE qbw qbw -ygj +oVo cMx cMx cMx cMx -lpX +sHI jao -nOP +qhT alO -qcw +ars amx amx aqf @@ -113132,32 +113133,32 @@ amx amx mpZ amx -kTc +aOC alO -lpX +sHI tof -nOP +qhT loP loP loP loP loP -vbs +qej loP loP kNq -tZa +fJp aPO -kzx -mmb -qLL -dLA -lvw +wXl +dJe +unQ +nxe +tjH tVn -eKA +oUx fVe aag -uQY +ajZ aaa aaa aaa @@ -113196,69 +113197,69 @@ aaa aaa emA ikT -nwH +jEM aLT -xKD -bGv +beU +bdv aLT -iwk -bEf -eNW -ikO +bry +bfu +bgY +jVr aLT -epX -wMP -buf -fGY +kXa +blB +chL +lAl aQL -nLu -xov +bsW +xvX aQL bqc noI dJG -saG +sZe bdl -fQw +ntd jCm eqb mLR -lqc +hdE bdl -mqv +krZ ixQ -bed -qdc -dsc -lRy -tYk +kWk +xyY +nwY +bKA +fnI cwo scH nzO -bsf +kxL hpS -xzq +gyE nzt jhs pOW bJC -exT -uYF +cfq +cgv bJC -xyd -fWV -qsF -gdF +wqc +chN +cjf +lok bJC -xvI -pan -fXm -mWo +ihM +ckX +clm +hXY bSJ -xml -mXc +clN +clT bSJ -nLE +xsv gEh tcO aaa @@ -113298,32 +113299,32 @@ aaa aaa aaa aaa -kfC +aad aag fTl -fvK -mEZ +wIu +wXJ taw oNK -uYz -jsJ -nUH +kMa +qIa +iSB oxy -fJW -sOM +oQL +hdy cMx -ygj +oVo qbw -ygj +oVo cMx oaP jhQ cMx -cZR +kYb jao -nOP +qhT inw -qPj +eDT amx amx amx @@ -113335,32 +113336,32 @@ amx amx aBo amx -xSB +aoT inw -lpX +sHI tof -lQt +nii loP -lkH -xFL -wGN -rGJ +iwB +tOC +mHo +vqL xBY -qhj +qwo loP -vxL -kZA +ang +hqu aPO -kzx -tZa -gpf -gpf -gpf +wXl +fJp +iCD +iCD +iCD tVn -rLV +jei fVe aag -uQY +ajZ aaa aaa aaa @@ -113399,20 +113400,20 @@ aaa aaa emA qGC -nwH +jEM aLT aLT aLT aLT -gPO -slS -gFf +bwe +cuY +aPo aLT aLT aQL -syC -itH -uUd +aSa +bnA +xhQ aQL aQL aQL @@ -113420,27 +113421,27 @@ aQL bqc ubQ fpM -xAx +bEk bdl -cDF +tFS bdj bNs nwb -xIN +mrM bdl -ecy +ycH pMJ xnI ayj dWg bdl -wOV -eow -npm -fMc -ooV +oTe +ixN +jaR +mJa +wWP rsK -ezY +cBC feo ekM pOW @@ -113448,20 +113449,20 @@ bJC bJC bJC bJC -ebG -iTJ -fYv +qFG +pvJ +bQD bJC bJC bSJ -wQY -pcn -duh +hss +clp +hfQ bSJ bSJ bSJ bSJ -bAo +goM tfQ tcO aaa @@ -113496,11 +113497,11 @@ aaa aaa aaa aaa -bBr -wLo -wLo -wLo -wLo +aac +aaf +aaf +aaf +aaf aag aag fTl @@ -113508,67 +113509,67 @@ taw taw taw wTn -sKJ -jtY -ofr +wOv +tuJ +iKV oxy -fJW -ovH +oQL +oFr cMx -gey +xnX qbw -ygj +oVo cMx -ygj -ygj +oVo +oVo cMx -lpX +sHI jao -nOP +qhT inw -qPj +eDT amx -nvZ -wgA -hLL -hLL -luO -luO -uvV -cCH +auB +aqh +sqo +sqo +aDh +aDh +mux +aya aBo amx -hJt +wwJ inw -lpX +sHI cNC -nOP +qhT loP -wuy -qaH -tEf -sBC +joG +sDu +kxo +wSn xBY -ecm +lKa loP -kjf -rLV +fvo +jei aPO -kzx +wXl kNq -eeG -rLV -qYj -nML -vbG +jcE +jei +lVR +pHD +dhp fVe aag aag -wLo -wLo -wLo -wLo -plE +aaf +aaf +aaf +aaf +ajY aaa aaa aaa @@ -113604,65 +113605,65 @@ emA ikT ikT aLT -enL -nCi -daa -rtH -ubz -dmC -rVa +vZb +tnY +rAN +tIQ +cic +ceg +mdo mJj -sUu -klR -wQO -vaK -cUc -pUG -jSM +tDZ +nYc +bnB +aVd +aUZ +uqA +bES kcl bqc ubQ uPX -dwH +rHr bdl -tYe -qcg -rsk -tgk -yaG +wIr +aQy +jAB +iYt +bMa bdl -vbw -nmF -nHr -fCM -xpt +rDe +nUa +ufJ +rCK +cTf bdl bdl -bhH -bhH +nPT +nPT bdl bdl bdl -wwy +jLg uEO ekM pOW hNw -ksP -oMP -uov -pOb -tfm -utA -lQC +wos +bMC +fcB +rUh +jLj +wPC +xZU hNw -rEG -aZu -cCK -vSc -ekH -ekH -asb +hmC +rQA +hjs +ivM +hcI +hcI +vPK bSJ cZp gEh @@ -113699,7 +113700,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -113707,63 +113708,63 @@ aag aag aag fTl -fuv -fJW -jhj +hEr +oQL +kiR oxy -sKJ -faJ -vlr +wOv +qlu +qAG oxy -uYz -vhK +kMa +gQu cMx -wlM +nDH qbw -kKD +pTI cMx -ygj -ygj +oVo +oVo cMx -fkP +nWf jao -nOP +qhT inw -afq -bnV -mJG +qHM +emn +rdI alO ptf ptf -xlz -eHg +aBi +aDi alO -fjO +aye aBo amx -oSi +aBs inw -lpX +sHI cNC -nOP +qhT loP -tEf -sBC -tEf -kbo +kxo +wSn +kxo +kdi xBY -tEf +kxo loP -uQa -rLV +nSk +jei aPO -kzx +wXl kNq -rxn -kZA -ewQ -uCz -rLV +cke +hqu +oSR +fZI +jei fVe aag aag @@ -113771,7 +113772,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -113800,28 +113801,28 @@ aaa aaa aaa emA -rAL -saT -qyY -jAl -nwH +hyb +kjY +kcG +tIF +jEM ikT -pqp +aWT aMH beV gWE -bMQ -lwT -thw -rVa +udG +aOK +dRv +mdo mJj ljs -kLY -bGT -qPJ +hsW +mFO +bJE aSE -bfr -jSM +aVf +bES kcl bqc sUk @@ -113835,15 +113836,15 @@ bdl bdl bdl bdl -rFr +xWo bdl bdl bdl bdl -gES +reN dEp -gES -fUS +reN +htk dEp bdl bdl @@ -113851,28 +113852,28 @@ udf iyC pOW hNw -vWP -wQM +sZq +jZv cgy -nyP -dql -lSD +nrw +spS +lBv pXZ hNw -icX -vcK -lgV -udT +bNC +sDM +clr +nvT aMI wGE erG -sFI +ewO sEu -hVJ -mjF -tzW -ovw -dHJ +xhO +ffx +jhK +srl +lWY tcO aaa aaa @@ -113902,7 +113903,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -113910,63 +113911,63 @@ aag aag aag fTl -fuv -oBl +hEr +xBS taw tTG -sKJ -fvK -mas +wOv +wIu +ydf oxy -sKJ -bbT +wOv +ixu cMx -rQp +tNY qbw qbw -quf +vTE qbw qbw -wOO -uAs +rWy +kGS lOn -uEo +wCe alO alO alO alO alO -iFh -rDh -xNB -ljL +axx +amw +anO +aDj ptf -fjO +aye mpZ amx -oSi +aBs alO -lpX +sHI tof -uAs -cIE +kGS +fTF xBY xBY xBY xBY xBY -njy +jGI loP kNq -tZa +fJp nOx -kzx +wXl kNq kNq kNq kNq pAV -rLV +jei fVe aag aag @@ -113974,7 +113975,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -114003,79 +114004,79 @@ aaa aaa aaa emA -oaA +jkN ikT ikT ikT ikT ikT aLT -kyv -ttP -ttP -moX -mFJ -eNW -rVa +aZf +duV +duV +eUA +bfx +bgY +mdo mJj byn -saZ +gip bnt bJH iIR -bfr -jSM +aVf +bES kcl bqc ubQ kwi -vFL +lZM rSR xss -hYh +rLK xss xss -oTN -rgI -rgI -rgI -jSV +uHk +dXb +dXb +dXb +cTX xss xss -rgI -vzM +dXb +ndm xss -iHl -rgI +iFY +dXb xss xss -vFL +lZM kYl ekM pOW hNw -vWP -wQM +sZq +jZv gnu bOQ chR -nEn +cjg urN hNw -icX -pan -jKa -nTJ -tNi -tNi -dRZ +bNC +ckX +vuL +fDh +jGR +jGR +oqu bSJ gEh gEh gEh gEh gEh -hVJ +xhO tcO aaa aaa @@ -114105,7 +114106,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -114113,63 +114114,63 @@ aag aag aag fTl -kZz -iuB +oqc +smw taw oxy -tlw -awT -jPh +rgk +nUT +cnP oxy -sKJ -faJ +wOv +qlu cMx -iHO +qbU qbw -ygj +oVo cMx -ygj -ygj +oVo +oVo btb -lpX +sHI lOn -nOP +qhT alO -wXt -igC -rpn +gKZ +vTv +auL alO -idZ -sor +axy +azh aBk -xSB +aoT ptf -fjO +aye mpZ amx -oSi +aBs alO -thz +uSk cNC -nOP +qhT gdS -sBC -tuH -qcq -qqx +wSn +kXN +fuT +odD xBY -iHA -pQf +mOg +oHx aPO iXB aPO gof -jyz +bVr ivL ivL ivL fVa -rLV +jei fVe aag aag @@ -114177,7 +114178,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -114206,7 +114207,7 @@ aaa aaa aaa emA -heU +fGi ikT aLT aLT @@ -114214,27 +114215,27 @@ aLT aLT aLT aLT -wKZ -rnY -jkb -xpP -rHK +mhI +bjA +xSW +bAd +bCS aLT aLT -iOY -saZ -eyL +ksp +gip +brH chp chp -bfr +aVf aQL aQL -dMy -uCE -aJD +lhs +bww +tHF cvx cvx -vwe +bKJ cvx cvx cvx @@ -114242,35 +114243,35 @@ cvx vub vub vub -qhN +owW vub vub vub cvx cvx cvx -vwe +bKJ cvx cvx cvx -nnK -gna -uMN +xQz +bFX +pmd bJC bJC -gcw +bMD vND vND chR -nEn -xVt +cjg +kIP bJC bSJ -eBT -vSM -sWy -eFn -lya +bTJ +pUf +hji +rPO +ixD bSJ bSJ bSJ @@ -114278,7 +114279,7 @@ bSJ bSJ bSJ gEh -adT +dFL tcO aaa aaa @@ -114308,7 +114309,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -114320,59 +114321,59 @@ taw taw taw wTn -fJW -fJW -lVz +oQL +oQL +lUQ oxy -iqL -snO +tBU +iDs cMx -iHO +qbU qbw -vFi +rYU cMx pVh mSl btb -lpX +sHI jao -nOP +qhT alO -csj +arz atq -xSB +aoT alO -fkC -xiI +aOG +amA kDH -mMY -oKc -rrW -hUI -yix -aIz +aOB +laQ +arr +iav +atc +aOF alO -lpX +sHI cNC -nOP +qhT gdS -keA -pPB +lBg +dXd loP loP -nfW +xeU loP loP kNq -lYK +hnt aPO -uXV -sJe -aFb -sJe -sJe -ryy -rLV +wSx +gYI +wPa +gYI +gYI +rzk +jei fVe aag aag @@ -114380,7 +114381,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -114409,79 +114410,79 @@ aaa aaa aaa emA -nwH +jEM ikT aLT -lsf -lZL -elq -lZL -daa -rtH -rpY +bBg +vPv +oTA +vPv +rAN +tIQ +vme aNQ aOL -hrT -iwG +uIJ +hRd aLT aQL -aeV -jLr +bmh +bnX aRo brA -bfr -nKw +aVf +lQz aQL bqc qIf bqc bbs -nLC +cbh xYP bbs gsm -xPB +bCM rbF cJE -vKC -vmv +bOT +dLt bRe iFD -rFh +vRa vub bPL -xPB +bCM xSM tez gsm -xPB +bCM bbr uPE ekM pOW bJC -tix -wQM +jht +jZv cgy cgy -iJo -oBZ +lbX +uxp bJC bJC -dWI -pan +bSZ +ckX bUp bUN -xHd -vSc -czE -sfY -liK -sfY -ekH +bVb +ivM +mAV +hzu +qNd +hzu +hcI bSJ -hVJ -hVJ +xhO +xhO tcO aaa aaa @@ -114511,7 +114512,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -114519,63 +114520,63 @@ aag aag aag fTl -fJW -gbb -mgs +oQL +mOE +gUG oxy -fJW +oQL cMx cMx -hgf +fVk cMx cMx cMx -njw +uyQ qbw -ygj +oVo cMx cMx cMx cMx -lpX +sHI jao -nOP +qhT alO -csj +arz atq -xSB +aoT alO -cUk -xiI +axA +amA aBl -xSB -tiN -uNs -sas -kxn -fkC +aoT +aFl +arm +aIU +aMq +aOG alO -lpX +sHI tof -nOP +qhT loP loP loP loP -eyT +tGd vyI -uRu -paR +lPB +oHl jWh yat -bZN +rXq yat yat kNq kNq kNq -ixO -eKA +gGb +oUx fVe aag aag @@ -114583,7 +114584,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -114612,78 +114613,78 @@ aaa aaa aaa emA -nwH -nwH +jEM +jEM aLT nuN nuN -eBn +rfa ehx ehx -hvM -rpY +tVq +vme mLF tig -hrT -cuW +uIJ +aPi aLT -sUu -saZ +tDZ +gip uTv bKC bOG -bfr -nem +aVf +iaq aQL bqc qIf bqc bbs -foG +bKD vTS bbs ccQ -vxq +bCN rbF qlz -iyx -uwi +xYf +skn bQX ijQ cLl qlz tez -vxq +bCN ccQ tez ccQ -vxq +bCN bbr uPE ekM pOW bJC -kec -wQM +cjC +jZv lLC nEo nZy -nEn -sAN +cjg +lbf bJC -eno -pan +bTa +ckX iWc cqz -xHd -oPh +bVb +wty pWb pWb -vVM +rYp oEo oEo bSJ -hVJ +xhO lMO tcO aaa @@ -114714,7 +114715,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -114726,59 +114727,59 @@ oxy oxy bCv oxy -fJW +oQL cMx -uYT -woZ -fsT +aOS +gNI +eTm cMx -wlM -ygj +nDH +oVo qbw -ygj -rsn -aVZ -qsd +oVo +oDa +yfn +nkc cMx -lpX +sHI jao -nOP +qhT alO -csj +arz atq -xSB +aoT alO alO -dyl -kls -dyl +alR +aBm +alR alO xBe xBe xBe xBe xBe -lpX +sHI tof -nOP +qhT jWh -rVv -uEG -fAV -isi +eFK +wGd +cZW +pZK hSk hSk -gGo +uIv jWh -byi -jbz -mnx +dnh +bct +iDa yat -ieA -bTK -giP -ixO -rLV +tiY +qAK +xGK +gGb +jei fVe aag aag @@ -114786,7 +114787,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -114815,78 +114816,78 @@ aaa aaa aaa emA -dpw -nwH +oPF +jEM aLT vug vug -fBS +muy vug vug -hvM -rpY -eWB +tVq +vme +lJO uRo -hrT +uIJ aLT aLT hWr -saZ +gip xlk uuj -tub -bfr +bRg +aVf aQL aQL ylN qIf bqc bbs -iEB +ydM xYP bbs ccQ -lTh +cdn rbF qlz -gYc -uwi +gYe +skn bTx bKQ tXM qlz tez -qDG +bpV ccQ tez ccQ -lTh +cdn bbr uPE ekM pOW bJC bJC -iAH -qhi -xcw +kGF +chq +bRf onN -nEn +cjg qki bJC bSJ -hee +bTM bUq -tgA -xHd -oPh +rPE +bVb +wty wWX wWX -iBa +yle wWX wWX bSJ -hVJ +xhO xHa tcO aaa @@ -114917,7 +114918,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -114926,62 +114927,62 @@ aag aag fTl wTn -fJW -nib -fJW -wvk +oQL +qmq +oQL +nXo cMx -uYT -plA -kFc +aOS +guP +mHT cMx -voB -ygj +kpL +oVo qbw -ygj -ygj -ygj -tzR +oVo +oVo +oVo +iIU cMx -thz +uSk jao -uAs -fOE -uNs -img -soY -hui -mmw -lgY +kGS +xHt +arm +ats +auO +awB +axB +ayV auu -xSB -fEs +aoT +aFm xBe -hTC -wvD -sdE +aIV +qqr +arH xBe -lpX +sHI tof -nOP +qhT vXd -emO +duF hSk hSk vyI hSk hSk -gGo +uIv jWh -uAV +tFJ wSB -cxU +uBG yat -rLV -lzg -bLK -ixO -xRq +jei +ltm +oAT +gGb +cmV fVe aag aag @@ -114989,7 +114990,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -115018,78 +115019,78 @@ aaa aaa aaa emA -sQD -uhe +rIV +nvI aLT -cca -qOd -lCU -qOd -cwj -rtH -eFF -wtl +iPS +vAE +iKw +vAE +wMG +tIQ +nTl +efK aMz -xRt -rVa +rGj +mdo mJj -xle -sNy -tCm -tCm -rAa -bfr -jSM +bHp +bIU +tAN +tAN +jOi +aVf +bES kcl bqc qIf bqc bbs -czl +dvs xYP bbs cdm -xPB +bCM rbF qlz -oEK -uwi +fOz +skn bTx bTx dFF qlz tez -xPB +bCM ccQ tez ccQ -xPB +bCM bbr uPE ekM pOW hNw -vWP -tAk -cma -ccB -ict -kGI -lnH +sZq +lef +xRj +wJD +cjE +ozT +pDB hNw -icX -pan +bNC +ckX qgN -jWJ -fhU -vSc -lTu -nHI -duB -nHI -rKj +bTN +sdC +ivM +gEo +scy +vSW +scy +kPJ bSJ -hVJ +xhO eeR tcO aaa @@ -115120,7 +115121,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -115131,13 +115132,13 @@ fTl oxy cMx cMx -aDI +orx cMx cMx -xHC +dtu qbw txf -nHg +ncx whO pJS whO @@ -115145,46 +115146,46 @@ whO whO whO whO -lwq -kgg +bYL +dlT qHD -nOP +qhT alO -vyW -cqL -kdW +arA +att +auS alO -nTt -xiI +lXg +amA aBn -wuz -mwK +aDm +aFn xBe -uwY -ovJ -vJM +azo +aJg +abR xBe -lpX +sHI tof -uEo +wCe jWh -xSI -bWC -vnJ +oih +khE +ctx vyI vyI -cRY -adK +kpQ +vSE jWh -wUQ +dhA iWn -cOz +mnB yat -rLV -lzg -kaC -ixO -rLV +jei +ltm +ejj +gGb +jei fVe aag aag @@ -115192,7 +115193,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -115221,7 +115222,7 @@ aaa aaa aaa emA -sqr +sEg kDd aLT aLT @@ -115229,63 +115230,63 @@ aLT aLT aLT aLT -bQh -eFF +fbb +nTl bwf -uit -ceA -rVa +aMP +bEG +mdo mJj fIM fIM sXw sXw -oNn -bfr -jSM +vfx +aVf +bES kcl -dMy -siG -dMy +lhs +uvh +lhs kFY -hDK -lhm +jmK +bDL bbs ccQ -vxq +bCN rbF vub odN odN -nov +gcN odN odN vub tez -vxq +bCN ccQ tez ccQ -vxq +bCN jhb -egY -gna -mPJ +kAj +bFX +hza hNw -vWP -wxT -uwj +sZq +ltI +vfa wdz wdz nCf nCf hNw -icX -lzE -ehF +bNC +uMS +qmk rtV -cLh -rLf +sgR +tvN bSJ bSJ bSJ @@ -115323,7 +115324,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -115334,60 +115335,60 @@ fTl oxy cMx cMH -ktF +qvF lat cMx -uYT -nEL -obb +aOS +tlM +dan cMx cMx cMx -hgf +fVk cMx cMx cMx cMx cMx -fkP +nWf cNC -nOP +qhT wDM wDM wDM wDM wDM -wxn -xiI +axD +amA aBo -pLz -xNB -dyY -icu -iIX -soy +axe +anO +nFX +atv +auV +amE xBe -lpX +sHI tof -nOP +qhT jWh jWh uUz jWh -cqi -axC +gIJ +qbZ jWh jWh jWh -upU +tFO wSB -bxO +flD yat -uuz -rLV -qYj -nML -vbG +xQe +jei +lVR +pHD +dhp fVe aag aag @@ -115395,7 +115396,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -115424,79 +115425,79 @@ aaa aaa aaa emA -fdf +eTD ikT aLT -lsf -lZL -elq -lZL -daa -rtH -akI +bBg +vPv +oTA +vPv +rAN +tIQ +aNc aNT -xRt -kNF -rVa +rGj +bdC +mdo mJj -qgE -wqg -mXM -mwW -oiC -mpQ -jSM +sEd +wDK +iMr +wuq +bRV +bSe +bES kcl bqc qIf bqc -lEu -khh -dHg -fRk -vQp -dsO -qkT -bkB -cdz -xyM -hDK -vqm -cdz -bkB -vQp -swv -qkT -fRk -yaN -iHn -lEu +bBd +aPr +bfl +bSb +byw +bkU +bAY +pur +bxm +bPM +jmK +bRa +bxm +pur +byw +bzI +bAY +bSb +bEa +bFp +bBd uPE ekM pOW hNw -vWP -qlw -ofG -quN -ixB -quN -ixB +sZq +lwJ +cgA +oaW +yiW +oaW +yiW hNw -icX -nvJ -wMK +bNC +clK +jdm pQN -pvL -vSc -liK -sfY -czE -sfY -ekH +snR +ivM +qNd +hzu +mAV +hzu +hcI bSJ rqz -hVJ +xhO tcO aaa aaa @@ -115526,7 +115527,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -115537,60 +115538,60 @@ fTl lmq cMx rBY -fct +pTY ueY cMx -uYT -woZ -sxx +aOS +gNI +aPg cMx -qbl -evp -wvy -wvy -wvy -wvy -wvy +uiG +rTZ +tfb +tfb +tfb +tfb +tfb ptK -lpX +sHI cNC -nOP +qhT wDM -adx -rTN -mah +aOM +aoW +aty wDM -hbz -xiI +axE +amA aBp -rti -yix -dyY -icu -iIX -soy +aDn +atc +nFX +atv +auV +amE xBe -lpX +sHI cNC -nOP +qhT jWh -mHR -mHR -mHR -isi -fvU -uGF -xsq +xXa +xXa +xXa +pZK +cKL +jbH +rJh jWh -bQr -jJn -son +pld +vhb +tie yat -qVZ -rLV -ewQ -ueE -rLV +cfm +jei +oSR +grd +jei fVe aag aag @@ -115598,7 +115599,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -115627,79 +115628,79 @@ aaa aaa aaa emA -tog +efP ikT aLT cjc cjc -cRh +vUb nuN nuN -hpM -myc +cBs +kiV iSZ -hrT -pja +uIJ +kJi aLT aLT aQL aQL aQL aQL -nwc -nRJ +csZ +odB aQL aQL bqc sUk ade -dCL -gSo -lMk -cOG -pmX -gdz -pmX -pmX -pmX -vqm +bBe +bFq +bfm +bhg +bvF +cdo +bvF +bvF +bvF +bRa bRc -xyM -pmX -pmX -pmX -gdz -pmX -mHH -sDt -gSo -dCL +bPM +bvF +bvF +bvF +cdo +bvF +bCD +bEb +bFq +bBe hWD iyC pOW bJC bJC -oSc -uYG +rbH +cEC bJC bJC bJC bJC bJC bSJ -pZI -sZt +hTc +bUr ycd -oem -oPh +sAc +wty oEo oEo -jVo +yfm fXN fXN bSJ gEh -hVJ +xhO tcO aaa aaa @@ -115729,7 +115730,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -115744,56 +115745,56 @@ cMx cMx cMx cMx -hgf +fVk cMx cMx -whw -sbr +bNM +wkX jhx jhx jhx jhx -hsT -hlo -qNL +dnH +gpc +tzF uez -nOP +qhT wDM -nJN -tah -mGI -cjo -mDg -pLF +uto +aoX +auU +aHu +aFt +lEj nRX -vzX -vur +aDo +aFr xBe -isO -aDp -vJM +nNY +qKi +abR xBe -thz +uSk wHr -qNL -cmB +tzF +dEt soP pDr soP pDr soP eoG -gGo +uIv jWh yat -bZN +rXq yat yat kNq -tZa -sxz -ixO -eKA +fJp +ekz +gGb +oUx fVe aag aag @@ -115801,7 +115802,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -115835,23 +115836,23 @@ ikT aLT cjc cjc -cRh +vUb cjc cjc -hpM -qSx -kRW -sXn -kNF +cBs +bsU +bwg +bCP +bdC aLT -cMQ -jQK -cMQ -jQK -sUu -cqB +pqK +uAW +pqK +uAW +tDZ +vil bpC -qgo +qZX aQL pjP qIf @@ -115881,28 +115882,28 @@ wMI ekM oHt bJC -sAN +lbf cft -hSX -cfv -omA -xUr -omA -sAN +rQV +ohj +wwr +cDs +wwr +lbf bSJ -oSh -roy -mWo -fAG -oPh +gGf +qyi +hXY +sSC +wty fXN fXN -jVo +yfm fXN fXN bSJ -hVJ -adT +xhO +dFL tcO aaa aaa @@ -115932,7 +115933,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -115941,62 +115942,62 @@ aag aag fTl wTn -gbb -kGH -rCT -vre +mOE +sWp +nUm +moL taw mDJ -pAW -igl -vJU -qmt +owg +xUA +ozz +vFv rob -pAW -pAW -tNT -pAW -pAW +owg +owg +nwU +owg +owg ptK -lpX +sHI tof -nOP +qhT wDM -iGI -jNl -nJZ -boO -cCH +aOQ +fxI +nLJ +aHv +aya amx atq -stI -fjC +aDr +aFu xBe -tRd -aVh -nPc +azp +qJf +anV xBe -lpX +sHI cNC -nOP +qhT jWh -xxp -bWC -bWC -bWC -qFI +iqH +khE +khE +khE +ovi iat -qMm +eim jWh kNq -kdg +spd kNq kNq -fMv -rra -jyz -nML -rLV +dVH +cAz +bVr +pHD +jei fVe aag aag @@ -116004,7 +116005,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -116033,79 +116034,79 @@ aaa aaa aaa emA -hIA +hfO ikT aLT -cca -qOd -lCU -qOd -cwj -rtH -vYv -jHX -aqt -kNF -nZq +iPS +vAE +iKw +vAE +wMG +tIQ +btc +bwh +uMl +bdC +dII fZZ fZZ -hTX +viS sXw sXw -cqB +vil bpC qDq -sRT +kbc bqc ubQ bqc bbs -eWq -pJQ -wMz -vko -bnM -vko -vko -vko -gUY +bdw +bfo +rWL +wLm +nHJ +wLm +wLm +wLm +bSa xba -gUY -vko -vko -vko -bnM -vko -iTv -qkO -plj +bSa +wLm +wLm +wLm +nHJ +wLm +lJu +bEd +bFs bbs uPE ekM pOW -lly +fzq oXb cft -hSX +rQV wdz wdz -teU +fDJ bKM bKM -dny -nvJ -pGb -kPV -dJU -vSc -duB -nHI -lTu -nHI -rKj +bZU +clK +qFK +pmq +sUj +ivM +vSW +scy +gEo +scy +kPJ bSJ gEh -dtT +pFr tcO aaa aaa @@ -116135,7 +116136,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -116148,58 +116149,58 @@ oxy tIN oxy oxy -jhj -pAW -pAW +kiR +owg +owg uKV mDJ -whw +bNM iEr -pAW +owg eNi eNi eNi eNi eNi -lpX +sHI tof -uEo +wCe wDM -jNN -lhS -jIS +aOH +aJf +aMw wDM -xHx -cCH +xsl +aya atq -stI -iJl +aDr +aFv xBe xBe xBe xBe xBe -lpX +sHI cNC -xqo +xmP jWh jWh jlQ jlQ jWh -igj +thV uWV -gGo -vrX +uIv +oSx kNq -eKA +oUx kNq kNq -tZa -sxz -kZA -rLV -uhu +fJp +ekz +hqu +jei +qDS fVe aag aag @@ -116207,7 +116208,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -116236,7 +116237,7 @@ aaa aaa aaa emA -oaA +jkN ikT aLT aLT @@ -116244,63 +116245,63 @@ aLT aLT aLT aLT -hOI -yde +sCD +pXl bxB -fWG -wFH -gyV -kHW -kHW -kHW -kHW -kHW -aGt -rnK -rnK -dLW +uWY +wEd +jvp +gBc +gBc +gBc +gBc +gBc +ngA +koC +koC +xGE jno fqw bqc lgy -tkL +ccb xYP -wuG -egr -egr -egr -wgb -egr -egr +bGn +mlm +mlm +mlm +bxn +mlm +mlm xba -egr -egr -wgb -egr -egr -egr -lNM +mlm +mlm +bxn +mlm +mlm +mlm +rXk xYP -eBL +jew laU uPE dEL rzy -gyd -bhi -cEF -xzP -bhi -bhi -bhi -bhi -bhi -gGk -mGk -fmA +uCM +lNw +eFj +iQi +lNw +lNw +lNw +lNw +lNw +erh +rqE +qWt fXN -mRD -gbx +rEv +rll bSJ bSJ bSJ @@ -116308,7 +116309,7 @@ bSJ bSJ bSJ gEh -uBz +kMR tcO aaa aaa @@ -116338,79 +116339,79 @@ aaa aaa aaa aaa -htC -smo -smo -smo +aae +aah +aah +aah aag aag aag fTl -aOJ -fnG -rNc -jsJ -jsJ +pWw +hbE +cbc +qIa +qIa taw ptK -gAQ +afX ptK ptK -whw +bNM rtd -pAW +owg eNi olO wiG nWN eNi -lpX +sHI tof -nOP +qhT wDM wDM wDM wDM wDM -xew -xiI +axI +amA amx -stI -jVI +aDr +aFw inw -rZo -cRR -hfd -dyl -lpX +aJh +arq +ufx +alR +sHI cNC -uEo +wCe jWh hSk hSk -oZT +cRi jWh -dxj +upR fCL -gGo -sWA -tzc -rLV -iRZ -rLV +uIv +vVw +iSV +jei +oYr +jei aPO aPO aPO gtQ -hSM +wiO fVe aag aag aag -smo -smo -smo -qPi +aah +aah +aah +afm aaa aaa aaa @@ -116439,79 +116440,79 @@ aaa aaa aaa emA -rAL -nwH -nwH -nwH -nwH -rAL -nwH +hyb +jEM +jEM +jEM +jEM +hyb +jEM aLT cjc cjc -uiU +uJU cjc cjc aLT lDV fZZ -xul +hEb qDq qDq -tbo +jOx bpC qDq aQL -eBQ -uCE -dMy +nYR +bww +lhs lgy -tGq +bsG xYP -wMz -wWf -wWf -wWf -wWf -wWf -mVH +rWL +dMB +dMB +dMB +dMB +dMB +fsV xba -mVH -wWf -wWf -wWf -wWf -wWf -iTv +fsV +dMB +dMB +dMB +dMB +dMB +lJu xYP -fVw +hLI laU -vMs -aGF -vMs +gyw +uNQ +gyw bJC oXb cfo -hCh +lkM oXb oXb -uFt +oka bKM tEO bSJ fXN fXN -rKj +kPJ fXN fXN bSJ enY -ovw +srl gEh -hVJ -hVJ -hVJ -xRx +xhO +xhO +xhO +jay tcO aaa aaa @@ -116545,71 +116546,71 @@ aaa aaa aaa aaa -kfC +aad aag aag fTl prX -wsd -mAK -xoi -faJ +oYs +odG +biC +qlu taw -gqr +bKm hsr mDJ ptK -whw +bNM iEr -hcE +fhH eNi ueG rPt jyE eNi -lpX +sHI cNC -nOP -gqb -sul +qhT +hwC +rcS amx -hbT +swN alO -uNj -xiI +axL +amA amx -stI -ewM +aDr +aFy inw -vqY +aJi azs atq -dyl -lpX +alR +sHI cNC -nOP +qhT mDG -hWK -gDr +tst +uUe hSk -khs -isi +bSN +pZK fCL -gGo -pEw +uIv +lFA kNq -rLV +jei kNq kNq -rLV -rLV -enk -uGA +jei +jei +gYU +oGi dVR fVe aag aag -uQY +ajZ aaa aaa aaa @@ -116646,71 +116647,71 @@ emA emA emA emA -nwH +jEM ikT -nwH +jEM aLT -cca -qOd +iPS +vAE meY -cca -qOd +iPS +vAE aLT -mXM -wqg -mXM -wqg -dbM -tbo +iMr +wDK +iMr +wDK +rou +jOx bpC -iOY +ksp aQL bqc wqO wxD -rrX +cau bCG cgE -iEj -hDK +bJe +jmK xYP xYP xYP xYP -hDK +jmK xba -hDK +jmK xYP xYP xYP xYP -hDK -nSe +jmK +hcw cgE -eHr -flu +yht +blq ddL eZR uPE bJC -xVt +kIP cfo -hCh -quN -ixB -quN -ixB -xVt +lkM +oaW +yiW +oaW +yiW +kIP bSJ -duB -nHI +vSW +scy oer -duB -nHI +vSW +scy bSJ -xTb +mCE qid -bVT +hCq tcO tcO tcO @@ -116748,7 +116749,7 @@ aaa aaa aaa aaa -kfC +aad aag aag fTl @@ -116758,47 +116759,47 @@ fTl fTl fTl fTl -tiC +qJx hsr mDJ ptK -whw +bNM iEr -pAW +owg eNi iKD rPt rPt eNi -lpX +sHI cNC -nOP -dyl -xiI +qhT +alR +amA atq -hbT +swN alO alO -nxW +cHc atq -hKi +aDs alO alO -shE +aJj aMD atq -dyl -lpX +alR +sHI cNC -nOP +qhT mDG -hjZ -eSf +tZZ +gLz hSk -cqi -qFI +gIJ +ovi fCL -emg +lYk bYn fVe fVe @@ -116812,7 +116813,7 @@ fVe fVe aag aag -uQY +ajZ aaa aaa aaa @@ -116849,9 +116850,9 @@ aaa aaa aaa emA -dpw +oPF ikT -nwH +jEM aLT meY meY @@ -116864,41 +116865,41 @@ aQL aQL aQL aQL -ueA -oAt +pyl +pDt aQL aQL bqc ubQ bqc lgy -gni +ccN xYP -wMz -vko -vko -vko -vko -vko -gUY +rWL +wLm +wLm +wLm +wLm +wLm +bSa xba -gUY -vko -vko -vko -vko -vko -iTv +bSa +wLm +wLm +wLm +wLm +wLm +lJu xYP -nuE +wbV laU uPE vuV uPE bJC bJC -lfA -cgd +vLA +oHc bJC bJC bJC @@ -116911,9 +116912,9 @@ oer oer oer oer -rVJ +uVp gEh -dtT +pFr tcO aaa aaa @@ -116951,7 +116952,7 @@ aaa aaa aaa aaa -kfC +aad aag aag aag @@ -116961,47 +116962,47 @@ aag aag aag cuC -eje +wdJ hsr hsr ptK -ttL +krS rtd -pAW +owg eNi eNi eNi -gqg +gIh eNi -lBP +hGb tof -nOP -dyl -xiI +qhT +alR +amA atq -dIl +sOx alO -hiT -xiI +axM +amA atq -stI -paS +aDr +aFz inw -xiI +amA ayl amx -dyl -lpX +alR +sHI cNC -nOP +qhT jWh jmQ vcu -cXB +lIU jWh -igj +thV uWV -mmZ +tiK bYn aag aag @@ -117015,7 +117016,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -117052,7 +117053,7 @@ aaa aaa aaa emA -joU +wtn ikT ikT ikT @@ -117060,59 +117061,59 @@ ikT ikT ikT ikT -nwH +jEM ikT -nwH +jEM aQL -qgo -qgo -sUu -tbo +qZX +qZX +tDZ +jOx bpC -qgo +qZX aQL bqc ubQ bqc lgy -tkL +ccb xYP -wuG -egr -egr -egr -wgb -egr -egr +bGn +mlm +mlm +mlm +bxn +mlm +mlm xba -egr -egr -wgb -egr -egr -egr -lNM +mlm +mlm +bxn +mlm +mlm +mlm +rXk xYP -eBL +jew laU uPE vuV uPE bJC -sAN +lbf cfo -hCh -sAN -sAN -sAN +lkM +lbf +lbf +lbf bJC gEh -gia +cmN gEh -hVJ +xhO dzX -mYS -hVJ +foS +xhO gEh gEh gEh @@ -117154,71 +117155,71 @@ aaa aaa aaa aaa -htC -smo -smo -smo -smo -smo -smo -smo +aae +aah +aah +aah +aah +aah +aah +aah aag cuC -jUA +evk hsr mDJ ptK -whw +bNM iEr -pAW +owg eNi -gkh -bwk +aWb +dyK vzK wYY -lpX +sHI tof -nOP -dyl -xiI +qhT +alR +amA atq -dIl +sOx alO -hFG -icg +axN +azq auy -dWx -cUB +aDB +aFA inw -aGT +aJl amx atq -dyl -lpX +alR +sHI cNC -nOP +qhT mDG -tOY -sfE +snE +sGL hSk -khs -isi +bSN +pZK fCL -vRr +dbe bYn aag aag aag aag aag -smo -smo -smo -smo -smo -smo -smo -qPi +aah +aah +aah +aah +aah +aah +aah +afm aaa aaa aaa @@ -117255,22 +117256,22 @@ aaa aaa aaa emA -uZb -elQ -nwH -nwH -nwH -nwH -hlF -nwH -nwH -nwH -nwH +pGj +uoj +jEM +jEM +jEM +jEM +fBo +jEM +jEM +jEM +jEM aQL qDq qDq qDq -tbo +jOx bpC qDq bTb @@ -117278,25 +117279,25 @@ bqc ubQ bqc bbs -lbH -gni -wMz -wWf -qmd -wWf -wWf -wWf -mVH +ccd +ccN +rWL +dMB +uVD +dMB +dMB +dMB +fsV xba -mVH -wWf -wWf -wWf -qmd -wWf -iTv -pWO -fbP +fsV +dMB +dMB +dMB +uVD +dMB +lJu +huK +jeQ bbs uPE vuV @@ -117304,22 +117305,22 @@ uPE xSw oXb cfo -hCh +lkM oXb oXb oXb bJC gEh -hVJ +xhO gEh -hVJ +xhO gEh -gzZ -hVJ +hWH +xhO gEh -hVJ -hVJ -ycF +xhO +xhO +rhD tcO aaa aaa @@ -117365,55 +117366,55 @@ bdH bdH bdH bdH -kfC +aad cuC -uMz -qtT -kps +apB +cBd +jRK ptK -whw +bNM iEr -pAW +owg eNi -qfS +tii eJX -hbP +sAC wYY -lpX +sHI tof -nOP -dyl -xiI +qhT +alR +amA amx apa alO -fox -eTf +axO +azr aBr -pIH -rUE +aDC +aFB alO -pOc +aJk amx atq -dyl -lpX +alR +sHI cNC -nOP +qhT mDG -hjZ -gZI +tZZ +cBj hSk -cqi -qFI +gIJ +ovi fCL -mmZ +tiK bYn aag aag aag aag -uQY +ajZ opJ bdH bdH @@ -117468,18 +117469,18 @@ emA emA emA ikT -nwH +jEM aQL qDq qDq qDq -oES -xeQ -xeQ +osA +cHl +cHl bTb -dMy -uCE -dMy +lhs +bww +lhs bbs cdp cdp @@ -117501,18 +117502,18 @@ fJO fJO fJO bbs -vMs -aGF -vMs +gyw +uNQ +gyw xSw -thn -thn -eum +ejo +ejo +niY oXb oXb oXb bJC -hVJ +xhO gEh gEh tcO @@ -117568,55 +117569,55 @@ bdH bdH bdH bdH -kfC +aad cuC ptK ptK ptK ptK -whw +bNM iEr -pAW +owg eNi -rPk +sjj fzP -hbP +sAC wYY -lpX +sHI cNC -nOP -dyl -xiI +qhT +alR +amA atq fhf alO -iiI -jxf +axQ +azt auA -eZi -ppU +aDD +aFD inw -kaA -kaA -pDY -dyl -lpX +xEO +xEO +lnP +alR +sHI cNC -uEo +wCe jWh qLs qLs -oZT +cRi jWh -dxj +upR uWV -gGo +uIv bYn bYn bYn aag aag -uQY +ajZ bdH bdH bdH @@ -117671,11 +117672,11 @@ aaa aaa emA qGC -rAL +hyb aQL -iOY -iOY -dbM +ksp +ksp +rou qDq qDq qDq @@ -117690,13 +117691,13 @@ bqc bqc dYb bqc -cfV +fpI bqc bqc -tST +tGS uPE uPE -kKe +uuT uPE fRL uPE @@ -117711,13 +117712,13 @@ xSw oXb oXb oXb -xVt -uuW -xVt +kIP +qer +kIP bJC -hVJ -fmY -dtT +xhO +wYd +pFr tcO aaa aaa @@ -117775,47 +117776,47 @@ hzc hzc hzc cuC -vIJ -xyR -whw +dbw +uGQ +bNM rtd -pAW +owg eNi -xjI +fcM uzE qsL -mGV -jKc +nim +noe pqY -nOP -dyl -xiI +qhT +alR +amA atq cSm alO -rJG -xiI +elf +amA atq aDE asT -oiv -vYU -vYU -iIp -dyl -lpX +aHw +iWR +iWR +kbx +alR +sHI cNC -nOP +qhT jWh jWh jlQ jlQ jWh -fgo +lhJ fCL -gGo -pyo -oRb +uIv +oXJ +kPR bYn hzc hzc @@ -117874,14 +117875,14 @@ aaa aaa emA ikT -nwH +jEM aQL aQL aQL aQL -iOY -dbM -iOY +ksp +rou +ksp aQL bqc qas @@ -117893,13 +117894,13 @@ fLf reu reu reu -rhn +kkN reu reu -gGG +uTP kEE kEE -mhS +dCM kEE kEE kEE @@ -117911,9 +117912,9 @@ wzJ nmH xui bJC -xVt -uuW -xVt +kIP +qer +kIP bJC bJC bJC @@ -117974,55 +117975,55 @@ bdH bdH bdH bdH -vxF +yjq bZc iHc -rpy -wtA +sbq +rLk hsr -whw +bNM iEr -pAW +owg eNi -sVF -uTj -mRY +xlC +gyO +kTN eNi -thz +uSk cNC -nOP -dyl -xiI +qhT +alR +amA atq -rlE -iSX +civ +dof atq -uNs -yix -yix -yix +arm +atc +atc +atc inw -kaA -kaA -cXo -dyl -lpX +xEO +xEO +aOV +alR +sHI cNC -nOP +qhT jWh -rfg -rbO +wFQ +bop vyI -xdR -igj +jnp +thV fCL -gGo +uIv hSk -sWA -cTz +vVw +jzD iHc bZc -fHu +mZF bdH bdH bdH @@ -118077,10 +118078,10 @@ aaa aaa emA ikT -nwH -nwH -bmS -nwH +jEM +jEM +hYf +jEM oBr oBr oBr @@ -118096,13 +118097,13 @@ mww nci nci bqc -kIJ +rVC bqc bqc -tST +tGS uPE uPE -wpT +tIl uPE cJs cJs @@ -118118,12 +118119,12 @@ bJC bJC bJC bJC -hVJ -hVJ -hVJ +xhO +xhO +xhO gEh -hVJ -lVn +xhO +xfq tcO aaa aaa @@ -118177,55 +118178,55 @@ bdH bdH bdH bdH -vxF +yjq jgw wbJ -rpy -wtA +sbq +rLk hsr -whw +bNM iEr -hcE +fhH eNi -aCr -fOh -tQB +oNb +iFC +qAA eNi -lpX +sHI tof -nOP -dyl -sYq -yix -rlE -bRB +qhT +alR +arK +atc +civ +kwd atq atq -xiI -thY -opg +amA +aDH +aFI alO -lLj -tqn -qkS -dyl -lpX +aJq +aMG +aOW +alR +sHI cNC -nOP +qhT jWh -wFr -rbO +bXy +bop vyI vyI vyI fCL -gGo +uIv hSk -sWA -cTz +vVw +jzD wLi jgw -fHu +mZF bdH bdH bdH @@ -118280,25 +118281,25 @@ aaa aaa emA kAv -nwH +jEM ikT ikT -nwH -nwH -emu +jEM +jEM +gCu ikT ikT oBr oBr -djU +qPn oBr oBr -vtf -urn +jxX +knl pum -dOp -wZi -wZi +jAj +kKY +kKY oJk lNR lNR @@ -118306,27 +118307,27 @@ oJk lNR lNR oJk -dAo -nxa -rmT +cNm +oGh +far vDo -kPe -kjd +nnr +rKt ljv ljv -dsi +sUi ljv ljv -hVJ -hVJ -hVJ -hVJ -hVJ -hVJ -hVJ -hVJ -hVJ -ovw +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +srl tcO aaa aaa @@ -118384,47 +118385,47 @@ hzc hzc hzc cuC -uuq -xyR -whw +vvy +uGQ +bNM rtd -pAW +owg eNi eNi eNi eNi eNi -lpX +sHI tof -nOP +qhT alO alO alO alO alO -iki -iki -tui -iGb -oho +azi +azi +ets +kvh +rka alO alO alO alO alO -lpX +sHI cNC -nOP +qhT jWh -rfg -rbO +wFQ +bop vyI -eRb -igj +wKc +thV uWV -gGo -pyo -jbs +uIv +oXJ +uGc bYn hzc hzc @@ -118482,54 +118483,54 @@ aaa aaa aaa emA -hzk -kvB -nwH -nwH -nwH -nwH -emu -nwH -nwH -qVi -nwH -nwH -nwH +qFS +pPG +jEM +jEM +jEM +jEM +gCu +jEM +jEM +tXn +jEM +jEM +jEM oBr oBr sqg -hOg +rPQ sqg oJk oJk oJk -iMF -lbD -mvp -bKv -nLl +oRW +mxT +pHc +eVE +jMy oJk oJk oJk sqg -weT +mgu sqg ljv ljv -hVJ +xhO gEh -hVJ -hVJ +xhO +xhO gEh gEh gEh -hVJ -hVJ -hVJ -hVJ +xhO +xhO +xhO +xhO gEh -rvQ -eLj +aEr +keO tcO aaa aaa @@ -118583,24 +118584,24 @@ bdH bdH bdH bdH -kfC +aad aag aag cuC cuC cuC -whw +bNM iEr -pAW -pAW -yhc -pAW -pAW +owg +owg +dWX +owg +owg ptK -vAV -cCc -uTq -phX +knU +oOZ +hdP +aqq aPa eky eky @@ -118614,24 +118615,24 @@ alO eky eky aPa -phX -vAV -cCc -jgY +aqq +knU +oOZ +doX jWh -mHR -mHR -mHR -mHR -isi +xXa +xXa +xXa +xXa +pZK fCL -gqn +uTZ bYn bYn bYn aag aag -uQY +ajZ bdH bdH bdH @@ -118686,48 +118687,48 @@ aaa aaa emA twp -rpt +iyE ecb ikT ikT ikT ctp ecb -nwH -nwH -nwH -nwH +jEM +jEM +jEM +jEM ikT ikT oBr -poC +fcS gdJ -sSo +oyR oJk -fJK -iSF -paF -oOb -amj -aNg -iPW -vkF -kgI +nHL +wfx +ijf +osI +qXk +fie +tRs +pqP +fqC oJk -kBt +ppn nAY -hZF +cjt ljv ceY gIm gEh gEh gEh -hVJ -vJA -hVJ +xhO +wra +xhO gEh -hVJ +xhO gEh gEh sOD @@ -118786,55 +118787,55 @@ bdH bdH bdH bdH -htC -smo -smo -smo +aae +aah +aah +aah aag uMc -qmt +vFv wOt odl jhx keR jhx keR -pOS -qNL +dwI +tzF eIY -oju -ibU +vER +hal uYg nau uYg uYg -fzL -iGE -iGE -iGE -kFF +bXf +aDO +aDO +aDO +gQO uYg uYg nau uYg -ibU -mDc +hal +sVv eIY -qNL -fCs +tzF +mPh soP tWi soP pDr tWi tpd -qMm +eim pql aag -smo -smo -smo -qPi +aah +aah +aah +afm bdH bdH bdH @@ -118898,33 +118899,33 @@ vgw sqg sqg sqg -fCC +mpP sqg oBr qGC oBr -poC +fcS gdJ -sSo +oyR oJk uZF xoj xoj -oOb -amj -aNg +osI +qXk +fie pUj xoj sfV oJk -jcx +pkA nAY -hZF +cjt ljv gEh ljv sqg -fCC +mpP aep aep aep @@ -118993,47 +118994,47 @@ aaa aaa aaa aaa -kfC +aad uMc -whw -tCi -pxh -wme -mbN -mbN -mNd +bNM +rmf +uZH +bFt +kPG +kPG +cVw ptK -jea -oHW -nax -phX +eJg +bkb +pvi +aqq eky aNl eky eky -kQl +nCT vsh vsh vsh -wXv +ydY eky eky aNl eky -phX -jea -pir -nax +aqq +eJg +lqL +pvi jWh -deS +tim uWV -jLO -pzi -oKC -luV -gGo +ttd +nLk +rCD +eYR +uIv pql -uQY +ajZ aaa aaa aaa @@ -119094,47 +119095,47 @@ aaa aaa aaa aaa -kfC +aad aag aag vgw -uTK -cCJ +wct +hqc sqg rwB lKM sqg nSq oBr -hCN +sKf gdJ -hZF +cjt pRZ -wLT -wLT -wLT -oTw -qhB -dFJ -wLT -wLT -wLT +ish +ish +ish +kzC +jUl +wud +ish +ish +ish pRZ -poC +fcS nAY -hBX +jOE ljv mPc sqg -vdd -xxg +qEL +vmE ggQ afk afk dKL aag aag -uQY +ajZ aaa aaa aaa @@ -119195,30 +119196,30 @@ aaa bdH bdH bdH -bBr +aac aag cuC -gTQ -xIb +blJ +pfc ptK ptK ucp -dkf +cIW ptK ptK xga -jrk +kgV xga aHe jlT exi eky eky -ffR -hNc -hNc -hNc -ffR +eAC +aBu +aBu +aBu +eAC eky eky ins @@ -119229,15 +119230,15 @@ eZm eZm jWh jWh -oTU +sWC jWh jWh jWh -udW -uFc +jAJ +lAu bYn aag -plE +ajY aaa aaa aaa @@ -119297,47 +119298,47 @@ aaa aaa aaa aaa -kfC +aad aag aag vgw -uTK -cCJ +wct +hqc sqg -mbI +eKy wQA sqg -nwH +jEM oBr -kka +uYn jaM -ept -sPL -lel +oXM +kvf +rDy uVc bxN -gKx -sOJ -aws +cYN +nhr +vuD skL dTr -ajg -wYk -eSi +gfG +mkP +muQ ojh -gIL +nxx ljv -hVJ +xhO sqg -xkQ -xOS +gEC +skC aWZ bLx bMJ dKL aag aag -uQY +ajZ aaa aaa aaa @@ -119401,13 +119402,13 @@ bdH cuC cuC cuC -whw -aMi +bNM +ofK ptK -ijo -tgY -iJd -bQP +uXL +gPc +trB +exy ptK fLl fLl @@ -119428,16 +119429,16 @@ aNl eky rqj eZm -shv -hOs +jYm +aZI jWh duz -aOD -kLd +hXG +htG doU jWh -duc -gGo +lbB +uIv bYn bYn bYn @@ -119500,47 +119501,47 @@ aaa aaa aaa aaa -htC -smo -smo +aae +aah +aah vgw -oXt -cCJ -cCJ -pqL +utn +hqc +hqc +eqL vxu sqg -fCC +mpP sqg -hNI +qWQ gdJ -hZF +cjt pRZ -edN -edN -mJA -bup -kPK -xDR -tmw -wCl -edN +wuB +wuB +qAs +dIH +nKP +uTV +sHx +vgv +wuB pRZ -poC +fcS nAY -hZF +cjt sqg -fCC +mpP sqg -dMr -jxc +efC +yaF aep aep aep dKL -smo -smo -qPi +aah +aah +afm aaa aaa aaa @@ -119602,47 +119603,47 @@ bdH bdH bdH cuC -qbl -wvy -mau -aMi +uiG +tfb +rFy +ofK ptK -ijo -pdF -xqW -pWI +uXL +eet +fcP +pDh ptK aqZ aqZ -wAD -oya -oya -nJr -nza +ptQ +aMT +aMT +dPm +qeF aHe aHe -kwY -oOh -nRB +aDX +yge +aEm aHe aHe -kTu -nJr -oya -oya -cGh -nPo -nPo +okg +dPm +aMT +aMT +hbp +mwP +mwP jWh axR -aYh -lkn +mIP +tcZ fWi jWh -duc -fvU -mHR -lfF +lbB +cKL +xXa +xoO bYn aaa aaa @@ -119707,36 +119708,36 @@ aaa aaa aaa vgw -kCK -cCJ -cCJ -hEE -iTo +noP +hqc +hqc +xNg +spH sqg aFe sqg -qKU +scE gdJ -mNC +acy oJk -rwA +jRc xoj eKQ -oOb -ooZ -aNg +osI +xrI +fie fsR lkV -mvF +quS oJk -bXi +bcM nAY -hJd +mFP sqg pCq sqg -xkQ -aYB +gEC +unx ggQ bLy bLy @@ -119805,47 +119806,47 @@ bdH bdH bdH cuC -whw -tCi -mHw -nhS +bNM +rmf +luY +ncp ptK -grr -dxG -qGT -qsr +cQg +wxj +lht +rYv ptK -jvJ -vDy +haO +pKB fLl svf arV wZX eky aDQ -pDi +ayi eky aBx eky -dAJ +jlX aDQ eky wZX arV vUh eZm -wUM -nPo +xUy +mwP jWh vpv -lKD -iDo +pgw +rmE fWi jWh -hNt -ray -luV -gGo +xPZ +pcv +eYR +uIv bYn aaa aaa @@ -119910,36 +119911,36 @@ aaa aaa aaa vgw -rCr -kzh -kzh -oeG -iRO -pec -iyi -pec -vzW +gOC +nou +nou +dQA +sKM +uuD +eYD +uuD +bSH gLD -hZF +cjt oJk oJk lwp xoj -oOb +osI rYh -aNg +fie xoj -gUB +ehc oJk oJk -vFN +gNO vTT -xjc -gem -vrl -gem -mLQ -scZ +heS +uPP +hlH +uPP +wVA +hJg aWZ bLz bMK @@ -120008,17 +120009,17 @@ bdH bdH bdH cuC -gmI -aMi +aeM +ofK ptK ptK ptK ptK ptK -gAQ +afX ptK ptK -jvJ +haO fLl fLl lDn @@ -120026,11 +120027,11 @@ arV wZX eky aDQ -wVc +pyy eky eky eky -pYp +dLc aDQ eky wZX @@ -120038,17 +120039,17 @@ arV wkA eZm eZm -nPo +mwP jWh jWh -fmg +kLc jWh jWh jWh jWh jWh -duc -dxa +lbB +oCf bYn aaa aaa @@ -120116,33 +120117,33 @@ dKL aep aep aep -wtp -cCJ +ikv +hqc vZf ykI vZf -lBI +aEo gdJ -iOm -diL +trh +hgo oJk -jbw +sVT xoj -oOb +osI rYh -aNg +fie xoj -fGq +bmp oJk -oWC -gwB +haD +jTB nAY -iZA +iUm vZf bYF vZf -gZh -xSy +fiQ +pgN aep aep aep @@ -120211,19 +120212,19 @@ bdH bdH bdH uMc -whw -aMi +bNM +ofK fLl -jjZ -jvJ -sjS -jvJ +uxl +haO +ebf +haO aqZ -rRi -jvJ -usd +tot +haO +qqS fLl -jzQ +xrq vVu arV wZX @@ -120239,19 +120240,19 @@ eky wZX arV oIt -jzQ +xrq eZm -fiL -nPo -cKx +qHG +mwP +xQW vJR -nPo -vqN -jha -kKW +mwP +hkz +ckj +oaw eZm -duc -gGo +lbB +uIv pql bdH bdH @@ -120319,33 +120320,33 @@ dKL afk aWo aWZ -sGR -dQt +iyF +vrR sqg -fCC +mpP sqg -idy +dYC gdJ elx -hZF +cjt pRZ xoj xoj -oOb -ooZ -aNg +osI +xrI +fie xoj xoj pRZ -poC +fcS hMG qQy -sNA +erF sqg -fCC +mpP sqg -jnm -ryh +fLu +hEw aWZ bLA afk @@ -120414,47 +120415,47 @@ bdH bdH bdH uMc -whw -aMi +bNM +ofK fLl -jjZ -jvJ -lIq -jvJ +uxl +haO +uLG +haO aqZ -mrr -jvJ -edL +pbo +haO +xLn fLl -eic -lCA -oya -kJC -qkm -lBr +vlk +mKy +aMT +svl +pzJ +qDt uYg vsh oPf vsh uYg -lBr -qkm -vhM -oya -mky -eic +qDt +pzJ +sQO +aMT +wNS +vlk eZm -pSb -alN -nPo +oHg +uiK +mwP vJR -nPo -xHv -iPK -eVZ +mwP +jrB +eoK +xTG eZm -duc -gGo +lbB +uIv pql bdH bdH @@ -120522,33 +120523,33 @@ dKL aVo aWp aWZ -fds -xkQ +qAB +gEC sqg -eIu +aIh eTb -jjb +kkW iwf uFg rEm -mej -jsY -jsY -taF -anH -wnK -jsY -jsY -cGE +rnF +oFm +oFm +fVo +jUF +nxb +oFm +oFm +glH vXo gWu xMl -neh +lft eTb -eIu +aIh sqg -vLP -hZF +siN +cjt ggQ afk bML @@ -120617,17 +120618,17 @@ bdH bdH bdH uMc -whw +bNM rtd -wAD +ptQ aqZ aqZ aqZ aqZ aqZ -sJh -jvJ -sLy +leM +haO +iYm fLl fLl wRk @@ -120647,17 +120648,17 @@ eky wuk eZm eZm -ieG -sES -nPo +bjt +eIN +mwP ksw ksw ksw ksw ksw -cGh +hbp uWV -gGo +uIv pql bdH bdH @@ -120725,33 +120726,33 @@ dKL afk afk ggQ -cYV -lOi +pYS +ivS sqg ppM eTb -lvJ -xsh +hbs +xJV elx jnI oJk -iby -adc -iAS -odc -oMc -iax -ryu +xef +dPQ +ams +eni +nri +gMd +toO oJk nYn elx -eev -pDs +mDL +fSF eTb ppM sqg -iKv -wOy +lvh +iks aWZ bLC afk @@ -120820,23 +120821,23 @@ bdH bdH bdH cuC -gTQ -xIb +blJ +pfc fLl fLl fLl fLl -xlA +rht aqZ aqZ aqZ aqZ aqZ -wAD -vUa -gCM -jae -stW +ptQ +qYG +atM +bGc +atK aHe aHe aHe @@ -120844,23 +120845,23 @@ aHe aHe aHe aHe -gCM -jae -stW -vUa -cGh +atM +bGc +atK +qYG +hbp ksw ksw rHB ksw vJR -axZ +rPq eZm eZm eZm eZm -udW -uFc +jAJ +lAu bYn bdH bdH @@ -120928,15 +120929,15 @@ dKL dKL aep aep -nSR -xkQ +mkL +gEC sqg ppM eTb hsy hsy -rgH -nRd +baJ +kbw hsy ldc lNR @@ -120946,15 +120947,15 @@ lNR lNR ldc hsy -fZu -eDw +foC +kph hsy hsy eTb eUe sqg -sGW -iOm +wWl +trh aep aep dKL @@ -121023,11 +121024,11 @@ aaa aaa bdH cuC -whw -fhV -wvy -wol -gqu +bNM +tgK +tfb +wuT +lMx gJF gJF gJF @@ -121037,19 +121038,19 @@ gJF gJF gJF aPw -pJn +avu mhG -rdk -rjw +cFn +cYu aHe -xbX -rHj -hUZ +fdX +wcR +xJh aHe -eCg -oFk +qYu +dxK dPC -eJP +aMU aPw wxy wxy @@ -121059,11 +121060,11 @@ wxy wxy wxy wxy -dma -rRS -mBg -uQy -gGo +jFY +qKY +jHL +wOK +uIv bYn bdH bdH @@ -121129,37 +121130,37 @@ aaa aaa bdH vgw -mQi -rSw -nYt -mgG +usZ +wpS +fZA +fEe sqg ppM ppM hsy -bqV -nsZ -xWC +shL +uXk +mlF hsy -uRw -wBe -wBe -mTE -wBe -wBe -uRw +ckZ +hmv +hmv +dTS +hmv +hmv +ckZ hsy -bAR -nsZ -ldq +tos +uXk +tkn hsy -eIu +aIh ppM sqg -mgG -owi -kMl -roM +fEe +nqW +kfI +vFH vgw aaa aaa @@ -121226,11 +121227,11 @@ bdH bdH bdH cuC -ofl -uDP +riJ +kHY uhM -fiU -mai +kdv +lkm cuC aag aag @@ -121240,19 +121241,19 @@ aag aag aag aPw -mpG -hNc -hdH -oya -lGZ -iGE -iGE -iGE -lGZ -oya -erv -hNc -eyf +aqJ +aBu +odu +aMT +aEg +aDO +aDO +aDO +aEg +aMT +odV +aBu +aqp aPw aag aag @@ -121262,11 +121263,11 @@ aag aag aag bYn -oUY -vIr +dRs +uAl rDb -rft -jsg +qjV +rID bYn bdH bdH @@ -121337,27 +121338,27 @@ vgw vgw vgw vgw -eIu -eIu +aIh +aIh hsy -sgY -nsZ -xWC -uDf -rXO -pDp -pDp -pDp -pDp -pDp -qgS -uDf -bAR -nsZ -sgY +wed +uXk +mlF +jWb +unZ +aPU +aPU +aPU +aPU +aPU +fbu +jWb +tos +uXk +wed hsy -tpp -ukl +qBS +lib vgw vgw vgw @@ -121430,45 +121431,45 @@ bdH bdH cuC cuC -llT -chT -ctV +umy +iKZ +pnL cuC cuC -cLH -cLH -cLH -cLH -cLH -cLH -odw +mNX +mNX +mNX +mNX +mNX +mNX +cus aPw aPw -gCM -jae -stW -pJn -oya +atM +bGc +atK +avu +aMT arV -oya -eJP -gCM -jae -stW +aMT +aMU +atM +bGc +atK aPw aPw -cLH -cLH -cLH -cLH -cLH -cLH -mBz +mNX +mNX +mNX +mNX +mNX +mNX +qOk bYn bYn -aYO -qGo -jsg +cWE +kHS +rID bYn bYn bdH @@ -121534,8 +121535,8 @@ aaa aaa aaa bdH -htC -smo +aae +aah aag aag aag @@ -121543,21 +121544,21 @@ nic tmQ ppM hsy -jjg -uTp +txS +bVN oGJ -sga -fGL -jEe -kLu -kLu -kLu -bnO -vlP -qRg +xpZ +llK +mVr +mZL +mZL +mZL +gSa +coH +oTO uqh -lKo -wyb +iAE +sct hsy iWa fZR @@ -121565,8 +121566,8 @@ nic aag aag aag -smo -qPi +aah +afm aaa aaa aaa @@ -121631,13 +121632,13 @@ bdH bdH bdH bdH -kfC +aad cuC -jDM +mkH rtd -xqW +fcP cuC -uQY +ajZ xVk xVk xVk @@ -121645,21 +121646,21 @@ xVk xVk xVk xVk -kfC +aad aPw -teJ +vgD mhG -hLZ -fio -qkm +had +eAL +pzJ oPf -qkm -hLZ -fio +pzJ +had +eAL dPC -qPL +ihX aPw -uQY +ajZ xVk xVk xVk @@ -121667,13 +121668,13 @@ xVk xVk xVk xVk -kfC +aad bYn -xrf +kcA uWV -gGo +uIv bYn -uQY +ajZ bdH bdH bdH @@ -121739,35 +121740,35 @@ aaa aaa aaa bdH -kfC +aad aag aag nic -eIu -eIu +aIh +aIh hsy -vxZ -nsZ +fCT +uXk rae -roO -qop -xYV -wBe -wBe -wBe -mSE -qop -fuN +jIV +pzM +mtZ +hmv +hmv +hmv +fQn +pzM +nac xNf -nsZ -uxi +uXk +slv hsy -eIu -eIu +aIh +aIh nic aag aag -uQY +ajZ aaa aaa aaa @@ -121834,13 +121835,13 @@ bdH bdH bdH bdH -kfC +aad cuC -lDJ +vRu ngU -foJ +ssU cuC -uQY +ajZ xVk xVk xVk @@ -121848,21 +121849,21 @@ xVk xVk xVk xVk -kfC +aad aPw -mpG -gZq -eyf -pJn +aqJ +aBA +aqp +avu eky -nJr +dPm eky -eJP -mpG -gZq -eyf +aMU +aqJ +aBA +aqp aPw -uQY +ajZ xVk xVk xVk @@ -121870,13 +121871,13 @@ xVk xVk xVk xVk -kfC +aad bYn -igj +thV uWV -gGo +uIv bYn -uQY +ajZ bdH bdH bdH @@ -121942,35 +121943,35 @@ aaa aaa aaa bdH -kfC +aad aag aag nic ppM ppM hsy -siZ -vQO +igs +nCn oGJ -cui -jtM -nNW -fgu -wBe -jwf -cat -rBr -gFA +uSW +kzO +vaZ +kYL +hmv +sCV +rjO +suY +pdK uqh -cEY -uxi +pJr +slv hsy -eIu -eIu +aIh +aIh nic aag aag -uQY +ajZ aaa aaa aaa @@ -122037,13 +122038,13 @@ bdH bdH bdH bdH -kfC +aad uMc -ruK +gbs iEr -qVR +hFw uMc -uQY +ajZ xVk xVk xVk @@ -122051,21 +122052,21 @@ xVk xVk xVk xVk -kfC +aad aPw aHe aHe aHe -tFs +mtD eky wZX eky -hpJ +nKq aHe aHe aHe aPw -uQY +ajZ xVk xVk xVk @@ -122073,13 +122074,13 @@ xVk xVk xVk xVk -kfC +aad pql -igj +thV fCL -gGo +uIv pql -uQY +ajZ bdH bdH bdH @@ -122145,27 +122146,27 @@ aaa aaa aaa bdH -kfC +aad aag aag nic -eIu +aIh ppM hsy hsy -iAf -xWC -nsZ -nDX -bnO -xYV -wBe -mSE -bbH -kco -nsZ -bAR -uxi +wTB +mlF +uXk +hmw +gSa +mtZ +hmv +fQn +wSV +ulp +uXk +tos +slv hsy hsy ppM @@ -122173,7 +122174,7 @@ eUe nic aag aag -uQY +ajZ aaa aaa aaa @@ -122240,13 +122241,13 @@ bdH bdH bdH bdH -kfC +aad uMc -eGi +nrO iEr -xqW +fcP uMc -uQY +ajZ xVk xVk xVk @@ -122254,21 +122255,21 @@ xVk xVk xVk xVk -kfC +aad aPw aHe aHe aHe -pJn +avu eky wZX eky -eJP +aMU aHe aHe aHe aPw -uQY +ajZ xVk xVk xVk @@ -122276,13 +122277,13 @@ xVk xVk xVk xVk -kfC +aad pql -igj +thV fCL -gGo +uIv pql -uQY +ajZ bdH bdH bdH @@ -122348,35 +122349,35 @@ aaa aaa aaa bdH -kfC +aad aag aag nic -eIu -eIu -eIu +aIh +aIh +aIh hsy -aJL -xWC +ygP +mlF hsy -kRt -mSE -xYV -wBe -mSE -xYV -wBe +hcX +fQn +mtZ +hmv +fQn +mtZ +hmv hsy -nYo -aJL +beL +ygP hsy -uMm -eIu -eIu +cWb +aIh +aIh nic aag aag -uQY +ajZ aaa aaa aaa @@ -122443,13 +122444,13 @@ bdH bdH bdH bdH -kfC +aad uMc -pIA +aVC iEr -xqW +fcP uMc -uQY +ajZ xVk xVk xVk @@ -122457,21 +122458,21 @@ xVk xVk xVk xVk -kfC +aad jbq -gYy -tUF -iGE -dFI +kRg +uRs +aDO +qqu eky aNl eky -dRy -iGE -dAW -gYy +dFk +aDO +nPY +kRg jbq -uQY +ajZ xVk xVk xVk @@ -122479,13 +122480,13 @@ xVk xVk xVk xVk -kfC +aad pql -igj +thV fCL -gGo +uIv pql -uQY +ajZ bdH bdH bdH @@ -122551,7 +122552,7 @@ aaa aaa aaa bdH -kfC +aad aag aag nic @@ -122559,27 +122560,27 @@ ppM ppM ppM hsy -cvK -dug +ylh +opH hsy -jjE -mSE -nrS -pDp -cat -xYV -frn +pvI +fQn +qoR +aPU +rjO +mtZ +njS hsy -eoe -cvK +iEw +ylh hsy -mGg +dDT ppM -mGg +dDT nic aag aag -uQY +ajZ aaa aaa aaa @@ -122646,13 +122647,13 @@ bdH bdH bdH bdH -kfC +aad cuC -vjc +mJx rtd -pkf +odb cuC -uQY +ajZ xVk xVk xVk @@ -122660,10 +122661,10 @@ xVk xVk xVk xVk -kfC +aad jbq -dKk -fwr +hBL +dID eky eky nJu @@ -122671,10 +122672,10 @@ aNl eky eky eky -qBo -dKk +etn +hBL jbq -uQY +ajZ xVk xVk xVk @@ -122682,13 +122683,13 @@ xVk xVk xVk xVk -kfC +aad bYn -igj +thV uWV -dxa +oCf bYn -uQY +ajZ bdH bdH bdH @@ -122754,35 +122755,35 @@ aaa aaa aaa bdH -kfC +aad aag aag nic nic -iFl -eIu +wsw +aIh hsy -cvK -xWC +ylh +mlF hsy -wBe -jtp -jtM -qop -dxt -rUn -wBe +hmv +eZp +kzO +pzM +hip +ptZ +hmv hsy -bAR -cvK +tos +ylh hsy -tpp +qBS piJ nic nic aag aag -uQY +ajZ aaa aaa aaa @@ -122851,11 +122852,11 @@ bdH bdH cuC cuC -eNH +dqg rtd -xqW +fcP cuC -bqI +cOK xVk xVk xVk @@ -122863,10 +122864,10 @@ xVk xVk xVk xVk -qdK +eJQ aPw aHe -tby +mRQ eky eky eky @@ -122874,10 +122875,10 @@ aNl eky eky eky -kWm +biJ aHe aPw -qdK +eJQ xVk xVk xVk @@ -122885,11 +122886,11 @@ xVk xVk xVk xVk -eqK +wZv bYn -igj +thV uWV -gGo +uIv bYn bYn bdH @@ -122957,35 +122958,35 @@ aaa aaa aaa bdH -kfC +aad aag aag aag nic -tpp -ukl +qBS +lib hsy hsy -wRe +suJ hsy hsy -eSa -lEW -iHd -iZr -xJA +gLG +khf +bhI +iIj +hQw hsy hsy -xvx +wdv hsy hsy -iJw +yjE ppM nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -123053,12 +123054,12 @@ bdH aaa aaa uMc -rUc -qbl -hfo -iJd -eZs -wNU +iKc +uiG +cMN +trB +nVX +jcP xVk xVk xVk @@ -123066,21 +123067,21 @@ xVk xVk xVk xVk -hHH -dpj -gCM -iGE -stW +etf +ohH +atM +aDO +atK eky eky aNl eky eky -gCM -iGE -stW -xey -jzM +atM +aDO +atK +sjr +xjz xVk xVk xVk @@ -123088,12 +123089,12 @@ xVk xVk xVk xVk -pqS -jQl -svY -wgq -lfF -hpx +dbq +xBn +vME +hSt +xoO +rjG pql bdH bdH @@ -123127,16 +123128,16 @@ aaa aKQ aaa iBn -azS -azS -azS -azS -azS -azS -azS -azS -azS -azS +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ iBn iBn bdH @@ -123160,27 +123161,27 @@ aaa aaa aaa bdH -kfC +aad aag aag aag nic -eIu +aIh vsi hsy -tQE +uiC sIr -mlX -dLx -osP +jCn +kkk +kjO pAm gzq pAm -pCz -gRn -gGl +eAI +tdv +rlc hfb -jIO +hUk hsy ppM fZR @@ -123188,7 +123189,7 @@ nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -123256,12 +123257,12 @@ bdH aaa aaa uMc -ecK -jIU +cIG +vqD iEr -xqW -gTQ -wNU +fcP +blJ +jcP xVk xVk xVk @@ -123269,21 +123270,21 @@ xVk xVk xVk xVk -hHH -kFj -pJn +etf +aPz +avu arV -eJP +aMU ssX vsh iPD vsh fCp -pJn +avu arV -eJP -kFj -jzM +aMU +aPz +xjz xVk xVk xVk @@ -123291,12 +123292,12 @@ xVk xVk xVk xVk -pqS -cqi -igj +dbq +gIJ +thV fCL -gex -mLw +lne +wEI pql bdH bdH @@ -123330,16 +123331,16 @@ aaa aKQ aaa iBn -azS -jDn -fFu -elZ -cdr -teL -rse -jDg -elZ -azS +ilZ +bun +plH +ewT +wZQ +kmC +uTd +xDP +ewT +ilZ iBn iBn bdH @@ -123363,7 +123364,7 @@ aaa aaa aaa bdH -kfC +aad aag aag aag @@ -123371,7 +123372,7 @@ nic ppM ppM hsy -gwc +thc sIr pAm pAm @@ -123383,15 +123384,15 @@ pAm pAm pAm sIr -kIh +fZl hsy mxV -eIu +aIh nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -123459,12 +123460,12 @@ bdH aaa aaa uMc -gKA -eWO -neo -qGT -gTQ -wNU +dfg +rAP +vqK +lht +blJ +jcP xVk xVk xVk @@ -123472,21 +123473,21 @@ xVk xVk xVk xVk -hHH -kFj -mpG -hNc -eyf +etf +aPz +aqJ +aBu +aqp nkn lyw iZg lyw nkn -mpG -hNc -eyf -kFj -jzM +aqJ +aBu +aqp +aPz +xjz xVk xVk xVk @@ -123494,12 +123495,12 @@ xVk xVk xVk xVk -pqS -cqi -sDJ -sbv -vJB -vBK +dbq +gIJ +tjj +ofH +gms +ydh pql bdH bdH @@ -123533,16 +123534,16 @@ aaa aKQ aaa iBn -azS -rVl -uAD -onL -wAz -onL -rxH -fsM -pHl -azS +ilZ +jMM +dwo +rcH +jZS +rcH +xSg +sNm +eXN +ilZ iBn iBn bdH @@ -123566,16 +123567,16 @@ aaa aaa aaa bdH -kfC +aad aag aag aag nic -eIu -eIu +aIh +aIh hsy -gCq -xOX +tIe +uAK bVv bVv xTu @@ -123585,16 +123586,16 @@ gzq ern bVv bVv -dZf -fHs +nJa +jPd hsy ppM -nQp +eeC nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -123663,11 +123664,11 @@ aaa aaa cuC ptK -jlM +bSD iEr -qBc +xKM cuC -gvM +uiR xVk xVk xVk @@ -123675,21 +123676,21 @@ xVk xVk xVk xVk -fxP +oee aPw -cub -oya -oya +sYD +aMT +aMT uqI aHe aHe aHe rdh -oya -oya -skg +aMT +aMT +bZR aPw -fxP +oee xVk xVk xVk @@ -123697,11 +123698,11 @@ xVk xVk xVk xVk -xGG +kMK bYn -dCs +gEv fCL -fFr +lol jWh bYn aaa @@ -123736,16 +123737,16 @@ aaa aKQ aaa iBn -azS -afl -mKT -cit -cdr -prT -jMc -llq -cxK -azS +ilZ +nEw +kEt +jrJ +wZQ +uFr +ctb +pRh +pHC +ilZ iBn iBn bdH @@ -123769,7 +123770,7 @@ aaa aaa aaa bdH -kfC +aad aag aag aag @@ -123777,8 +123778,8 @@ nic ppM ppM hsy -mQv -pMN +dPH +sov pAm pAm nAd @@ -123788,16 +123789,16 @@ pAm pAm pAm pAm -kIh -hbv +fZl +oex hsy -eIu -eIu +aIh +aIh nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -123866,11 +123867,11 @@ aaa aaa cuC ptK -wJd +new iEr -ruG +paI cuC -bqI +cOK xVk xVk xVk @@ -123878,21 +123879,21 @@ xVk xVk xVk xVk -qdK +eJQ aPw -rtP -oya -oya +ebn +aMT +aMT eky aHe aHe aHe eky -oya -oya -sJX +aMT +aMT +oOO aPw -qdK +eJQ xVk xVk xVk @@ -123900,11 +123901,11 @@ xVk xVk xVk xVk -eqK +wZv bYn -sWA +vVw fCL -rnd +tNP jWh bYn aaa @@ -123939,16 +123940,16 @@ aaa aKQ aaa iBn -azS -mca -nPr -htR -cdr -eqF -twt -twt -nFq -azS +ilZ +xUz +oRo +hKA +wZQ +epI +nWj +nWj +brw +ilZ iBn iBn bdH @@ -123972,27 +123973,27 @@ aaa aaa aaa bdH -kfC +aad aag aag aag nic -eIu -eIu +aIh +aIh hsy -azP -pMN +rBv +sov pAm pAm hsy -lqP -lqP -lqP +nDa +nDa +nDa hsy gDH pAm -kIh -cIL +fZl +snt hsy ppM ppM @@ -124000,7 +124001,7 @@ nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -124068,12 +124069,12 @@ bdH aaa aaa uMc -klp -qbl -nWG -iJd -qFO -wNU +jMG +uiG +iUW +trB +ozN +jcP xVk xVk xVk @@ -124081,21 +124082,21 @@ xVk xVk xVk xVk -hHH -rhG -gCM -iGE -stW +etf +gZP +atM +aDO +atK eky fRC lFe fRC eky -gCM -iGE -stW -pte -jzM +atM +aDO +atK +aPx +xjz xVk xVk xVk @@ -124103,12 +124104,12 @@ xVk xVk xVk xVk -pqS -gVb -svY -wgq -lfF -hUJ +dbq +diz +vME +hSt +xoO +adC pql bdH bdH @@ -124142,16 +124143,16 @@ aaa aKQ bdH iBn -azS -mca -uDM -cit -cdr -dff -fsM -fsM -pHl -azS +ilZ +xUz +wje +jrJ +wZQ +vlr +sNm +sNm +eXN +ilZ iBn iBn bdH @@ -124175,7 +124176,7 @@ aaa aaa aaa bdH -kfC +aad aag aag aag @@ -124183,27 +124184,27 @@ nic ppM ppM hsy -oqi -lXt -sCq +fqW +qYq +mQn pAm hsy -pkj -cKC -xWe +kiG +aSk +pUv hsy pAm -sCq -rLq -oqi +mQn +wQD +fqW hsy -eIu -eIu +aIh +aIh nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -124271,12 +124272,12 @@ bdH aaa aaa uMc -jHE -gDQ +msP +ugJ kNk -uMa -gTQ -wNU +cXY +blJ +jcP xVk xVk xVk @@ -124284,21 +124285,21 @@ xVk xVk xVk xVk -hHH -kFj -pJn +etf +aPz +avu arV -eJP +aMU arV arV arV arV arV -pJn +avu arV -eJP -kFj -jzM +aMU +aPz +xjz xVk xVk xVk @@ -124306,12 +124307,12 @@ xVk xVk xVk xVk -pqS -cqi -igj +dbq +gIJ +thV fCL -gex -dse +lne +wWq pql bdH bdH @@ -124345,16 +124346,16 @@ aaa aKQ bdH iBn -azS -bWx -uUj -onL -wAz -onL -sQb -vqf -lHa -azS +ilZ +whZ +aAx +rcH +jZS +rcH +fTC +pau +izX +ilZ iBn iBn bdH @@ -124378,24 +124379,24 @@ aaa aaa aaa bdH -kfC +aad aag aag aag nic -eIu +aIh ppM hsy hsy hsy hsy -eQp +hNP hsy hsy hsy hsy hsy -eQp +hNP hsy hsy hsy @@ -124406,7 +124407,7 @@ nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -124474,12 +124475,12 @@ bdH aaa aaa uMc -noV -oum -pxh -qGT -gTQ -wNU +spK +nlW +uZH +lht +blJ +jcP xVk xVk xVk @@ -124487,21 +124488,21 @@ xVk xVk xVk xVk -hHH -kFj -mpG -hNc -eyf +etf +aPz +aqJ +aBu +aqp eky eky eky eky eky -mpG -hNc -eyf -kFj -jzM +aqJ +aBu +aqp +aPz +xjz xVk xVk xVk @@ -124509,12 +124510,12 @@ xVk xVk xVk xVk -pqS -cqi -sDJ -wjH -vJB -mxH +dbq +gIJ +tjj +jRC +gms +qeK pql bdH bdH @@ -124547,17 +124548,17 @@ bdH bdH aKQ bdH -azS -azS -azS -azS -azS -azS -dpf -eyW -yiP -pHl -azS +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +veV +xpo +mqJ +eXN +ilZ iBn iBn bdH @@ -124581,35 +124582,35 @@ aaa aaa aaa bdH -kfC +aad aag aag aag nic -eIu +aIh ppM csd -dXk +dDJ hsy -oVs -mSE -qop -pvB -ckN -pvB -qop -xYV -oVs +haz +fQn +pzM +qra +tqE +qra +pzM +mtZ +haz hsy -dXk -muF -eIu -eIu +dDJ +rXH +aIh +aIh nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -124678,11 +124679,11 @@ aaa aaa cuC cuC -rCV -gFr -lUv +jPq +xgm +aqK cuC -gvM +uiR xVk xVk xVk @@ -124690,10 +124691,10 @@ xVk xVk xVk xVk -fxP +oee aPw aHe -xHF +iTe eky eky atg @@ -124701,10 +124702,10 @@ aBE ouB eky eky -nNl +qPX aHe aPw -fxP +oee xVk xVk xVk @@ -124712,11 +124713,11 @@ xVk xVk xVk xVk -xGG +kMK bYn -drW -fXH -vzc +hTF +rTJ +tAq bYn bYn bdH @@ -124750,17 +124751,17 @@ bdH bdH aKQ lmz -azS -hsm -hsm -ipq -uth -jeW -wSw -rCu -rCu -qDz -azS +ilZ +kRh +kRh +dFB +uQp +dRI +thC +hwZ +hwZ +sis +ilZ iBn iBn bdH @@ -124784,35 +124785,35 @@ aaa aaa aaa bdH -kfC +aad aag aag aag nic -eIu -eIu -eIu -eIu +aIh +aIh +aIh +aIh hsy -oVs -deu -kLu -kLu -kLu -kLu -kLu -xfY -oVs +haz +pLt +mZL +mZL +mZL +mZL +mZL +lOX +haz hsy -jGy -eIu -eIu -eIu +fpi +aIh +aIh +aIh nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -124893,21 +124894,21 @@ xVk xVk xVk xVk -kfC +aad jbq -jzQ -fwr +xrq +dID eky eky -hNN -etG -imM +esT +nYE +orH eky eky -qBo -jzQ +etn +xrq jbq -uQY +ajZ xVk xVk xVk @@ -124953,17 +124954,17 @@ lmz lmz lmz lmz -azS -azS -azS -azS -azS -azS -azS -azS -azS -azS -azS +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ +ilZ iBn iBn bdH @@ -124987,7 +124988,7 @@ aaa aaa aaa bdH -kfC +aad aag aag aag @@ -124997,15 +124998,15 @@ mem piJ piJ hsy -oXm -hoM -pBj -klO -wcn -klO -wuU -hoM -rMC +mkI +aPS +gsM +ukP +eCt +ukP +nop +aPS +ddf hsy atS ppM @@ -125015,7 +125016,7 @@ nic aag aag aag -uQY +ajZ aaa aaa aaa @@ -125096,21 +125097,21 @@ xVk xVk xVk xVk -kfC +aad jbq -eic -fwr +vlk +dID eky eky -anF -ezz +bAe +aBG sGh eky eky -qBo -eic +etn +vlk jbq -uQY +ajZ xVk xVk xVk @@ -125190,15 +125191,15 @@ aaa aaa aaa bdH -kfC +aad aag aag aag aag nic -eIu +aIh ppM -iMP +sER hsy hsy hsy @@ -125210,15 +125211,15 @@ hsy hsy hsy hsy -eIu -eIu -eIu +aIh +aIh +aIh nic aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -125299,21 +125300,21 @@ xVk xVk xVk xVk -kfC +aad aPw -lBM -ugh -ewR +uYd +xnz +dqj eky -wsL -baK -uCs +xaS +ejt +mPf eky -tod -tAV -lBM +gUV +neG +uYd aPw -uQY +ajZ xVk xVk xVk @@ -125358,11 +125359,11 @@ lmz lmz lmz daz -vMp -kRA -kRA -pPY -pVE +jtj +sll +sll +hzv +rYM daz lmz lmz @@ -125393,35 +125394,35 @@ aaa aaa aaa bdH -kfC +aad aag aag aag aag nic -eIu +aIh ppM -eIu +aIh ppM puT -eIu -lfo +aIh +xrg ppM ppM ppM -lfo -eIu -dPY +xrg +aIh +erE ppM ppM ppM -eIu +aIh nic aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -125502,21 +125503,21 @@ xVk xVk xVk xVk -kfC +aad aPw jbq aPw -teJ +vgD eky atg aBE ouB eky -qPL +ihX aPw jbq aPw -uQY +ajZ xVk xVk xVk @@ -125561,7 +125562,7 @@ lmz lmz daz daz -lXy +ehJ daz wnh wnh @@ -125596,7 +125597,7 @@ aaa aaa aaa bdH -kfC +aad aag aag aag @@ -125607,13 +125608,13 @@ qjZ qjZ qjZ qjZ -ocG +dXI qjZ qjZ qjZ qjZ qjZ -ocG +dXI qjZ qjZ qjZ @@ -125624,7 +125625,7 @@ aag aag aag aag -uQY +ajZ aaa aaa aaa @@ -125705,21 +125706,21 @@ xVk xVk xVk xVk -htC -smo +aae +aah aag jbq -gxY -hNc -hNc -hNc -hNc -hNc -hfr +iaR +aBu +aBu +aBu +aBu +aBu +iub jbq aag -smo -qPi +aah +afm xVk xVk xVk @@ -125766,14 +125767,14 @@ daz vhe qQS cqm -fgr -rIi +gTH +qit ebN qQS -qiD -hFz -twg -byO +gwn +pfT +vCH +dyp daz lmz lmz @@ -125799,35 +125800,35 @@ aaa aaa aaa bdH -htC -smo -smo -smo -smo +aae +aah +aah +aah +aah gFP gFP -uGa -uGa -qUj -tbh -fjN -otF -eKz -xai -uoD -sRH -fjN -tbh -sYm -uGa -uGa +lMb +lMb +fLv +cLq +vON +sgs +ioP +vAI +kXm +eSk +vON +cLq +oLN +lMb +lMb gFP gFP -smo -smo -smo -smo -qPi +aah +aah +aah +aah +afm aaa aaa aaa @@ -125910,7 +125911,7 @@ xVk xVk aaa aaa -kfC +aad aPw aPw jbq @@ -125920,7 +125921,7 @@ jbq jbq aPw aPw -uQY +ajZ aaa aaa xVk @@ -125967,16 +125968,16 @@ sbJ sbJ daz rna -ryM +clw qQS sKY qQS -jWl -klo +bIp +fKe dDp -xek -prS -edh +bFg +nkT +lcg daz lmz lmz @@ -126009,21 +126010,21 @@ aaa aaa aaa gFP -fGe -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -vtP -egm +vVI +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +fXZ +gsi gFP aaa aaa @@ -126113,17 +126114,17 @@ xVk xVk aaa aaa -htC -smo -smo -smo -smo -smo -smo -smo -smo -smo -qPi +aae +aah +aah +aah +aah +aah +aah +aah +aah +aah +afm aaa aaa xVk @@ -126169,17 +126170,17 @@ daz tte hvw auf -srW +pmV eGr xDC dIn rby -jWl +bIp euN -wog +ujn sEK -hVv -edh +etM +lcg daz lmz lmz @@ -126212,21 +126213,21 @@ aaa aaa aaa gFP -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb gFP aaa aaa @@ -126366,7 +126367,7 @@ lmz daz daz hRW -oob +asZ vXh daz daz @@ -126374,15 +126375,15 @@ kfU daz ebN ebN -tdS +lnS uVv flf ebN -gsu -pOG -pOG -xav -dTi +rOz +kBy +kBy +nNA +fPB daz lmz lmz @@ -126415,21 +126416,21 @@ aaa aaa aaa gFP -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb gFP aaa aaa @@ -126567,18 +126568,18 @@ lmz lmz daz daz -gRb +eKJ yaZ -inC +dJC hZj -ryM +clw daz daz daz -hBu +sGZ ebN ebN -ihi +roH ebN daz daz @@ -126618,21 +126619,21 @@ aaa aaa aaa gFP -pQT -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -bwY +riT +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +vFn gFP aaa aaa @@ -126771,21 +126772,21 @@ lmz daz jYH ubA -hUr -vBf +nrQ +wyQ fmv ubA gMN -uAA -gZU -wgF -pwU -qls -oMd -mvx -eDm -xTf -nZQ +mRn +dJO +vMt +dkz +aGk +ktQ +teZ +wkM +ege +hWP bZq bZq mIi @@ -126821,21 +126822,21 @@ aaa aaa aaa gFP -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb gFP aaa aaa @@ -126973,25 +126974,25 @@ lmz lmz daz cwS -cTa -czh -wzC -cTa -cTa -cTa -yae -sxd -ryM +ffE +vHa +nDy +ffE +ffE +ffE +jqP +cLo +clw viB dIi -qtV -qGm -eDm -jYk -vMp +qLS +erN +wkM +jvB +jtj swx swx -stv +qKZ gjv daz lmz @@ -127024,21 +127025,21 @@ aaa aaa aaa gFP -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb gFP aaa aaa @@ -127178,20 +127179,20 @@ daz oRV ydI mdW -raS +ios awu ydI aKs -qWj -vBX -six -kYq -mhC -xgj -miP -eDm -iQT -fgO +fMt +mEs +gbm +oBD +lFj +vyE +mTr +wkM +qNc +jdl dpp dpp jgy @@ -127227,21 +127228,21 @@ aaa aaa aaa gFP -fGe -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -uGa -egm +vVI +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gsi gFP aaa aaa @@ -127379,18 +127380,18 @@ lmz lmz daz daz -gRb +eKJ yaZ -inC +dJC hZj -ioD +fQD daz daz daz -maG +tHu ebN ebN -kgE +gXs ebN daz daz @@ -127430,21 +127431,21 @@ aaa aaa aaa gFP -uGa -mTo -uGa -mIM -uGa -mTo -uGa -mIM -uGa -mTo -uGa -mIM -uGa -mTo -uGa +lMb +wgf +lMb +qbD +lMb +wgf +lMb +qbD +lMb +wgf +lMb +qbD +lMb +wgf +lMb gFP aaa aaa @@ -127584,7 +127585,7 @@ lmz daz daz ocB -yjn +nJH rnH daz daz @@ -127592,15 +127593,15 @@ sTV daz ebN ebN -fiy +gbg uVv -fYB +xwU ebN qQS -pOG -pOG +kBy +kBy gfu -pOG +kBy daz lmz lmz @@ -127798,12 +127799,12 @@ jrH xDC yaQ vLz -xOz +mFN kSy -xek +bFg dDp -nvp -edh +nYg +lcg daz lmz lmz @@ -127997,16 +127998,16 @@ sbJ sbJ daz rna -chJ +qRX qQS aCd qQS -xOz -lfT +mFN +igr sEK -wog +ujn mlb -edh +lcg daz lmz lmz @@ -128196,20 +128197,20 @@ hWM hWM ebN daz -dne -pdH +ocL +qpY daz drU itg -lnd -xHj -mfg +rHD +kRQ +xOG ebN cxc -pOG -pOG -xtc -ixz +kBy +kBy +dzt +gyN daz lmz lmz @@ -128395,15 +128396,15 @@ lmz lmz daz hWM -jsG +fVx hWM ebN -iSf +tId ltc ltc daz ebN -vQF +fCI ebN daz daz @@ -128601,8 +128602,8 @@ hWM qQS hWM ebN -iSf -jsG +tId +fVx qQS ebN naj @@ -128801,17 +128802,17 @@ bdH bdH vVk cJI -jsG +fVx hWM ebN -iSf +tId qQS mIJ -vsk +wiu xDC yaQ -vMp -wss +jtj +oZx irr irr xsi @@ -129006,7 +129007,7 @@ fhR nKO tmV qQS -lrP +gDh qQS qQS bMg @@ -129014,9 +129015,9 @@ flL qQS qQS pUg -tCv +sII cFg -uFf +pkS xsi daz lmz diff --git a/sound/effects/.wav b/sound/effects/.wav new file mode 100644 index 000000000000..a5aa273379f6 Binary files /dev/null and b/sound/effects/.wav differ diff --git a/sound/effects/flag_lowering.ogg b/sound/effects/flag_lowering.ogg new file mode 100644 index 000000000000..d514e097913d Binary files /dev/null and b/sound/effects/flag_lowering.ogg differ diff --git a/sound/effects/flag_raised.ogg b/sound/effects/flag_raised.ogg new file mode 100644 index 000000000000..5da7eca55acb Binary files /dev/null and b/sound/effects/flag_raised.ogg differ diff --git a/sound/effects/flag_raising.ogg b/sound/effects/flag_raising.ogg new file mode 100644 index 000000000000..cc2770f2ecb8 Binary files /dev/null and b/sound/effects/flag_raising.ogg differ diff --git a/sound/effects/flag_warcry_ua.ogg b/sound/effects/flag_warcry_ua.ogg new file mode 100644 index 000000000000..eb0ddecc66eb Binary files /dev/null and b/sound/effects/flag_warcry_ua.ogg differ diff --git a/sound/effects/flag_warcry_ua_extra.ogg b/sound/effects/flag_warcry_ua_extra.ogg new file mode 100644 index 000000000000..c723cca44620 Binary files /dev/null and b/sound/effects/flag_warcry_ua_extra.ogg differ diff --git a/tgui/packages/tgui/interfaces/TutorialMenu.tsx b/tgui/packages/tgui/interfaces/TutorialMenu.tsx index 14abfa957b1c..c47db9fd746d 100644 --- a/tgui/packages/tgui/interfaces/TutorialMenu.tsx +++ b/tgui/packages/tgui/interfaces/TutorialMenu.tsx @@ -60,25 +60,30 @@ export const TutorialMenu = (props) => { {tutorial_categories.map( (tutorial_category) => tutorial_category.name === categoryIndex && - tutorial_category.tutorials.map((tutorial) => ( -
- -
- )), + + + )), )}