diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm
index dfa335375b67..87c5e2255b52 100644
--- a/code/__DEFINES/__game.dm
+++ b/code/__DEFINES/__game.dm
@@ -1,9 +1,3 @@
-#define RANGE_TURFS(RADIUS, CENTER) \
-block( \
- locate(max(CENTER.x-(RADIUS),1), max(CENTER.y-(RADIUS),1), CENTER.z), \
- locate(min(CENTER.x+(RADIUS),world.maxx), min(CENTER.y+(RADIUS),world.maxy), CENTER.z) \
-)
-
//Admin perms are in global.dm.
/// To make it even more clear that something is a bitfield.
diff --git a/code/__DEFINES/_math.dm b/code/__DEFINES/_math.dm
index f0281f51cedb..d7c068237987 100644
--- a/code/__DEFINES/_math.dm
+++ b/code/__DEFINES/_math.dm
@@ -14,6 +14,8 @@
#define CEILING(x, y) ( -round(-(x) / (y)) * (y) )
+#define ROUND_UP(x) ( -round(-(x)))
+
// round() acts like floor(x, 1) by default but can't handle other values
#define FLOOR(x, y) ( round((x) / (y)) * (y) )
diff --git a/code/__DEFINES/dcs/signals/atom/signals_atom.dm b/code/__DEFINES/dcs/signals/atom/signals_atom.dm
index d9bd1202c159..4e4458232669 100644
--- a/code/__DEFINES/dcs/signals/atom/signals_atom.dm
+++ b/code/__DEFINES/dcs/signals/atom/signals_atom.dm
@@ -1,6 +1,7 @@
/// From /atom/proc/Decorate
#define COMSIG_ATOM_DECORATED "atom_decorated"
-
+//from SSatoms InitAtom - Only if the atom was not deleted or failed initialization and has a loc
+#define COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZED_ON "atom_init_success_on"
///from base of atom/setDir(): (old_dir, new_dir). Called before the direction changes.
#define COMSIG_ATOM_DIR_CHANGE "atom_dir_change"
diff --git a/code/__DEFINES/dcs/signals/atom/signals_turf.dm b/code/__DEFINES/dcs/signals/atom/signals_turf.dm
index 6a0788bcf871..881ffc3ee139 100644
--- a/code/__DEFINES/dcs/signals/atom/signals_turf.dm
+++ b/code/__DEFINES/dcs/signals/atom/signals_turf.dm
@@ -19,3 +19,6 @@
///from /turf/closed/wall/proc/place_poster
#define COMSIG_POSTER_PLACED "poster_placed"
+
+///from base of /datum/turf_reservation/proc/Release: (datum/turf_reservation/reservation)
+#define COMSIG_TURF_RESERVATION_RELEASED "turf_reservation_released"
diff --git a/code/__DEFINES/dcs/signals/signals_global.dm b/code/__DEFINES/dcs/signals/signals_global.dm
index 905ff1246182..8aa700f4fb3a 100644
--- a/code/__DEFINES/dcs/signals/signals_global.dm
+++ b/code/__DEFINES/dcs/signals/signals_global.dm
@@ -8,6 +8,8 @@
///from base of datum/controller/subsystem/mapping/proc/add_new_zlevel(): (list/args)
#define COMSIG_GLOB_NEW_Z "!new_z"
+/// sent after world.maxx and/or world.maxy are expanded: (has_exapnded_world_maxx, has_expanded_world_maxy)
+#define COMSIG_GLOB_EXPANDED_WORLD_BOUNDS "!expanded_world_bounds"
///from base of datum/controller/subsystem/mapping/proc/add_new_zlevel(): (list/args)
#define COMSIG_GLOB_VEHICLE_ORDERED "!vehicle_ordered"
/// from /datum/controller/subsystem/ticker/fire
diff --git a/code/__DEFINES/maps.dm b/code/__DEFINES/maps.dm
index 155a91fa62ed..ef3d17572f0d 100644
--- a/code/__DEFINES/maps.dm
+++ b/code/__DEFINES/maps.dm
@@ -118,8 +118,5 @@ require only minor tweaks.
#define MAP_ARMOR_STYLE_JUNGLE "jungle"
#define MAP_ARMOR_STYLE_PRISON "prison"
-//turf-only flags
-#define NOJAUNT_1 (1<<0)
-#define UNUSED_RESERVATION_TURF (1<<1)
-/// If a turf can be made dirty at roundstart. This is also used in areas.
-#define CAN_BE_DIRTY_1 (1<<2)
+/// A map key that corresponds to being one exclusively for Space.
+#define SPACE_KEY "space"
diff --git a/code/__DEFINES/objects.dm b/code/__DEFINES/objects.dm
index 292b315360c5..d495c8e8c012 100644
--- a/code/__DEFINES/objects.dm
+++ b/code/__DEFINES/objects.dm
@@ -175,3 +175,8 @@ GLOBAL_LIST_INIT(RESTRICTED_CAMERA_NETWORKS, list( //Those networks can only be
#define CHECKS_PASSED 1
#define STILL_ON_COOLDOWN 2
#define NO_LIGHT_STATE_CHANGE 3
+
+//tool capabilities or something i don't know
+#define REMOVE_CROWBAR (1<<0)
+#define BREAK_CROWBAR (1<<1)
+#define REMOVE_SCREWDRIVER (1<<2)
diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm
index a3299184e4ef..dfd470a5dba3 100644
--- a/code/__DEFINES/shuttles.dm
+++ b/code/__DEFINES/shuttles.dm
@@ -41,7 +41,7 @@
#define TRANSIT_REQUEST 1
#define TRANSIT_READY 2
-#define SHUTTLE_TRANSIT_BORDER 8
+#define SHUTTLE_TRANSIT_BORDER 16
#define PARALLAX_LOOP_TIME 25
#define HYPERSPACE_END_TIME 5
diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm
index fdfec5e8ca08..dc49d2c6f02c 100644
--- a/code/__DEFINES/tgs.dm
+++ b/code/__DEFINES/tgs.dm
@@ -1,6 +1,6 @@
// tgstation-server DMAPI
-#define TGS_DMAPI_VERSION "7.0.2"
+#define TGS_DMAPI_VERSION "7.1.0"
// All functions and datums outside this document are subject to change with any version and should not be relied on.
@@ -50,6 +50,13 @@
#endif
+#ifndef TGS_FILE2TEXT_NATIVE
+#ifdef file2text
+#error Your codebase is re-defining the BYOND proc file2text. The DMAPI requires the native version to read the result of world.Export(). You can fix this by adding "#define TGS_FILE2TEXT_NATIVE file2text" before your override of file2text to allow the DMAPI to use the native version. This will only be used for world.Export(), not regular file accesses
+#endif
+#define TGS_FILE2TEXT_NATIVE file2text
+#endif
+
// EVENT CODES
/// Before a reboot mode change, extras parameters are the current and new reboot mode enums.
@@ -489,6 +496,16 @@
/// Returns a list of connected [/datum/tgs_chat_channel]s if TGS is present, null otherwise. This function may sleep if the call to [/world/proc/TgsNew] is sleeping!
/world/proc/TgsChatChannelInfo()
return
+
+/**
+ * Trigger an event in TGS. Requires TGS version >= 6.3.0. Returns [TRUE] if the event was triggered successfully, [FALSE] otherwise. This function may sleep!
+ *
+ * event_name - The name of the event to trigger
+ * parameters - Optional list of string parameters to pass as arguments to the event script. The first parameter passed to a script will always be the running game's directory followed by these parameters.
+ * wait_for_completion - If set, this function will not return until the event has run to completion.
+ */
+/world/proc/TgsTriggerEvent(event_name, list/parameters, wait_for_completion = FALSE)
+ return
/*
The MIT License
diff --git a/code/__DEFINES/turf_flags.dm b/code/__DEFINES/turf_flags.dm
index d7b3e90811d8..19dc17191d7c 100644
--- a/code/__DEFINES/turf_flags.dm
+++ b/code/__DEFINES/turf_flags.dm
@@ -1,3 +1,12 @@
+//turf_flags values
+/// Marks a turf as organic. Used for alien wall and membranes.
+#define TURF_ORGANIC (1<<0)
+/// If a turf is an usused reservation turf awaiting assignment
+#define UNUSED_RESERVATION_TURF (1<<1)
+/// If a turf is a reserved turf
+#define RESERVATION_TURF (1<<2)
+
+//ChangeTurf options to change its behavior
#define CHANGETURF_DEFER_CHANGE (1<<0)
/// This flag prevents changeturf from gathering air from nearby turfs to fill the new turf with an approximation of local air
#define CHANGETURF_IGNORE_AIR (1<<1)
@@ -5,12 +14,3 @@
/// A flag for PlaceOnTop to just instance the new turf instead of calling ChangeTurf. Used for uninitialized turfs NOTHING ELSE
#define CHANGETURF_SKIP (1<<3)
-#define IS_OPAQUE_TURF(turf) (turf.directional_opacity == ALL_CARDINALS)
-
-/// Marks a turf as organic. Used for alien wall and membranes.
-#define TURF_ORGANIC (1<<0)
-
-
-#define REMOVE_CROWBAR (1<<0)
-#define BREAK_CROWBAR (1<<1)
-#define REMOVE_SCREWDRIVER (1<<2)
diff --git a/code/__DEFINES/turfs.dm b/code/__DEFINES/turfs.dm
new file mode 100644
index 000000000000..b9a80d4ab257
--- /dev/null
+++ b/code/__DEFINES/turfs.dm
@@ -0,0 +1,29 @@
+#define RANGE_TURFS(RADIUS, CENTER) \
+block( \
+ locate(max(CENTER.x-(RADIUS),1), max(CENTER.y-(RADIUS),1), CENTER.z), \
+ locate(min(CENTER.x+(RADIUS),world.maxx), min(CENTER.y+(RADIUS),world.maxy), CENTER.z) \
+)
+
+#define RECT_TURFS(H_RADIUS, V_RADIUS, CENTER) \
+ block( \
+ locate(max((CENTER).x-(H_RADIUS),1), max((CENTER).y-(V_RADIUS),1), (CENTER).z), \
+ locate(min((CENTER).x+(H_RADIUS),world.maxx), min((CENTER).y+(V_RADIUS),world.maxy), (CENTER).z) \
+ )
+
+///Returns all turfs in a zlevel
+#define Z_TURFS(ZLEVEL) block(locate(1,1,ZLEVEL), locate(world.maxx, world.maxy, ZLEVEL))
+
+/// Returns a list of turfs in the rectangle specified by BOTTOM LEFT corner and height/width, checks for being outside the world border for you
+#define CORNER_BLOCK(corner, width, height) CORNER_BLOCK_OFFSET(corner, width, height, 0, 0)
+
+/// Returns a list of turfs similar to CORNER_BLOCK but with offsets
+#define CORNER_BLOCK_OFFSET(corner, width, height, offset_x, offset_y) ((block(locate(corner.x + offset_x, corner.y + offset_y, corner.z), locate(min(corner.x + (width - 1) + offset_x, world.maxx), min(corner.y + (height - 1) + offset_y, world.maxy), corner.z))))
+
+/// Returns an outline (neighboring turfs) of the given block
+#define CORNER_OUTLINE(corner, width, height) ( \
+ CORNER_BLOCK_OFFSET(corner, width + 2, 1, -1, -1) + \
+ CORNER_BLOCK_OFFSET(corner, width + 2, 1, -1, height) + \
+ CORNER_BLOCK_OFFSET(corner, 1, height, -1, 0) + \
+ CORNER_BLOCK_OFFSET(corner, 1, height, width, 0))
+
+#define TURF_FROM_COORDS_LIST(List) (locate(List[1], List[2], List[3]))
diff --git a/code/__DEFINES/typecheck/generic_types.dm b/code/__DEFINES/typecheck/generic_types.dm
index d9fa3df55430..587108d5b5e6 100644
--- a/code/__DEFINES/typecheck/generic_types.dm
+++ b/code/__DEFINES/typecheck/generic_types.dm
@@ -11,6 +11,7 @@
#define ismovableatom(A) (ismovable(A))
#define isatom(A) (isloc(A))
#define isfloorturf(A) (istype(A, /turf/open/floor))
+#define isclosedturf(A) (istype(A, /turf/closed))
#define isweakref(D) (istype(D, /datum/weakref))
#define isgenerator(A) (istype(A, /generator))
diff --git a/code/__DEFINES/xeno.dm b/code/__DEFINES/xeno.dm
index 6f6e4eef7c20..fb9d6bfb4faf 100644
--- a/code/__DEFINES/xeno.dm
+++ b/code/__DEFINES/xeno.dm
@@ -62,6 +62,9 @@
#define ACID_SPRAY_LINE 0
#define ACID_SPRAY_CONE 1
+/// Defines for Abomination ability /datum/action/xeno_action/activable/feralfrenzy
+#define SINGLETARGETGUT 0
+#define AOETARGETGUT 1
#define WARDEN_HEAL_SHIELD 0
#define WARDEN_HEAL_HP 1
diff --git a/code/__HELPERS/lighting.dm b/code/__HELPERS/lighting.dm
index 08c360849b58..e768d9d1255c 100644
--- a/code/__HELPERS/lighting.dm
+++ b/code/__HELPERS/lighting.dm
@@ -1,3 +1,5 @@
+#define IS_OPAQUE_TURF(turf) (turf.directional_opacity == ALL_CARDINALS)
+
/// Produces a mutable appearance glued to the [EMISSIVE_PLANE] dyed to be the [EMISSIVE_COLOR].
/proc/emissive_appearance(icon, icon_state = "", layer = FLOAT_LAYER, alpha = 255, appearance_flags = NONE)
var/mutable_appearance/appearance = mutable_appearance(icon, icon_state, layer, EMISSIVE_PLANE, alpha, appearance_flags | EMISSIVE_APPEARANCE_FLAGS)
diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm
index 30ef9428586d..9a8528aabcc3 100644
--- a/code/__HELPERS/lists.dm
+++ b/code/__HELPERS/lists.dm
@@ -534,7 +534,7 @@
//Copies a list, and all lists inside it recusively
//Does not copy any other reference type
-/proc/deepCopyList(list/L)
+/proc/deep_copy_list(list/L)
if(!islist(L))
return L
. = L.Copy()
@@ -545,10 +545,10 @@
continue
var/value = .[key]
if(islist(value))
- value = deepCopyList(value)
+ value = deep_copy_list(value)
.[key] = value
if(islist(key))
- key = deepCopyList(key)
+ key = deep_copy_list(key)
.[i] = key
.[key] = value
diff --git a/code/__HELPERS/logging.dm b/code/__HELPERS/logging.dm
index d6c18c8a93be..59e4c7710992 100644
--- a/code/__HELPERS/logging.dm
+++ b/code/__HELPERS/logging.dm
@@ -286,6 +286,16 @@ GLOBAL_PROTECT(config_error_log)
WRITE_LOG(GLOB.config_error_log, text)
SEND_TEXT(world.log, text)
+/// Logging for mapping errors
+/proc/log_mapping(text, skip_world_log)
+#ifdef UNIT_TESTS
+ GLOB.unit_test_mapping_logs += text
+#endif
+ if(skip_world_log)
+ return
+ WRITE_LOG(GLOB.mapping_log, text)
+ SEND_TEXT(world.log, text)
+
/proc/log_admin_private(text)
log_admin(text)
diff --git a/code/__HELPERS/string_lists.dm b/code/__HELPERS/string_lists.dm
new file mode 100644
index 000000000000..076bbf642756
--- /dev/null
+++ b/code/__HELPERS/string_lists.dm
@@ -0,0 +1,23 @@
+GLOBAL_LIST_EMPTY(string_lists)
+
+/**
+ * Caches lists with non-numeric stringify-able values (text or typepath).
+ */
+/proc/string_list(list/values)
+ var/string_id = values.Join("-")
+
+ . = GLOB.string_lists[string_id]
+
+ if(.)
+ return .
+
+ return GLOB.string_lists[string_id] = values
+
+///A wrapper for baseturf string lists, to offer support of non list values, and a stack_trace if we have major issues
+/proc/baseturfs_string_list(list/values, turf/baseturf_holder)
+ if(!islist(values))
+ return values //baseturf things
+ // return values
+ if(length(values) > 10)
+ return string_list(list(/turf/closed/cordon/debug))
+ return string_list(values)
diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm
index 9287197bbcc2..7396e8624ba9 100644
--- a/code/__HELPERS/text.dm
+++ b/code/__HELPERS/text.dm
@@ -201,6 +201,24 @@
return ""
+//Returns a string with reserved characters and spaces after the first and last letters removed
+//Like trim(), but very slightly faster. worth it for niche usecases
+/proc/trim_reduced(text)
+ var/starting_coord = 1
+ var/text_len = length(text)
+ for (var/i in 1 to text_len)
+ if (text2ascii(text, i) > 32)
+ starting_coord = i
+ break
+
+ for (var/i = text_len, i >= starting_coord, i--)
+ if (text2ascii(text, i) > 32)
+ return copytext(text, starting_coord, i + 1)
+
+ if(starting_coord > 1)
+ return copytext(text, starting_coord)
+ return ""
+
//Returns a string with reserved characters and spaces before the first word and after the last word removed.
/proc/trim(text)
return trim_left(trim_right(text))
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index 2fd7ea8919df..aa23131847d7 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -820,7 +820,7 @@
animation.master = target
flick(flick_anim, animation)
-//Will return the contents of an atom recursivly to a depth of 'searchDepth'
+///Will return the contents of an atom recursivly to a depth of 'searchDepth', not including starting atom
/atom/proc/GetAllContents(searchDepth = 5, list/toReturn = list())
for(var/atom/part as anything in contents)
toReturn += part
@@ -828,6 +828,16 @@
part.GetAllContents(searchDepth - 1, toReturn)
return toReturn
+///Returns the src and all recursive contents as a list. Includes the starting atom.
+/atom/proc/get_all_contents(ignore_flag_1)
+ . = list(src)
+ var/i = 0
+ while(i < length(.))
+ var/atom/checked_atom = .[++i]
+ if(checked_atom.flags_atom & ignore_flag_1)
+ continue
+ . += checked_atom.contents
+
/// Returns list of contents of a turf recursively, much like GetAllContents
/// We only get containing atoms in the turf, excluding multitiles bordering on it
/turf/proc/GetAllTurfStrictContents(searchDepth = 5, list/toReturn = list())
@@ -1905,8 +1915,6 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
return list(region_x1 & region_x2, region_y1 & region_y2)
-#define TURF_FROM_COORDS_LIST(List) (locate(List[1], List[2], List[3]))
-
//Vars that will not be copied when using /DuplicateObject
GLOBAL_LIST_INIT(duplicate_forbidden_vars,list(
"tag", "datum_components", "area", "type", "loc", "locs", "vars", "parent", "parent_type", "verbs", "ckey", "key",
diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm
index 59d14f2e0fed..bf9330c567cc 100644
--- a/code/_globalvars/bitfields.dm
+++ b/code/_globalvars/bitfields.dm
@@ -154,6 +154,12 @@ DEFINE_BITFIELD(flags_atom, list(
"HTML_USE_INITAL_ICON" = HTML_USE_INITAL_ICON,
))
+DEFINE_BITFIELD(turf_flags, list(
+ "TURF_ORGANIC" = TURF_ORGANIC,
+ "UNUSED_RESERVATION_TURF" = UNUSED_RESERVATION_TURF,
+ "RESERVATION_TURF" = RESERVATION_TURF,
+))
+
DEFINE_BITFIELD(flags_item, list(
"NODROP" = NODROP,
"NOBLUDGEON" = NOBLUDGEON,
diff --git a/code/_globalvars/global_lists.dm b/code/_globalvars/global_lists.dm
index 7d9cd3324067..4dbf46086f02 100644
--- a/code/_globalvars/global_lists.dm
+++ b/code/_globalvars/global_lists.dm
@@ -37,6 +37,9 @@ GLOBAL_LIST_EMPTY(minimap_icons)
GLOBAL_LIST_EMPTY(mainship_pipes)
+/// List of all the maps that have been cached for /proc/load_map
+GLOBAL_LIST_EMPTY(cached_maps)
+
/proc/initiate_minimap_icons()
var/list/icons = list()
for(var/iconstate in icon_states('icons/UI_icons/map_blips.dmi'))
diff --git a/code/controllers/subsystem/atoms.dm b/code/controllers/subsystem/atoms.dm
index ae4783e4837a..f0d5ee14363e 100644
--- a/code/controllers/subsystem/atoms.dm
+++ b/code/controllers/subsystem/atoms.dm
@@ -19,6 +19,9 @@ SUBSYSTEM_DEF(atoms)
var/list/BadInitializeCalls = list()
+ ///initAtom() adds the atom its creating to this list iff InitializeAtoms() has been given a list to populate as an argument
+ var/list/created_atoms
+
initialized = INITIALIZATION_INSSATOMS
/datum/controller/subsystem/atoms/Initialize(timeofday)
@@ -34,7 +37,7 @@ SUBSYSTEM_DEF(atoms)
populate_seed_list()
return SS_INIT_SUCCESS
-/datum/controller/subsystem/atoms/proc/InitializeAtoms(list/atoms)
+/datum/controller/subsystem/atoms/proc/InitializeAtoms(list/atoms, list/atoms_to_return)
if(initialized == INITIALIZATION_INSSATOMS)
return
@@ -73,7 +76,10 @@ SUBSYSTEM_DEF(atoms)
processing_late_loaders = FALSE
/// Actually creates the list of atoms. Exists soley so a runtime in the creation logic doesn't cause initalized to totally break
-/datum/controller/subsystem/atoms/proc/CreateAtoms(list/atoms)
+/datum/controller/subsystem/atoms/proc/CreateAtoms(list/atoms, list/atoms_to_return = null)
+ if (atoms_to_return)
+ LAZYINITLIST(created_atoms)
+
#ifdef TESTING
var/count
#endif
@@ -152,12 +158,10 @@ SUBSYSTEM_DEF(atoms)
qdeleted = TRUE
else if(!(A.flags_atom & INITIALIZED))
BadInitializeCalls[the_type] |= BAD_INIT_DIDNT_INIT
- /*
else
- SEND_SIGNAL(A,COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZE)
+ SEND_SIGNAL(A, COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZED_ON)
if(created_atoms && from_template && ispath(the_type, /atom/movable))//we only want to populate the list with movables
created_atoms += A.get_all_contents()
- */
return qdeleted || QDELING(A)
diff --git a/code/controllers/subsystem/interior.dm b/code/controllers/subsystem/interior.dm
index 8abc3179f191..e2b845f833d7 100644
--- a/code/controllers/subsystem/interior.dm
+++ b/code/controllers/subsystem/interior.dm
@@ -15,11 +15,11 @@ SUBSYSTEM_DEF(interior)
var/height_to_request = template.height + INTERIOR_BORDER_SIZE
var/width_to_request = template.width + INTERIOR_BORDER_SIZE
- var/datum/turf_reservation/reserved_area = SSmapping.RequestBlockReservation(width_to_request, height_to_request, type = /datum/turf_reservation/interior)
+ var/datum/turf_reservation/reserved_area = SSmapping.request_turf_block_reservation(width_to_request, height_to_request, reservation_type = /datum/turf_reservation/interior)
- var/list/bottom_left = reserved_area.bottom_left_coords
+ var/turf/bottom_left = reserved_area.bottom_left_turfs[1]
- var/list/bounds = template.load(locate(bottom_left[1] + (INTERIOR_BORDER_SIZE / 2), bottom_left[2] + (INTERIOR_BORDER_SIZE / 2), bottom_left[3]), centered = FALSE)
+ var/list/bounds = template.load(locate(bottom_left.x + (INTERIOR_BORDER_SIZE / 2), bottom_left.y + (INTERIOR_BORDER_SIZE / 2), bottom_left.z), centered = FALSE)
var/list/turfs = block( locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]),
locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]))
@@ -51,12 +51,7 @@ SUBSYSTEM_DEF(interior)
if(!isturf(loc))
loc = get_turf(loc)
- var/datum/weakref/reservation_weakref = SSmapping.used_turfs[loc]
-
- if(!reservation_weakref)
- return
-
- var/datum/turf_reservation/interior/reservation = reservation_weakref.resolve()
+ var/datum/turf_reservation/interior/reservation = SSmapping.used_turfs[loc]
if(!istype(reservation))
return FALSE
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index 0f4a63ff65e8..f4e4b5979618 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -1,7 +1,7 @@
SUBSYSTEM_DEF(mapping)
name = "Mapping"
init_order = SS_INIT_MAPPING
- flags = SS_NO_FIRE
+ runlevels = ALL
var/list/datum/map_config/configs
var/list/datum/map_config/next_map_configs
@@ -19,16 +19,24 @@ SUBSYSTEM_DEF(mapping)
var/list/turf/unused_turfs = list() //Not actually unused turfs they're unused but reserved for use for whatever requests them. "[zlevel_of_turf]" = list(turfs)
var/list/datum/turf_reservations //list of turf reservations
var/list/used_turfs = list() //list of turf = datum/turf_reservation
+ /// List of lists of turfs to reserve
+ var/list/lists_to_reserve = list()
var/list/reservation_ready = list()
var/clearing_reserved_turfs = FALSE
// Z-manager stuff
var/ground_start // should only be used for maploading-related tasks
- var/list/z_list
+ ///list of all z level datums in the order of their z (z level 1 is at index 1, etc.)
+ var/list/datum/space_level/z_list
var/datum/space_level/transit
var/num_of_res_levels = 1
+ /// True when in the process of adding a new Z-level, global locking
+ var/adding_new_zlevel = FALSE
+ /// list of traits and their associated z leves
+ var/list/z_trait_levels = list()
+
//dlete dis once #39770 is resolved
/datum/controller/subsystem/mapping/proc/HACK_LoadMapConfig()
if(!configs)
@@ -52,14 +60,10 @@ SUBSYSTEM_DEF(mapping)
loadWorld()
repopulate_sorted_areas()
preloadTemplates()
- // Add the transit level
- transit = add_new_zlevel("Transit/Reserved", list(ZTRAIT_RESERVED = TRUE))
- initialize_reserved_level(transit.z_value)
+ // Add the first transit level
+ var/datum/space_level/base_transit = add_reservation_zlevel()
+ initialize_reserved_level(base_transit.z_value)
repopulate_sorted_areas()
- for(var/maptype as anything in configs)
- var/datum/map_config/MC = configs[maptype]
- if(MC.perf_mode)
- GLOB.perf_flags |= MC.perf_mode
if(configs[GROUND_MAP])
send2chat(new /datum/tgs_message_content("<@&[CONFIG_GET(string/new_round_alert_role_id)]> Round restarted! Map is [configs[GROUND_MAP].map_name]"), CONFIG_GET(string/new_round_alert_channel))
@@ -68,21 +72,60 @@ SUBSYSTEM_DEF(mapping)
return SS_INIT_SUCCESS
+/datum/controller/subsystem/mapping/fire(resumed)
+ // Cache for sonic speed
+ var/list/unused_turfs = src.unused_turfs
+ // CM TODO: figure out if these 2 are needed. Might be required by updated versions of map reader
+ //var/list/world_contents = GLOB.areas_by_type[world.area].contents
+ //var/list/world_turf_contents = GLOB.areas_by_type[world.area].contained_turfs
+ var/list/lists_to_reserve = src.lists_to_reserve
+ var/index = 0
+ while(index < length(lists_to_reserve))
+ var/list/packet = lists_to_reserve[index + 1]
+ var/packetlen = length(packet)
+ while(packetlen)
+ if(MC_TICK_CHECK)
+ if(index)
+ lists_to_reserve.Cut(1, index)
+ return
+ var/turf/T = packet[packetlen]
+ T.empty(RESERVED_TURF_TYPE, RESERVED_TURF_TYPE, null, TRUE)
+ LAZYINITLIST(unused_turfs["[T.z]"])
+ unused_turfs["[T.z]"] |= T
+ //var/area/old_area = T.loc
+ //old_area.turfs_to_uncontain += T
+ T.turf_flags = UNUSED_RESERVATION_TURF
+ //world_contents += T
+ //world_turf_contents += T
+ packet.len--
+ packetlen = length(packet)
+
+ index++
+ lists_to_reserve.Cut(1, index)
+
/datum/controller/subsystem/mapping/proc/wipe_reservations(wipe_safety_delay = 100)
if(clearing_reserved_turfs || !initialized) //in either case this is just not needed.
return
clearing_reserved_turfs = TRUE
message_admins("Clearing dynamic reservation space.")
+ // /tg/ Shuttles have extra handling here to avoid them being desallocated
do_wipe_turf_reservations()
clearing_reserved_turfs = FALSE
+/datum/controller/subsystem/mapping/proc/get_reservation_from_turf(turf/T)
+ RETURN_TYPE(/datum/turf_reservation)
+ return used_turfs[T]
+
/datum/controller/subsystem/mapping/Recover()
flags |= SS_NO_INIT
initialized = SSmapping.initialized
map_templates = SSmapping.map_templates
+
+ shuttle_templates = SSmapping.shuttle_templates
unused_turfs = SSmapping.unused_turfs
turf_reservations = SSmapping.turf_reservations
used_turfs = SSmapping.used_turfs
+ areas_in_z = SSmapping.areas_in_z
configs = SSmapping.configs
next_map_configs = SSmapping.next_map_configs
@@ -126,18 +169,33 @@ SUBSYSTEM_DEF(mapping)
var/start_z = world.maxz + 1
var/i = 0
for (var/level in traits)
- add_new_zlevel("[name][i ? " [i + 1]" : ""]", level)
+ add_new_zlevel("[name][i ? " [i + 1]" : ""]", level, contain_turfs = FALSE)
++i
+ // ================== CM Change ==================
+ // For some reason /tg/ SSmapping attempts to center the map in new Z-Level
+ // but because it's done before loading, it's calculated before performing
+ // X/Y world expansion. When loading a map bigger than world, this results
+ // in a negative offset and the start of the map to not be loaded.
+
// load the maps
for (var/datum/parsed_map/pm as anything in parsed_maps)
- var/cur_z = start_z + parsed_maps[pm]
- if (!pm.load(1, 1, cur_z, no_changeturf = TRUE))
+ var/bounds = pm.bounds
+ var/x_offset = 1
+ var/y_offset = 1
+ if(bounds && world.maxx > bounds[MAP_MAXX])
+ x_offset = round(world.maxx / 2 - bounds[MAP_MAXX] / 2) + 1
+ if(bounds && world.maxy > bounds[MAP_MAXY])
+ y_offset = round(world.maxy / 2 - bounds[MAP_MAXY] / 2) + 1
+ if (!pm.load(x_offset, y_offset, start_z + parsed_maps[pm], no_changeturf = TRUE, new_z = TRUE))
errorList |= pm.original_path
- if(istype(z_list[cur_z], /datum/space_level))
- var/datum/space_level/cur_level = z_list[cur_z]
- cur_level.x_bounds = pm.bounds[MAP_MAXX]
- cur_level.y_bounds = pm.bounds[MAP_MAXY]
+ // CM Snowflake for Mass Screenshot dimensions auto detection
+ for(var/z in bounds[MAP_MINZ] to bounds[MAP_MAXZ])
+ var/datum/space_level/zlevel = z_list[start_z + z - 1]
+ zlevel.bounds = list(bounds[MAP_MINX], bounds[MAP_MINY], z, bounds[MAP_MAXX], bounds[MAP_MAXY], z)
+
+ // =============== END CM Change =================
+
if(!silent)
INIT_ANNOUNCE("Loaded [name] in [(REALTIMEOFDAY - start_time)/10]s!")
return parsed_maps
@@ -256,66 +314,78 @@ SUBSYSTEM_DEF(mapping)
var/datum/map_template/tent/new_tent = new template()
tent_type_templates[new_tent.map_id] = new_tent
-/datum/controller/subsystem/mapping/proc/RequestBlockReservation(width, height, z, type = /datum/turf_reservation, turf_type_override)
- UNTIL(initialized && !clearing_reserved_turfs)
- var/datum/turf_reservation/reserve = new type
- if(turf_type_override)
+/// Adds a new reservation z level. A bit of space that can be handed out on request
+/// Of note, reservations default to transit turfs, to make their most common use, shuttles, faster
+/datum/controller/subsystem/mapping/proc/add_reservation_zlevel(for_shuttles)
+ num_of_res_levels++
+ return add_new_zlevel("Transit/Reserved #[num_of_res_levels]", list(ZTRAIT_RESERVED = TRUE))
+
+/// Requests a /datum/turf_reservation based on the given width, height, and z_size. You can specify a z_reservation to use a specific z level, or leave it null to use any z level.
+/datum/controller/subsystem/mapping/proc/request_turf_block_reservation(
+ width,
+ height,
+ z_size = 1,
+ z_reservation = null,
+ reservation_type = /datum/turf_reservation,
+ turf_type_override = null,
+)
+ UNTIL((!z_reservation || reservation_ready["[z_reservation]"]) && !clearing_reserved_turfs)
+ var/datum/turf_reservation/reserve = new reservation_type
+ if(!isnull(turf_type_override))
reserve.turf_type = turf_type_override
- if(!z)
+ if(!z_reservation)
for(var/i in levels_by_trait(ZTRAIT_RESERVED))
- if(reserve.Reserve(width, height, i))
+ if(reserve.reserve(width, height, z_size, i))
return reserve
//If we didn't return at this point, theres a good chance we ran out of room on the exisiting reserved z levels, so lets try a new one
- log_debug("Ran out of space in existing transit levels, adding a new one")
- num_of_res_levels++
- var/datum/space_level/newReserved = add_new_zlevel("Transit/Reserved [num_of_res_levels]", list(ZTRAIT_RESERVED = TRUE))
+ var/datum/space_level/newReserved = add_reservation_zlevel()
initialize_reserved_level(newReserved.z_value)
- for(var/i in levels_by_trait(ZTRAIT_RESERVED))
- if(reserve.Reserve(width, height, i))
- return reserve
- CRASH("Despite adding a fresh reserved zlevel still failed to get a reservation")
+ if(reserve.reserve(width, height, z_size, newReserved.z_value))
+ return reserve
else
- if(!level_trait(z, ZTRAIT_RESERVED))
- log_debug("Cannot block reserve on a non-ZTRAIT_RESERVED level")
+ if(!level_trait(z_reservation, ZTRAIT_RESERVED))
qdel(reserve)
return
else
- if(reserve.Reserve(width, height, z))
+ if(reserve.reserve(width, height, z_size, z_reservation))
return reserve
- log_debug("unknown reservation failure")
QDEL_NULL(reserve)
-//This is not for wiping reserved levels, use wipe_reservations() for that.
+///Sets up a z level as reserved
+///This is not for wiping reserved levels, use wipe_reservations() for that.
+///If this is called after SSatom init, it will call Initialize on all turfs on the passed z, as its name promises
/datum/controller/subsystem/mapping/proc/initialize_reserved_level(z)
UNTIL(!clearing_reserved_turfs) //regardless, lets add a check just in case.
clearing_reserved_turfs = TRUE //This operation will likely clear any existing reservations, so lets make sure nothing tries to make one while we're doing it.
if(!level_trait(z,ZTRAIT_RESERVED))
clearing_reserved_turfs = FALSE
CRASH("Invalid z level prepared for reservations.")
- var/turf/A = get_turf(locate(8,8,z))
- var/turf/B = get_turf(locate(world.maxx - 8,world.maxy - 8,z))
+ var/turf/A = get_turf(locate(SHUTTLE_TRANSIT_BORDER,SHUTTLE_TRANSIT_BORDER,z))
+ var/turf/B = get_turf(locate(world.maxx - SHUTTLE_TRANSIT_BORDER,world.maxy - SHUTTLE_TRANSIT_BORDER,z))
var/block = block(A, B)
- for(var/t in block)
- // No need to empty() these, because it's world init and they're
- // already /turf/open/space/basic.
- var/turf/T = t
- T.flags_atom |= UNUSED_RESERVATION_TURF
+ for(var/turf/T as anything in block)
+ // No need to empty() these, because they just got created and are already /turf/open/space/basic.
+ T.turf_flags = UNUSED_RESERVATION_TURF
+ CHECK_TICK
+
+ // Gotta create these suckers if we've not done so already
+ if(SSatoms.initialized)
+ SSatoms.InitializeAtoms(Z_TURFS(z))
+
unused_turfs["[z]"] = block
reservation_ready["[z]"] = TRUE
clearing_reserved_turfs = FALSE
-/datum/controller/subsystem/mapping/proc/reserve_turfs(list/turfs)
- for(var/i in turfs)
- var/turf/T = i
- T.empty(RESERVED_TURF_TYPE, RESERVED_TURF_TYPE, null, TRUE)
- LAZYINITLIST(unused_turfs["[T.z]"])
- unused_turfs["[T.z]"] |= T
- T.flags_atom |= UNUSED_RESERVATION_TURF
- GLOB.areas_by_type[world.area].contents += T
- CHECK_TICK
+/// Schedules a group of turfs to be handed back to the reservation system's control
+/// If await is true, will sleep until the turfs are finished work
+/datum/controller/subsystem/mapping/proc/reserve_turfs(list/turfs, await = FALSE)
+ lists_to_reserve += list(turfs)
+ if(await)
+ UNTIL(!length(turfs))
//DO NOT CALL THIS PROC DIRECTLY, CALL wipe_reservations().
/datum/controller/subsystem/mapping/proc/do_wipe_turf_reservations()
+ PRIVATE_PROC(TRUE)
UNTIL(initialized) //This proc is for AFTER init, before init turf reservations won't even exist and using this will likely break things.
for(var/i in turf_reservations)
var/datum/turf_reservation/TR = i
@@ -323,19 +393,28 @@ SUBSYSTEM_DEF(mapping)
qdel(TR, TRUE)
UNSETEMPTY(turf_reservations)
var/list/clearing = list()
- for(var/l in unused_turfs) //unused_turfs is a assoc list by z = list(turfs)
+ for(var/l in unused_turfs) //unused_turfs is an assoc list by z = list(turfs)
if(islist(unused_turfs[l]))
clearing |= unused_turfs[l]
clearing |= used_turfs //used turfs is an associative list, BUT, reserve_turfs() can still handle it. If the code above works properly, this won't even be needed as the turfs would be freed already.
unused_turfs.Cut()
used_turfs.Cut()
- reserve_turfs(clearing)
+ reserve_turfs(clearing, await = TRUE)
/datum/controller/subsystem/mapping/proc/reg_in_areas_in_z(list/areas)
for(var/B in areas)
var/area/A = B
A.reg_in_areas_in_z()
+/// Takes a z level datum, and tells the mapping subsystem to manage it
+/// Also handles things like plane offset generation, and other things that happen on a z level to z level basis
+/datum/controller/subsystem/mapping/proc/manage_z_level(datum/space_level/new_z, filled_with_space, contain_turfs = TRUE)
+ // First, add the z
+ z_list += new_z
+ // Then we build our lookup lists
+ //var/z_value = new_z.z_value
+ //TODO: All the Z-plane init stuff goes below here normally, we don't have that yet
+
/// Gets a name for the marine ship as per the enabled ship map configuration
/datum/controller/subsystem/mapping/proc/get_main_ship_name()
if(!configs)
diff --git a/code/controllers/subsystem/shuttles.dm b/code/controllers/subsystem/shuttles.dm
index db0d449b4dd7..439f83ceb8c0 100644
--- a/code/controllers/subsystem/shuttles.dm
+++ b/code/controllers/subsystem/shuttles.dm
@@ -39,9 +39,6 @@ SUBSYSTEM_DEF(shuttle)
var/loading_shuttle = FALSE
/datum/controller/subsystem/shuttle/Initialize(timeofday)
- if(GLOB.perf_flags & PERF_TOGGLE_SHUTTLES)
- can_fire = FALSE
- return
initial_load()
return SS_INIT_SUCCESS
@@ -52,8 +49,6 @@ SUBSYSTEM_DEF(shuttle)
CHECK_TICK
/datum/controller/subsystem/shuttle/fire(resumed = FALSE)
- if(!resumed && (GLOB.perf_flags & PERF_TOGGLE_SHUTTLES))
- return
for(var/thing in mobile)
if(!thing)
mobile.Remove(thing)
@@ -187,13 +182,19 @@ SUBSYSTEM_DEF(shuttle)
var/transit_path = M.get_transit_path_type()
- var/datum/turf_reservation/proposal = SSmapping.RequestBlockReservation(transit_width, transit_height, null, /datum/turf_reservation/transit, transit_path)
+ var/datum/turf_reservation/proposal = SSmapping.request_turf_block_reservation(
+ transit_width,
+ transit_height,
+ 1,
+ reservation_type = /datum/turf_reservation/transit,
+ turf_type_override = transit_path,
+ )
if(!istype(proposal))
log_debug("generate_transit_dock() failed to get a block reservation from mapping system")
return FALSE
- var/turf/bottomleft = locate(proposal.bottom_left_coords[1], proposal.bottom_left_coords[2], proposal.bottom_left_coords[3])
+ var/turf/bottomleft = proposal.bottom_left_turfs[1]
// Then create a transit docking port in the middle
var/coords = M.return_coords(0, 0, dock_dir)
/* 0------2
@@ -362,7 +363,7 @@ SUBSYSTEM_DEF(shuttle)
return shuttle
-/datum/controller/subsystem/shuttle/proc/action_load(datum/map_template/shuttle/loading_template, obj/docking_port/stationary/destination_port)
+/datum/controller/subsystem/shuttle/proc/action_load(datum/map_template/shuttle/loading_template, obj/docking_port/stationary/destination_port, replace = FALSE)
// Check for an existing preview
if(preview_shuttle && (loading_template != preview_template))
preview_shuttle.jumpToNullSpace()
@@ -371,8 +372,7 @@ SUBSYSTEM_DEF(shuttle)
QDEL_NULL(preview_reservation)
if(!preview_shuttle)
- if(load_template(loading_template))
- preview_shuttle.linkup(loading_template, destination_port)
+ load_template(loading_template)
preview_template = loading_template
// get the existing shuttle information, if any
@@ -407,9 +407,6 @@ SUBSYSTEM_DEF(shuttle)
for(var/area/A as anything in preview_shuttle.shuttle_areas)
for(var/turf/T as anything in A)
- // turfs inside the shuttle are not available for shuttles
- T.flags_atom &= ~UNUSED_RESERVATION_TURF
-
// update underlays
if(istype(T, /turf/closed/shuttle))
var/dx = T.x - preview_shuttle.x
@@ -418,8 +415,10 @@ SUBSYSTEM_DEF(shuttle)
T.underlays.Cut()
T.underlays += mutable_appearance(target_lz.icon, target_lz.icon_state, TURF_LAYER, FLOOR_PLANE)
+ preview_shuttle.register(replace)
var/list/force_memory = preview_shuttle.movement_force
preview_shuttle.movement_force = list("KNOCKDOWN" = 0, "THROW" = 0)
+
preview_shuttle.initiate_docking(D)
preview_shuttle.movement_force = force_memory
@@ -430,7 +429,7 @@ SUBSYSTEM_DEF(shuttle)
preview_shuttle.timer = timer
preview_shuttle.mode = mode
- preview_shuttle.register()
+ preview_shuttle.postregister(replace)
// TODO indicate to the user that success happened, rather than just
// blanking the modification tab
@@ -440,16 +439,21 @@ SUBSYSTEM_DEF(shuttle)
selected = null
QDEL_NULL(preview_reservation)
-/datum/controller/subsystem/shuttle/proc/load_template(datum/map_template/shuttle/S)
+/datum/controller/subsystem/shuttle/proc/load_template(datum/map_template/shuttle/loading_template)
. = FALSE
- // load shuttle template, centred at shuttle import landmark,
- preview_reservation = SSmapping.RequestBlockReservation(S.width, S.height, SSmapping.transit.z_value, /datum/turf_reservation/transit)
+ // Load shuttle template to a fresh block reservation.
+ preview_reservation = SSmapping.request_turf_block_reservation(
+ loading_template.width,
+ loading_template.height,
+ 1,
+ reservation_type = /datum/turf_reservation/transit,
+ )
if(!preview_reservation)
CRASH("failed to reserve an area for shuttle template loading")
- var/turf/BL = TURF_FROM_COORDS_LIST(preview_reservation.bottom_left_coords)
- S.load(BL, centered = FALSE, register = FALSE)
+ var/turf/bottom_left = preview_reservation.bottom_left_turfs[1]
+ loading_template.load(bottom_left, centered = FALSE, register = FALSE)
- var/affected = S.get_affected_turfs(BL, centered=FALSE)
+ var/affected = loading_template.get_affected_turfs(bottom_left, centered=FALSE)
var/found = 0
// Search the turfs for docking ports
@@ -463,13 +467,13 @@ SUBSYSTEM_DEF(shuttle)
found++
if(found > 1)
qdel(P, force=TRUE)
- log_world("Map warning: Shuttle Template [S.mappath] has multiple mobile docking ports.")
+ log_world("Map warning: Shuttle Template [loading_template.mappath] has multiple mobile docking ports.")
else
preview_shuttle = P
if(istype(P, /obj/docking_port/stationary))
- log_world("Map warning: Shuttle Template [S.mappath] has a stationary docking port.")
+ log_world("Map warning: Shuttle Template [loading_template.mappath] has a stationary docking port.")
if(!found)
- var/msg = "load_template(): Shuttle Template [S.mappath] has no mobile docking port. Aborting import."
+ var/msg = "load_template(): Shuttle Template [loading_template.mappath] has no mobile docking port. Aborting import."
for(var/T in affected)
var/turf/T0 = T
T0.empty()
@@ -478,7 +482,7 @@ SUBSYSTEM_DEF(shuttle)
WARNING(msg)
return
//Everything fine
- S.post_load(preview_shuttle)
+ loading_template.post_load(preview_shuttle)
return TRUE
/datum/controller/subsystem/shuttle/proc/unload_preview()
diff --git a/code/datums/ammo/bullet/pistol.dm b/code/datums/ammo/bullet/pistol.dm
index 8be63b0a15af..937c40d16cff 100644
--- a/code/datums/ammo/bullet/pistol.dm
+++ b/code/datums/ammo/bullet/pistol.dm
@@ -66,7 +66,7 @@
/datum/ammo/bullet/pistol/ap/toxin/on_hit_turf(turf/T, obj/projectile/P)
. = ..()
- if(T.flags_turf & TURF_ORGANIC)
+ if(T.turf_flags & TURF_ORGANIC)
P.damage *= organic_damage_mult
/datum/ammo/bullet/pistol/ap/toxin/on_hit_obj(obj/O, obj/projectile/P)
@@ -197,7 +197,7 @@
/datum/ammo/bullet/pistol/squash/toxin/on_hit_turf(turf/T, obj/projectile/P)
. = ..()
- if(T.flags_turf & TURF_ORGANIC)
+ if(T.turf_flags & TURF_ORGANIC)
P.damage *= organic_damage_mult
/datum/ammo/bullet/pistol/squash/toxin/on_hit_obj(obj/O, obj/projectile/P)
diff --git a/code/datums/ammo/bullet/revolver.dm b/code/datums/ammo/bullet/revolver.dm
index 633bf3e2f7ff..0688e615378e 100644
--- a/code/datums/ammo/bullet/revolver.dm
+++ b/code/datums/ammo/bullet/revolver.dm
@@ -52,7 +52,7 @@
/datum/ammo/bullet/revolver/marksman/toxin/on_hit_turf(turf/T, obj/projectile/P)
. = ..()
- if(T.flags_turf & TURF_ORGANIC)
+ if(T.turf_flags & TURF_ORGANIC)
P.damage *= organic_damage_mult
/datum/ammo/bullet/revolver/marksman/toxin/on_hit_obj(obj/O, obj/projectile/P)
diff --git a/code/datums/ammo/bullet/rifle.dm b/code/datums/ammo/bullet/rifle.dm
index 279a828ed786..7711e082a596 100644
--- a/code/datums/ammo/bullet/rifle.dm
+++ b/code/datums/ammo/bullet/rifle.dm
@@ -74,7 +74,7 @@
/datum/ammo/bullet/rifle/ap/toxin/on_hit_turf(turf/T, obj/projectile/P)
. = ..()
- if(T.flags_turf & TURF_ORGANIC)
+ if(T.turf_flags & TURF_ORGANIC)
P.damage *= organic_damage_mult
/datum/ammo/bullet/rifle/ap/toxin/on_hit_obj(obj/O, obj/projectile/P)
diff --git a/code/datums/ammo/bullet/smg.dm b/code/datums/ammo/bullet/smg.dm
index e24b3021da97..3fa087972fbe 100644
--- a/code/datums/ammo/bullet/smg.dm
+++ b/code/datums/ammo/bullet/smg.dm
@@ -51,7 +51,7 @@
/datum/ammo/bullet/smg/ap/toxin/on_hit_turf(turf/T, obj/projectile/P)
. = ..()
- if(T.flags_turf & TURF_ORGANIC)
+ if(T.turf_flags & TURF_ORGANIC)
P.damage *= organic_damage_mult
/datum/ammo/bullet/smg/ap/toxin/on_hit_obj(obj/O, obj/projectile/P)
diff --git a/code/datums/ammo/energy.dm b/code/datums/ammo/energy.dm
index 16cbab378438..1f48806d2d52 100644
--- a/code/datums/ammo/energy.dm
+++ b/code/datums/ammo/energy.dm
@@ -230,3 +230,10 @@
var/mob/living/carbon/xenomorph/xeno = hit_mob
xeno.apply_damage(damage * 0.75, BURN)
xeno.interference = 30
+
+/datum/ammo/energy/yautja/rifle/bolt/set_bullet_traits()
+ . = ..()
+ LAZYADD(traits_to_give, list(
+ BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary)
+ ))
+
diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm
index 98bcf296755b..0eba86add45d 100644
--- a/code/datums/shuttles.dm
+++ b/code/datums/shuttles.dm
@@ -62,43 +62,30 @@
locate(.[MAP_MAXX], .[MAP_MAXY], .[MAP_MAXZ]))
for(var/i in 1 to turfs.len)
var/turf/place = turfs[i]
+
+ // ================== CM Change ==================
+ // We perform atom initialization of the docking_ports BEFORE skipping space,
+ // because our lifeboats have their corners as object props and still
+ // reside on space turfs. Notably the bottom left corner, which also contains
+ // the docking port.
+
+ for(var/obj/docking_port/mobile/port in place)
+ SSatoms.InitializeAtoms(list(port))
+ if(register)
+ port.register()
+
if(istype(place, /turf/open/space)) // This assumes all shuttles are loaded in a single spot then moved to their real destination.
continue
if(length(place.baseturfs) < 2) // Some snowflake shuttle shit
continue
place.baseturfs.Insert(3, /turf/baseturf_skipover/shuttle)
-
- for(var/obj/docking_port/mobile/port in place)
- if(register)
- port.register()
- if(isnull(port_x_offset))
- continue
- switch(port.dir) // Yeah this looks a little ugly but mappers had to do this in their head before
- if(NORTH)
- port.width = width
- port.height = height
- port.dwidth = port_x_offset - 1
- port.dheight = port_y_offset - 1
- if(EAST)
- port.width = height
- port.height = width
- port.dwidth = height - port_y_offset
- port.dheight = port_x_offset - 1
- if(SOUTH)
- port.width = width
- port.height = height
- port.dwidth = width - port_x_offset
- port.dheight = height - port_y_offset
- if(WEST)
- port.width = height
- port.height = width
- port.dwidth = port_y_offset - 1
- port.dheight = width - port_x_offset
+ // =============== END CM Change =================
//Whatever special stuff you want
-/datum/map_template/shuttle/proc/post_load(obj/docking_port/mobile/M)
+/datum/map_template/shuttle/post_load(obj/docking_port/mobile/M)
if(movement_force)
M.movement_force = movement_force.Copy()
+ M.linkup()
/datum/map_template/shuttle/vehicle
@@ -115,3 +102,9 @@
/datum/map_template/shuttle/trijent_elevator/B
elevator_network = "B"
+
+/datum/map_template/shuttle/trijent_elevator/post_load(obj/docking_port/mobile/M)
+ . = ..()
+ var/obj/docking_port/mobile/trijent_elevator/elev = M
+ elev.elevator_network = elevator_network
+ log_debug("Adding network [elevator_network] to [M.id]")
diff --git a/code/datums/tutorial/_tutorial.dm b/code/datums/tutorial/_tutorial.dm
index 7dd7ac85c04d..f6e70e33cdd9 100644
--- a/code/datums/tutorial/_tutorial.dm
+++ b/code/datums/tutorial/_tutorial.dm
@@ -50,12 +50,12 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial)
tutorial_mob = starting_mob
- reservation = SSmapping.RequestBlockReservation(initial(tutorial_template.width), initial(tutorial_template.height))
+ reservation = SSmapping.request_turf_block_reservation(initial(tutorial_template.width), initial(tutorial_template.height), 1)
if(!reservation)
abort_tutorial()
return FALSE
- var/turf/bottom_left_corner_reservation = locate(reservation.bottom_left_coords[1], reservation.bottom_left_coords[2], reservation.bottom_left_coords[3])
+ var/turf/bottom_left_corner_reservation = reservation.bottom_left_turfs[1]
var/datum/map_template/tutorial/template = new tutorial_template
template.load(bottom_left_corner_reservation, FALSE, TRUE)
var/obj/landmark = locate(/obj/effect/landmark/tutorial_bottom_left) in GLOB.landmarks_list
@@ -98,11 +98,7 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial)
/// Verify the template loaded fully and without error.
/datum/tutorial/proc/verify_template_loaded()
// We subtract 1 from x and y because the bottom left corner doesn't start at the walls.
- var/turf/true_bottom_left_corner = locate(
- reservation.bottom_left_coords[1],
- reservation.bottom_left_coords[2],
- reservation.bottom_left_coords[3],
- )
+ var/turf/true_bottom_left_corner = reservation.bottom_left_turfs[1]
// We subtract 1 from x and y here because the bottom left corner counts as the first tile
var/turf/top_right_corner = locate(
true_bottom_left_corner.x + initial(tutorial_template.width) - 1,
diff --git a/code/game/area/almayer.dm b/code/game/area/almayer.dm
index 8acad9821cdd..14bc1891ea1f 100644
--- a/code/game/area/almayer.dm
+++ b/code/game/area/almayer.dm
@@ -2,6 +2,7 @@
// Fore = West | Aft = East //
// Port = South | Starboard = North //
// Bow = Western|Stern = Eastern //(those are the front and back small sections)
+// Naming convention is to start by port or starboard then put eitheir (bow,fore,midship,aft,stern)
/area/almayer
icon = 'icons/turf/area_almayer.dmi'
// ambience = list('sound/ambience/shipambience.ogg')
@@ -29,26 +30,6 @@
if(hijack_evacuation_area)
SShijack.progress_areas[src] = power_equip
-/area/shuttle/almayer/elevator_maintenance/upperdeck
- name = "\improper Upper Deck Maintenance Elevator"
- icon_state = "shuttle"
- fake_zlevel = 1
-
-/area/shuttle/almayer/elevator_maintenance/lowerdeck
- name = "\improper Lower Deck Maintenance Elevator"
- icon_state = "shuttle"
- fake_zlevel = 2
-
-/area/shuttle/almayer/elevator_hangar/lowerdeck
- name = "\improper Hangar Elevator"
- icon_state = "shuttle"
- fake_zlevel = 2 // lowerdeck
-
-/area/shuttle/almayer/elevator_hangar/underdeck
- name = "\improper Hangar Elevator"
- icon_state = "shuttle"
- fake_zlevel = 3
-
/obj/structure/machinery/computer/shuttle_control/almayer/hangar
name = "Elevator Console"
icon = 'icons/obj/structures/machinery/computer.dmi'
@@ -312,10 +293,6 @@
icon_state = "firingrange"
fake_zlevel = 2 // lowerdeck
-/area/almayer/shipboard/sensors
- name = "\improper Sensor Room"
- icon_state = "sensor"
-
/area/almayer/hallways/hangar
name = "\improper Hangar"
icon_state = "hangar"
@@ -323,79 +300,62 @@
soundscape_playlist = SCAPE_PL_HANGAR
soundscape_interval = 50
-/area/almayer/hallways/vehiclehangar
- name = "\improper Lower Deck Vehicle Storage"
- icon_state = "exoarmor"
- fake_zlevel = 2
-
-/area/almayer/living
- minimap_color = MINIMAP_AREA_COLONY
-
-/area/almayer/living/tankerbunks
- name = "\improper Lower Deck Vehicle Crew Bunks"
- icon_state = "livingspace"
- fake_zlevel = 2
-
-/area/almayer/living/auxiliary_officer_office
- name = "\improper Lower Deck Auxiliary Support Officer office"
- icon_state = "livingspace"
- fake_zlevel = 2
-
-/area/almayer/squads/tankdeliveries
- name = "\improper Lower Deck Vehicle ASRS"
- icon_state = "req"
- fake_zlevel = 2
+/area/almayer/hallways/lower
+ fake_zlevel = 2 // lowerdeck
-/area/almayer/hallways/exoarmor
- name = "\improper Lower Deck Vehicle Armor Storage"
+/area/almayer/hallways/lower/vehiclehangar
+ name = "\improper Lower Deck Vehicle Storage"
icon_state = "exoarmor"
- fake_zlevel = 2 // lowerdeck
-/area/almayer/hallways/repair_bay
+/area/almayer/hallways/lower/repair_bay
name = "\improper Lower Deck Deployment Workshop"
icon_state = "dropshiprepair"
- fake_zlevel = 2 // lowerdeck
-/area/almayer/hallways/mission_planner
- name = "\improper Lower Deck Dropship Central Computer Room"
- icon_state = "missionplanner"
- fake_zlevel = 2 // lowerdeck
-
-/area/almayer/hallways/starboard_umbilical
+/area/almayer/hallways/lower/starboard_umbilical
name = "\improper Lower Deck Starboard Umbilical Hallway"
icon_state = "starboardumbilical"
- fake_zlevel = 2 // lowerdeck
-/area/almayer/hallways/port_umbilical
+/area/almayer/hallways/lower/port_umbilical
name = "\improper Lower Deck Port Umbilical Hallway"
icon_state = "portumbilical"
- fake_zlevel = 2 // lowerdeck
-/area/almayer/hallways/aft_hallway
- name = "\improper Upper Deck Aft Hallway"
- icon_state = "aft"
- fake_zlevel = 1 // upperdeck
+//port
+/area/almayer/hallways/lower/port_fore_hallway
+ name = "\improper Lower Deck Port-Fore Hallway"
+ icon_state = "port"
-/area/almayer/hallways/stern_hallway
- name = "\improper Upper Deck Stern Hallway"
- icon_state = "stern"
- fake_zlevel = 1 // upperdeck
+/area/almayer/hallways/lower/port_midship_hallway
+ name = "\improper Lower Deck Port-Midship Hallway"
+ icon_state = "port"
-/area/almayer/hallways/port_hallway
- name = "\improper Lower Deck Port Hallway"
+/area/almayer/hallways/lower/port_aft_hallway
+ name = "\improper Lower Deck Port-Aft Hallway"
icon_state = "port"
- fake_zlevel = 2 // lowerdeck
-/area/almayer/hallways/starboard_hallway
- name = "\improper Lower Deck Starboard Hallway"
+//starboard
+/area/almayer/hallways/lower/starboard_fore_hallway
+ name = "\improper Lower Deck Starboard-Fore Hallway"
icon_state = "starboard"
- fake_zlevel = 2 // lowerdeck
-//new hallways areas
+/area/almayer/hallways/lower/starboard_midship_hallway
+ name = "\improper Lower Deck Starboard-Midship Hallway"
+ icon_state = "starboard"
+
+/area/almayer/hallways/lower/starboard_aft_hallway
+ name = "\improper Lower Deck Starboard-Aft Hallway"
+ icon_state = "starboard"
/area/almayer/hallways/upper
fake_zlevel = 1 // upperdeck
+/area/almayer/hallways/upper/aft_hallway
+ name = "\improper Upper Deck Aft Hallway"
+ icon_state = "aft"
+
+/area/almayer/hallways/upper/stern_hallway
+ name = "\improper Upper Deck Stern Hallway"
+ icon_state = "stern"
+
/area/almayer/hallways/upper/port
name = "\improper Upper Deck Port Hallway"
icon_state = "port"
@@ -404,6 +364,7 @@
name = "\improper Upper Deck Starboard Hallway"
icon_state = "starboard"
+//area that are used for transition between decks.
/area/almayer/stair_clone
name = "\improper Lower Deck Stairs"
icon_state = "stairs_lowerdeck"
@@ -514,7 +475,7 @@
name = "\improper Upper Deck Starboard-Stern Hull"
/area/almayer/maint/hull/upper/u_f_s
- name = "\improper Upper Deck Fore-Starboard Hull"
+ name = "\improper Upper Deck Starboard-Fore Hull"
/area/almayer/maint/hull/upper/u_m_s
name = "\improper Upper Deck Starboard-Midship Hull"
@@ -531,6 +492,19 @@
/area/almayer/maint/hull/upper/u_a_p
name = "\improper Upper Deck Port-Aft Hull"
+/area/almayer/living
+ minimap_color = MINIMAP_AREA_COLONY
+
+/area/almayer/living/tankerbunks
+ name = "\improper Lower Deck Vehicle Crew Bunks"
+ icon_state = "livingspace"
+ fake_zlevel = 2
+
+/area/almayer/living/auxiliary_officer_office
+ name = "\improper Lower Deck Auxiliary Support Officer office"
+ icon_state = "livingspace"
+ fake_zlevel = 2
+
/area/almayer/living/cryo_cells
name = "\improper Lower Deck Cryo Cells"
icon_state = "cryo"
@@ -704,11 +678,6 @@
icon_state = "science"
fake_zlevel = 1 // upperdeck
-/area/almayer/medical/testlab
- name = "\improper Medical Research workshop"
- icon_state = "science"
- fake_zlevel = 1 // upperdeck
-
/area/almayer/medical/containment
name = "\improper Medical Research containment"
icon_state = "science"
@@ -808,27 +777,22 @@
hijack_evacuation_type = EVACUATION_TYPE_ADDITIVE
/area/almayer/lifeboat_pumps/north1
- name = "Starboard Fore Lifeboat Fuel Pump"
+ name = "Starboard-Fore Lifeboat Fuel Pump"
/area/almayer/lifeboat_pumps/north2
- name = "Starboard Aft Lifeboat Fuel Pump"
+ name = "Starboard-Aft Lifeboat Fuel Pump"
/area/almayer/lifeboat_pumps/south1
- name = "Port Fore Lifeboat Fuel Pump"
+ name = "Port-Fore Lifeboat Fuel Pump"
/area/almayer/lifeboat_pumps/south2
- name = "Port Aft Lifeboat Fuel Pump"
+ name = "Port-Aft Lifeboat Fuel Pump"
/area/almayer/command/lifeboat
name = "\improper Lifeboat Docking Port"
icon_state = "selfdestruct"
fake_zlevel = 1 // upperdeck
-/area/almayer/ert_port
- name = "\improper ERT Docking Port"
- icon_state = "lifeboat"
- flags_area = AREA_NOTUNNEL
-
/area/space/almayer/lifeboat_dock
name = "\improper Port Lifeboat Docking"
icon_state = "lifeboat"
diff --git a/code/game/area/shuttles.dm b/code/game/area/shuttles.dm
index 62c42406e795..3a8d53ab30b7 100644
--- a/code/game/area/shuttles.dm
+++ b/code/game/area/shuttles.dm
@@ -81,4 +81,4 @@
/area/shuttle/lifeboat
icon = 'icons/turf/area_almayer.dmi'
icon_state = "lifeboat"
- flags_atom = AREA_NOTUNNEL
+ flags_area = AREA_NOTUNNEL
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index 5f36b3b8b390..f2ae11425f42 100644
--- a/code/game/atoms.dm
+++ b/code/game/atoms.dm
@@ -503,7 +503,7 @@ Parameters are passed from New.
onclose(usr, "[name]")
///This proc is called on atoms when they are loaded into a shuttle
-/atom/proc/connect_to_shuttle(obj/docking_port/mobile/port, obj/docking_port/stationary/dock, idnum, override=FALSE)
+/atom/proc/connect_to_shuttle(mapload, obj/docking_port/mobile/port, obj/docking_port/stationary/dock)
return
/**
diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm
index 0a179af27803..f943cd696897 100644
--- a/code/game/machinery/doors/multi_tile.dm
+++ b/code/game/machinery/doors/multi_tile.dm
@@ -336,7 +336,7 @@
continue
INVOKE_ASYNC(atom_movable, TYPE_PROC_REF(/atom/movable, throw_atom), projected, 1, SPEED_FAST, null, FALSE)
-/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/connect_to_shuttle(obj/docking_port/mobile/port, obj/docking_port/stationary/dock, idnum, override)
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/connect_to_shuttle(mapload, obj/docking_port/mobile/port, obj/docking_port/stationary/dock)
. = ..()
if(istype(port, /obj/docking_port/mobile/crashable/lifeboat))
var/obj/docking_port/mobile/crashable/lifeboat/lifeboat = port
diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm
index 0a7b85cae7e2..92ba81af4d94 100644
--- a/code/game/machinery/vending/vending_types.dm
+++ b/code/game/machinery/vending/vending_types.dm
@@ -200,25 +200,30 @@
/obj/item/storage/fancy/cigarettes/arcturian_ace = 15,
/obj/item/storage/fancy/cigarettes/emeraldgreen = 15,
/obj/item/storage/fancy/cigarettes/wypacket = 15,
+ /obj/item/storage/fancy/cigarettes/trading_card = 15,
/obj/item/storage/fancy/cigarettes/lady_finger = 15,
/obj/item/storage/fancy/cigarettes/blackpack = 10,
/obj/item/storage/fancy/cigar/tarbacks = 5,
+
/obj/item/storage/box/matches = 10,
/obj/item/tool/lighter/random = 20,
/obj/item/tool/lighter/zippo = 5,
+
)
prices = list(
/obj/item/storage/fancy/cigarettes/kpack = 40,
/obj/item/storage/fancy/cigarettes/arcturian_ace = 25,
/obj/item/storage/fancy/cigarettes/emeraldgreen = 35,
- /obj/item/storage/fancy/cigarettes/wypacket = 35,
+ /obj/item/storage/fancy/cigarettes/wypacket = 30,
+ /obj/item/storage/fancy/cigarettes/trading_card = 35,
/obj/item/storage/fancy/cigarettes/lady_finger = 30,
/obj/item/storage/fancy/cigarettes/blackpack = 75,
/obj/item/storage/fancy/cigar/tarbacks = 35,
/obj/item/storage/box/matches = 1,
/obj/item/tool/lighter/random = 10,
/obj/item/tool/lighter/zippo = 25,
+
)
/obj/structure/machinery/vending/security
@@ -407,7 +412,7 @@
name = "\improper Rec-Vend"
desc = "Contains Weyland-Yutani approved recreational items, like Walkmans and Cards."
icon_state = "walkman"
- product_ads = "The only place to have fun in the entire Marine Corps!;You'll find no better music from here to Arcturus!;Instructions not included with decks of cards!;No volume controls - you don't need them!;All products responsibly made by people having just as much fun as you will be!"
+ product_ads = "The only place to have fun in the entire Marine Corps!;You'll find no better music from here to Arcturus!;Instructions not included with decks of cards!;No volume controls - you don't need them!;All products responsibly made by people having just as much fun as you will be!;Say goodbye to the lucky strike military tobacco monopoly, with the new Weyland Yutani Military Trading Card Gold cigarette pack!"
vend_delay = 0.5 SECONDS
idle_power_usage = 200
@@ -436,6 +441,10 @@
/obj/item/tool/pen/blue = 10,
/obj/item/tool/pen/red = 10,
/obj/item/tool/pen/fountain = 3,
+ /obj/item/storage/fancy/cigarettes/trading_card = 20,
+ /obj/item/storage/fancy/trading_card = 20,
+ /obj/item/toy/trading_card = 50,
+
)
contraband = list(/obj/item/toy/sword = 2)
@@ -463,6 +472,10 @@
/obj/item/tool/pen/blue = 2,
/obj/item/tool/pen/red = 2,
/obj/item/tool/pen/fountain = 30,
+ /obj/item/storage/fancy/cigarettes/trading_card = 30,
+ /obj/item/storage/fancy/trading_card = 20,
+ /obj/item/toy/trading_card = 5,
+
)
product_type = VENDOR_PRODUCT_TYPE_RECREATIONAL
diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm
index 39c7dbffa6ee..2250ebf3edf2 100644
--- a/code/game/objects/effects/landmarks/survivor_spawner.dm
+++ b/code/game/objects/effects/landmarks/survivor_spawner.dm
@@ -70,6 +70,28 @@
spawn_priority = SPAWN_PRIORITY_VERY_HIGH
+//Weyland-Yutani Survivors//
+
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl
+ equipment = /datum/equipment_preset/survivor/wy/executive
+ synth_equipment = /datum/equipment_preset/synth/survivor/wy/security_synth
+ intro_text = list("
You are the last alive Executive of Lazarus Landing! ",\
+ "You are aware of the xenomorph threat. ",\
+ "Your primary objective is to survive the outbreak. ")
+ story_text = "You are a Corporate Liaison stationed on LV-624 from Weyland-Yutani. You were tipped off about some very peculiar looking eggs recovered from the alien temple North-East of the colony. Being the smart Executive the Company hired you to be, you decided to prepare your office for the worst when the first 'facehugger' was born in the vats of the Research Dome. Turned out, you were right, everyone who called you crazy and called these the new 'synthetics' is now dead, you along with your Corporate Security detail are the only survivors due to your paranoia. The xenomorph onslaught was relentless, a fuel tank was shot by one of the Officers, leading to the destruction of a part of the dome, along with alot of the defences being melted. You must survive and find a way to contact Weyland-Yutani."
+
+ spawn_priority = SPAWN_PRIORITY_VERY_HIGH
+
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon
+ equipment = /datum/equipment_preset/survivor/goon
+ synth_equipment = /datum/equipment_preset/synth/survivor/wy/security_synth
+ intro_text = list("You are a Corporate Security Officer! ",\
+ "You are aware of the xenomorph threat. ",\
+ "Your primary objective is to survive the outbreak. ")
+ story_text = "You are a Corporate Security Officer stationed on LV-624 from Weyland-Yutani. Suddenly one day you were pulled aside by the Corporate Liaison and told to bring supplies from both Engineering and the Marshals Offices to their office, and fast. You began fortifying the Corporate Dome and was told by the Executive that something big will ravage the entire colony, excluding you. Turns out, the Liaison was right, these so called 'xenomorphs' broke containment from the Research Dome and began destroying the entire colony. Once they came for the Dome and tried to kill all of you, you barely managed to hold them off even after losing one Officer and alot of the defences. The Liaison said they will soon find a way to contact Weyland-Yutani and to remain steadfast until rescue arrives."
+
+ spawn_priority = SPAWN_PRIORITY_HIGH
+
/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc
equipment = /datum/equipment_preset/survivor/pmc
synth_equipment = /datum/equipment_preset/synth/survivor/pmc
diff --git a/code/game/objects/items/fulton.dm b/code/game/objects/items/fulton.dm
index e36d269c8b90..664c7871ba7f 100644
--- a/code/game/objects/items/fulton.dm
+++ b/code/game/objects/items/fulton.dm
@@ -140,10 +140,12 @@ GLOBAL_LIST_EMPTY(deployed_fultons)
sleep(30)
original_location = get_turf(attached_atom)
playsound(loc, 'sound/items/fulton.ogg', 50, 1)
- reservation = SSmapping.RequestBlockReservation(3, 3, turf_type_override = /turf/open/space)
- var/middle_x = reservation.bottom_left_coords[1] + Floor((reservation.top_right_coords[1] - reservation.bottom_left_coords[1]) / 2)
- var/middle_y = reservation.bottom_left_coords[2] + Floor((reservation.top_right_coords[2] - reservation.bottom_left_coords[2]) / 2)
- var/turf/space_tile = locate(middle_x, middle_y, reservation.bottom_left_coords[3])
+ reservation = SSmapping.request_turf_block_reservation(3, 3, 1, turf_type_override = /turf/open/space)
+ var/turf/bottom_left_turf = reservation.bottom_left_turfs[1]
+ var/turf/top_right_turf = reservation.top_right_turfs[1]
+ var/middle_x = bottom_left_turf.x + Floor((top_right_turf.x - bottom_left_turf.x) / 2)
+ var/middle_y = bottom_left_turf.y + Floor((top_right_turf.y - bottom_left_turf.y) / 2)
+ var/turf/space_tile = locate(middle_x, middle_y, bottom_left_turf.z)
if(!space_tile)
visible_message(SPAN_WARNING("[src] begins beeping like crazy. Something is wrong!"))
return
diff --git a/code/game/objects/items/storage/fancy.dm b/code/game/objects/items/storage/fancy.dm
index f7ada8ce220c..7ddf331cdeca 100644
--- a/code/game/objects/items/storage/fancy.dm
+++ b/code/game/objects/items/storage/fancy.dm
@@ -218,6 +218,46 @@
default_cig_type = /obj/item/clothing/mask/cigarette/ucigarette
storage_slots = 4
+/obj/item/storage/fancy/cigarettes/trading_card
+ name = "\improper WeyYu Gold Military Trading Card packet"
+ desc = "Gotta collect 'em all, and smoke 'em all! This fancy military trading card version of Weyland Yutani Gold cigarette packs has one card that is apart of the 3 available 5-card sets."
+ icon_state = "collectpacket"
+ item_state = "collectpacket"
+ storage_slots = 21
+ can_hold = list(
+ /obj/item/clothing/mask/cigarette,
+ /obj/item/clothing/mask/cigarette/ucigarette,
+ /obj/item/clothing/mask/cigarette/bcigarette,
+ /obj/item/tool/lighter,
+ /obj/item/toy/trading_card,
+ )
+ var/obj/item/toy/trading_card/trading_card
+
+/obj/item/storage/fancy/cigarettes/trading_card/fill_preset_inventory()
+ flags_atom |= NOREACT
+ for(var/i = 1 to (storage_slots-1))
+ new default_cig_type(src)
+ trading_card = new(src)
+
+/obj/item/storage/fancy/cigarettes/trading_card/attack_hand(mob/user, mods)
+ if(trading_card?.loc == src && loc == user)
+ user.visible_message(SPAN_NOTICE("You pull a [trading_card.collection_color] trading card out of the cigarette pack."))
+ //have to take two disparate systems n' ram 'em together
+ remove_from_storage(trading_card, user.loc)
+ user.put_in_hands(trading_card)
+ trading_card = null
+
+ return ..()
+
+/obj/item/storage/fancy/cigarettes/trading_card/attackby(obj/item/attacked_by_item, mob/user)
+ if(istype(attacked_by_item, /obj/item/toy/trading_card))
+ trading_card = attacked_by_item
+
+ return ..()
+
+/////////////
+//CIGAR BOX//
+/////////////
// CIGAR BOX
/obj/item/storage/fancy/cigar
@@ -409,3 +449,73 @@
/obj/item/storage/lockbox/vials/attackby(obj/item/W as obj, mob/user as mob)
..()
update_icon()
+
+// Trading Card Pack
+
+/obj/item/storage/fancy/trading_card
+ name = "pack of Red WeyYu Military Trading Cards"
+ desc = "A 5 pack of Red Weyland Yutani Military Trading Cards."
+ icon = 'icons/obj/items/playing_cards.dmi'
+ icon_state = "trading_red_pack_closed"
+ storage_slots = 5
+ icon_type = "trading card"
+ can_hold = list(/obj/item/toy/trading_card)
+ foldable = /obj/item/stack/sheet/cardboard
+ var/collection_color = null
+ var/obj/item/toy/trading_card/top_trading_card
+
+/obj/item/storage/fancy/trading_card/Initialize()
+ if(!collection_color)
+ collection_color = pick("red", "green", "blue") // because of vodoo shenanigans with fill_preset_inventory happening during parent's initalize this'll have to run prior to that
+
+ . = ..()
+
+ name = "pack of [capitalize(collection_color)] WeyYu Military Trading Cards"
+ desc = "A 5 pack of [capitalize(collection_color)] Weyland Yutani Military Trading Cards."
+ icon_state = "trading_[collection_color]_pack_closed"
+
+
+/obj/item/storage/fancy/trading_card/fill_preset_inventory()
+
+ for(var/i in 1 to storage_slots)
+ top_trading_card = new /obj/item/toy/trading_card(src)
+
+/obj/item/storage/fancy/trading_card/update_icon()
+ if(!(top_trading_card))
+ icon_state = "trading_[collection_color]_pack_empty"
+ return
+ if(length(contents) == storage_slots)
+ icon_state = "trading_[collection_color]_pack_closed"
+ return
+ icon_state = "trading_[collection_color]_pack_open"
+
+/obj/item/storage/fancy/trading_card/attack_hand(mob/user, mods)
+ if(top_trading_card?.loc == src && loc == user)
+ user.visible_message(SPAN_NOTICE("You pull a [top_trading_card.collection_color] trading card out of the pack."))
+ //have to take two disparate systems n' ram 'em together
+ remove_from_storage(top_trading_card, user.loc)
+ user.put_in_hands(top_trading_card)
+ if(!(length(contents)))
+ top_trading_card = null
+ update_icon()
+ return
+ top_trading_card = contents[(length(contents))]
+ update_icon()
+ return
+
+ return ..()
+
+/obj/item/storage/fancy/trading_card/attackby(obj/item/attacked_by_item, mob/user)
+ if(istype(attacked_by_item, /obj/item/toy/trading_card))
+ top_trading_card = attacked_by_item
+
+ return ..()
+
+/obj/item/storage/fancy/trading_card/red
+ collection_color = "red"
+
+/obj/item/storage/fancy/trading_card/green
+ collection_color = "green"
+
+/obj/item/storage/fancy/trading_card/blue
+ collection_color = "blue"
diff --git a/code/game/objects/items/toys/trading_cards.dm b/code/game/objects/items/toys/trading_cards.dm
new file mode 100644
index 000000000000..23a35abec45e
--- /dev/null
+++ b/code/game/objects/items/toys/trading_cards.dm
@@ -0,0 +1,61 @@
+/obj/item/toy/trading_card
+ name = "WeyYu Military Trading Card"
+ icon = 'icons/obj/items/playing_cards.dmi'
+ icon_state = "trading_red"
+ w_class = SIZE_TINY
+
+ var/trading_card_number = "1"
+ var/picture_description = "barrel charger"
+ var/collection_color
+ var/is_front = FALSE
+ var/back_name = "Red WeyYu Military Trading Card"
+ var/front_name = "Red WeyYu Military Trading Card Number One"
+ var/back_description = "The back of a red trading card with the text: WeyYu Military Trading Cards! GOTTA COLLECT EM ALL!"
+ var/front_description = "A red trading card with a picture of the United Americas flag emblazoned on it. It is number one out of the five red cards."
+ var/back_icon_state = "trading_red"
+ var/front_icon_state = "trading_red_one"
+ var/picture_descriptions = list("5" = list("red" = "a Holy Order of the HEFA cultist", "green" = "General Delyla S. Vaughn (the Assistant Commandant of the United States Colonial Marines)", "blue" = "the Weyland Yutani logo"),
+ "4" = list("red" = "a UPPA officer", "green" = "General Diego Dellamarggio (the Commandant of the United States Colonial Marines)", "blue" = "the Independent Core System Colonies logo"),
+ "3" = list("red" = "a UPPA minigunner", "green" = "Generale d'armee Felix Couture (the Commandant of the Canadian Colonial Armed Forces)", "blue" = "the Three World Empire flag"),
+ "2" = list("red" = "a UPPA soldier", "green" = "Marechal-do-ar Enzo Gabriel Lurdes (the Chief of Naval Operations of the Latin American Colonial Navy)", "blue" = "the Union of Progressive Peoples flag"),
+ "1" = list("red" = "a fanatical colonial seditionist", "green" = "Almirante Joelle De La Cruz (the United Americas Secretary of Defense)", "blue" = "the United Americas flag",)
+ )
+
+/obj/item/toy/trading_card/Initialize()
+ . = ..()
+
+ if(istype(loc, /obj/item/storage/fancy/trading_card))
+ var/obj/item/storage/fancy/trading_card/packet = loc
+ collection_color = packet.collection_color
+
+ if(!collection_color)
+ collection_color = pick("red", "green", "blue")
+ trading_card_number = pick_weight(list("5" = 25, "4" = 20, "3" = 15, "2" = 10, "1" = 5))
+ picture_description = picture_descriptions[trading_card_number][collection_color]
+
+ name = "[capitalize(collection_color)] WeyYu Military Trading Card"
+ back_name = "[capitalize(collection_color)] WeyYu Military Trading Card"
+ front_name = "[capitalize(collection_color)] WeyYu Military Trading Card #[trading_card_number]"
+
+ desc = "The back of a [collection_color] trading card with the text: WeyYu Military Trading Cards! GOTTA COLLECT EM ALL!"
+ back_description = "The back of a [collection_color] trading card with the text: WeyYu Military Trading Cards! GOTTA COLLECT EM ALL!"
+ front_description = "A [collection_color] trading card with a picture of [picture_description] emblazoned on it. It is #[trading_card_number] out of the five [collection_color] cards."
+
+ icon_state = "trading_[collection_color]"
+ back_icon_state = "trading_[collection_color]"
+ front_icon_state = "trading_[collection_color]_[trading_card_number]"
+
+/obj/item/toy/trading_card/attack_self(mob/user)
+ if(loc == user)
+ if(is_front)
+ name = back_name
+ desc = back_description
+ icon_state = back_icon_state
+ is_front = FALSE
+ else
+ to_chat(user, SPAN_NOTICE("You reveal the card. It has a picture of [picture_description] on it!"))
+ name = front_name
+ desc = front_description
+ icon_state = front_icon_state
+ is_front = TRUE
+ return ..()
diff --git a/code/game/objects/structures/reagent_dispensers.dm b/code/game/objects/structures/reagent_dispensers.dm
index 1981dcaba569..a89f35ce38f3 100644
--- a/code/game/objects/structures/reagent_dispensers.dm
+++ b/code/game/objects/structures/reagent_dispensers.dm
@@ -5,6 +5,7 @@
icon_state = "watertank"
density = TRUE
anchored = FALSE
+ drag_delay = 1
health = 100 // Can be destroyed in 2-4 slashes.
flags_atom = CAN_BE_SYRINGED
wrenchable = TRUE
@@ -432,6 +433,7 @@
icon = 'icons/obj/objects.dmi'
icon_state = "peppertank"
anchored = TRUE
+ drag_delay = 3
wrenchable = FALSE
density = FALSE
amount_per_transfer_from_this = 45
@@ -445,6 +447,7 @@
icon_state = "water_cooler"
possible_transfer_amounts = null
anchored = TRUE
+ drag_delay = 3
chemical = "water"
/obj/structure/reagent_dispensers/water_cooler/walk_past
@@ -460,6 +463,7 @@
icon_state = "beertankTEMP"
amount_per_transfer_from_this = 10
chemical = "beer"
+ drag_delay = 3
/obj/structure/reagent_dispensers/beerkeg/alt
icon_state = "beertank_alt"
@@ -474,6 +478,7 @@
icon_state = "virusfoodtank"
amount_per_transfer_from_this = 10
anchored = TRUE
+ drag_delay = 3
wrenchable = FALSE
density = FALSE
chemical = "virusfood"
diff --git a/code/game/turfs/closed.dm b/code/game/turfs/closed.dm
index bf84bc04bf10..abc745dbdd45 100644
--- a/code/game/turfs/closed.dm
+++ b/code/game/turfs/closed.dm
@@ -15,6 +15,21 @@
icon_state = "black"
mouse_opacity = FALSE
+/// Cordon turf marking z-level boundaries and surrounding reservations
+/turf/closed/cordon
+ name = "world border"
+ icon = 'icons/turf/shuttle.dmi'
+ icon_state = "pclosed"
+ layer = ABOVE_TURF_LAYER
+ baseturfs = /turf/closed/cordon
+
+/// Used as placeholder turf when something went really wrong, as per /tg/ string lists handler
+/turf/closed/cordon/debug
+ name = "debug turf"
+ desc = "This turf shouldn't be here and probably result of incorrect turf replacement. Adminhelp about it or report it in an issue."
+ color = "#660088"
+ baseturfs = /turf/closed/cordon/debug
+
/turf/closed/mineral //mineral deposits
name = "Rock"
icon = 'icons/turf/walls/walls.dmi'
diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm
index be58259e17ba..3d15a8c46570 100644
--- a/code/game/turfs/turf.dm
+++ b/code/game/turfs/turf.dm
@@ -24,7 +24,6 @@
*/
-
/turf
icon = 'icons/turf/floors/floors.dmi'
var/intact_tile = 1 //used by floors to distinguish floor with/without a floortile(e.g. plating).
@@ -47,7 +46,7 @@
var/changing_turf = FALSE
var/chemexploded = FALSE // Prevents explosion stacking
- var/flags_turf = NO_FLAGS
+ var/turf_flags = NO_FLAGS
/// Whether we've broken through the ceiling yet
var/ceiling_debrised = FALSE
@@ -57,6 +56,7 @@
///Lumcount added by sources other than lighting datum objects, such as the overlay lighting component.
var/dynamic_lumcount = 0
+
///List of light sources affecting this turf.
///Which directions does this turf block the vision of, taking into account both the turf's opacity and the movable opacity_sources.
var/directional_opacity = NONE
@@ -145,6 +145,22 @@
/turf/proc/update_icon() //Base parent. - Abby
return
+/// Call to move a turf from its current area to a new one
+/turf/proc/change_area(area/old_area, area/new_area)
+ //dont waste our time
+ if(old_area == new_area)
+ return
+
+ //move the turf
+ new_area.contents += src
+
+ //changes to make after turf has moved
+ on_change_area(old_area, new_area)
+
+/// Allows for reactions to an area change without inherently requiring change_area() be called (I hate maploading)
+/turf/proc/on_change_area(area/old_area, area/new_area)
+ transfer_area_lighting(old_area, new_area)
+
/turf/proc/add_cleanable_overlays()
for(var/cleanable_type in cleanables)
var/obj/effect/decal/cleanable/C = cleanables[cleanable_type]
@@ -435,6 +451,10 @@
W.levelupdate()
return W
+//If you modify this function, ensure it works correctly with lateloaded map templates.
+/turf/proc/AfterChange(flags, oldType) //called after a turf has been replaced in ChangeTurf()
+ return // Placeholder. This is mostly used by /tg/ code for atmos updates
+
// Take off the top layer turf and replace it with the next baseturf down
/turf/proc/ScrapeAway(amount=1, flags)
if(!amount)
@@ -767,6 +787,33 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list(
change_type = new_baseturfs
return ChangeTurf(change_type, null, flags)
+/// Places a turf on top - for map loading
+/turf/proc/load_on_top(turf/added_layer, flags)
+ var/area/our_area = get_area(src)
+ flags = our_area.PlaceOnTopReact(list(baseturfs), added_layer, flags)
+
+ if(flags & CHANGETURF_SKIP) // We haven't been initialized
+ if(flags_atom & INITIALIZED)
+ stack_trace("CHANGETURF_SKIP was used in a PlaceOnTop call for a turf that's initialized. This is a mistake. [src]([type])")
+ assemble_baseturfs()
+
+ var/turf/new_turf
+ if(!length(baseturfs))
+ baseturfs = list(baseturfs)
+
+ var/list/old_baseturfs = baseturfs.Copy()
+ if(!isclosedturf(src))
+ old_baseturfs += type
+
+ new_turf = ChangeTurf(added_layer, null, flags)
+ new_turf.assemble_baseturfs(initial(added_layer.baseturfs)) // The baseturfs list is created like roundstart
+ if(!length(new_turf.baseturfs))
+ new_turf.baseturfs = list(baseturfs)
+
+ // The old baseturfs are put underneath, and we sort out the unwanted ones
+ new_turf.baseturfs = baseturfs_string_list(old_baseturfs + (new_turf.baseturfs - GLOB.blacklisted_automated_baseturfs), new_turf)
+ return new_turf
+
/turf/proc/insert_self_into_baseturfs()
baseturfs += type
diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm
index d546e7274331..a90e821fabbf 100644
--- a/code/game/turfs/walls/wall_types.dm
+++ b/code/game/turfs/walls/wall_types.dm
@@ -720,7 +720,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen)
var/hivenumber = XENO_HIVE_NORMAL
var/should_track_build = FALSE
var/datum/cause_data/construction_data
- flags_turf = TURF_ORGANIC
+ turf_flags = TURF_ORGANIC
/turf/closed/wall/resin/Initialize(mapload)
. = ..()
diff --git a/code/game/turfs/walls/walls.dm b/code/game/turfs/walls/walls.dm
index cb58ad2274a4..251b23ad9c57 100644
--- a/code/game/turfs/walls/walls.dm
+++ b/code/game/turfs/walls/walls.dm
@@ -173,7 +173,7 @@
if (acided_hole)
. += SPAN_WARNING("There's a large hole in the wall that could've been caused by some sort of acid.")
- if(flags_turf & TURF_ORGANIC)
+ if(turf_flags & TURF_ORGANIC)
return // Skip the part below. 'Organic' walls aren't deconstructable with tools.
switch(d_state)
diff --git a/code/game/world.dm b/code/game/world.dm
index 2b7dacee373a..958278042ea5 100644
--- a/code/game/world.dm
+++ b/code/game/world.dm
@@ -125,6 +125,7 @@ GLOBAL_LIST_INIT(reboot_sfx, file2list("config/reboot_sfx.txt"))
GLOB.world_runtime_log = "[GLOB.log_directory]/runtime.log"
GLOB.round_stats = "[GLOB.log_directory]/round_stats.log"
GLOB.scheduler_stats = "[GLOB.log_directory]/round_scheduler_stats.log"
+ GLOB.mapping_log = "[GLOB.log_directory]/mapping.log"
GLOB.strain_logs = "[GLOB.log_directory]/strain_logs.log"
start_log(GLOB.tgui_log)
@@ -134,6 +135,7 @@ GLOBAL_LIST_INIT(reboot_sfx, file2list("config/reboot_sfx.txt"))
start_log(GLOB.world_runtime_log)
start_log(GLOB.round_stats)
start_log(GLOB.scheduler_stats)
+ start_log(GLOB.mapping_log)
start_log(GLOB.strain_logs)
if(fexists(GLOB.config_error_log))
@@ -317,9 +319,39 @@ GLOBAL_LIST_INIT(reboot_sfx, file2list("config/reboot_sfx.txt"))
/world/proc/on_tickrate_change()
SStimer.reset_buckets()
+/**
+ * Handles incresing the world's maxx var and intializing the new turfs and assigning them to the global area.
+ * If map_load_z_cutoff is passed in, it will only load turfs up to that z level, inclusive.
+ * This is because maploading will handle the turfs it loads itself.
+ */
+/world/proc/increase_max_x(new_maxx, map_load_z_cutoff = maxz)
+ if(new_maxx <= maxx)
+ return
+// var/old_max = world.maxx
+ maxx = new_maxx
+ if(!map_load_z_cutoff)
+ return
+// var/area/global_area = GLOB.areas_by_type[world.area] // We're guaranteed to be touching the global area, so we'll just do this
+// var/list/to_add = block(
+// locate(old_max + 1, 1, 1),
+// locate(maxx, maxy, map_load_z_cutoff))
+// global_area.contained_turfs += to_add
+
+/world/proc/increase_max_y(new_maxy, map_load_z_cutoff = maxz)
+ if(new_maxy <= maxy)
+ return
+// var/old_maxy = maxy
+ maxy = new_maxy
+ if(!map_load_z_cutoff)
+ return
+// var/area/global_area = GLOB.areas_by_type[world.area] // We're guarenteed to be touching the global area, so we'll just do this
+// var/list/to_add = block(
+// locate(1, old_maxy + 1, 1),
+// locate(maxx, maxy, map_load_z_cutoff))
+// global_area.contained_turfs += to_add
+
/world/proc/incrementMaxZ()
maxz++
- //SSmobs.MaxZChanged()
/** For initializing and starting byond-tracy when BYOND_TRACY is defined
* byond-tracy is a useful profiling tool that allows the user to view the CPU usage and execution time of procs as they run.
diff --git a/code/modules/admin/player_panel/actions/punish.dm b/code/modules/admin/player_panel/actions/punish.dm
index eb80632d8afe..1b7d313b6121 100644
--- a/code/modules/admin/player_panel/actions/punish.dm
+++ b/code/modules/admin/player_panel/actions/punish.dm
@@ -119,6 +119,14 @@
user.admin_holder.player_notes_show(target.ckey)
return TRUE
+/datum/player_action/check_ckey
+ action_tag = "check_ckey"
+ name = "Check Ckey"
+
+
+/datum/player_action/check_ckey/act(client/user, mob/target, list/params)
+ user.admin_holder.check_ckey(target.ckey)
+ return TRUE
/datum/player_action/reset_xeno_name
action_tag = "reset_xeno_name"
diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm
index 535a55ca47b3..ede1cd029d9d 100644
--- a/code/modules/admin/verbs/debug.dm
+++ b/code/modules/admin/verbs/debug.dm
@@ -115,8 +115,10 @@
var/height
if(istype(SSmapping.z_list[cur_z], /datum/space_level))
var/datum/space_level/cur_level = SSmapping.z_list[cur_z]
- width = cur_level.x_bounds - half_chunk_size + 2
- height = cur_level.y_bounds - half_chunk_size + 2
+ cur_x += cur_level.bounds[MAP_MINX] - 1
+ cur_y += cur_level.bounds[MAP_MINY] - 1
+ width = cur_level.bounds[MAP_MAXX] - cur_level.bounds[MAP_MINX] - half_chunk_size + 1
+ height = cur_level.bounds[MAP_MAXY] - cur_level.bounds[MAP_MINY] - half_chunk_size + 1
else
width = world.maxx - half_chunk_size + 2
height = world.maxy - half_chunk_size + 2
@@ -339,3 +341,20 @@
show_browser(usr, "[str] ", "Ticker Count", "tickercount")
+
+#ifdef TESTING
+GLOBAL_LIST_EMPTY(dirty_vars)
+
+/client/proc/see_dirty_varedits()
+ set category = "Debug.Mapping"
+ set name = "Dirty Varedits"
+
+ var/list/dat = list()
+ dat += "Abandon all hope ye who enter here "
+ for(var/thing in GLOB.dirty_vars)
+ dat += "[thing] "
+ CHECK_TICK
+ var/datum/browser/popup = new(usr, "dirty_vars", "Dirty Varedits", nwidth = 900, nheight = 750)
+ popup.set_content(dat.Join())
+ popup.open()
+#endif
diff --git a/code/modules/admin/verbs/load_event_level.dm b/code/modules/admin/verbs/load_event_level.dm
index 165506376b9b..72d004e03261 100644
--- a/code/modules/admin/verbs/load_event_level.dm
+++ b/code/modules/admin/verbs/load_event_level.dm
@@ -24,8 +24,6 @@
// Get dims & guesstimate center turf (in practice, current implem means min is always 1)
var/dim_x = boundaries[MAP_MAXX] - boundaries[MAP_MINX] + 1
var/dim_y = boundaries[MAP_MAXY] - boundaries[MAP_MINY] + 1
- var/center_x = boundaries[MAP_MINX] + round(dim_x / 2) // Technically off by 0.5 due to above +1. Whatever
- var/center_y = boundaries[MAP_MINY] + round(dim_y / 2)
var/prompt = alert(C, "Are you SURE you want to load this template as level ? This is SLOW and can freeze server for a bit. Dimensions are: [dim_x] x [dim_y]", "Template Confirm" ,"Yes","Nope!")
if(prompt != "Yes")
@@ -40,6 +38,9 @@
to_chat(C, "Failed to load the template to a Z-Level! Sorry!")
return
+ var/center_x = round(loaded.bounds[MAP_MAXX] / 2) // Technically off by 0.5 due to above +1. Whatever
+ var/center_y = round(loaded.bounds[MAP_MAXY] / 2)
+
// Now notify the staff of the load - this goes in addition to the generic template load game log
message_admins("Successfully loaded template as new Z-Level by ckey: [logckey], template name: [template.name]", center_x, center_y, loaded.z_value)
if(isobserver(C?.mob))
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 221736b5c84f..113d585e44ef 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -245,7 +245,7 @@ GLOBAL_LIST_INIT(bgstate_options, list(
var/auto_observe = TRUE
/datum/preferences/New(client/C)
- key_bindings = deepCopyList(GLOB.hotkey_keybinding_list_by_key) // give them default keybinds and update their movement keys
+ key_bindings = deep_copy_list(GLOB.hotkey_keybinding_list_by_key) // give them default keybinds and update their movement keys
macros = new(C, src)
if(istype(C))
owner = C
diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm
index 0c1a7a31b5e8..c822bedd0f7b 100644
--- a/code/modules/client/preferences_gear.dm
+++ b/code/modules/client/preferences_gear.dm
@@ -515,6 +515,10 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name)
display_name = "Card, Uno Reverse - yellow"
path = /obj/item/toy/handcard/uno_reverse_yellow
+/datum/gear/toy/card/trading_card
+ display_name = "Card, random WeyYu Trading"
+ path = /obj/item/toy/trading_card
+
/datum/gear/toy/deck
display_name = "Deck of cards, regular"
path = /obj/item/toy/deck
@@ -523,6 +527,10 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name)
display_name = "Deck of cards, Uno"
path = /obj/item/toy/deck/uno
+/datum/gear/toy/trading_card
+ display_name = "Trading Card Packet"
+ path = /obj/item/storage/fancy/trading_card
+
/datum/gear/toy/d6
display_name = "Die, 6 sides"
path = /obj/item/toy/dice
diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm
index 2261ddf5ebfa..8f3d10c102ce 100644
--- a/code/modules/client/preferences_savefile.dm
+++ b/code/modules/client/preferences_savefile.dm
@@ -100,7 +100,7 @@
/proc/sanitize_keybindings(value)
var/list/base_bindings = sanitize_islist(value, list())
if(!length(base_bindings))
- base_bindings = deepCopyList(GLOB.hotkey_keybinding_list_by_key)
+ base_bindings = deep_copy_list(GLOB.hotkey_keybinding_list_by_key)
for(var/key in base_bindings)
base_bindings[key] = base_bindings[key] & GLOB.keybindings_by_name
if(!length(base_bindings[key]))
diff --git a/code/modules/client/tgui_macro.dm b/code/modules/client/tgui_macro.dm
index 5159a8b7414c..cd621cebab84 100644
--- a/code/modules/client/tgui_macro.dm
+++ b/code/modules/client/tgui_macro.dm
@@ -126,7 +126,7 @@ GLOBAL_LIST_EMPTY(ui_data_keybindings)
if(choice == "Cancel")
return TRUE
prefs.hotkeys = (choice == "Hotkey")
- prefs.key_bindings = (prefs.hotkeys) ? deepCopyList(GLOB.hotkey_keybinding_list_by_key) : deepCopyList(GLOB.classic_keybinding_list_by_key)
+ prefs.key_bindings = (prefs.hotkeys) ? deep_copy_list(GLOB.hotkey_keybinding_list_by_key) : deep_copy_list(GLOB.classic_keybinding_list_by_key)
INVOKE_ASYNC(owner, /client/proc/set_macros)
prefs.save_preferences()
return TRUE
diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm
index 23e586c4fa29..91e2076a7314 100644
--- a/code/modules/clothing/under/marine_uniform.dm
+++ b/code/modules/clothing/under/marine_uniform.dm
@@ -1000,7 +1000,7 @@
/obj/item/clothing/under/marine/cbrn //CBRN MOPP suit
name = "\improper M3 MOPP suit"
- desc = "M3 MOPP suits are specially designed and engineered to protect the wearer from unshielded exposure to any Chemical, Biological, Radiological, or Nuclear (CBRN) threats in the field. Despite somewhat resembling commonplace synthetic rubber HAZMAT suits, the Venlar composition provides a significantly more dense and durable baseline material, allowing for modifications without the loss of its air-tight nature. The wearer’s comfort has been significantly taken into consideration, with the suit providing sufficient freedom of movement for even delicate maneuvers and movements once it is donned. As the sealed environment retains many issues from the past, measures have been taken to significantly reduce the suit's passive heat absorption and increase internal absorbance through linings, as well as the capability to fully integrate with external cooling, air cycling, and other life support systems. Strips of M11 detector paper are included with each suit, designed to be slotted into the dominant arm of the wearer’s protective suit, the non-dominant wrist, and then back to the knee, providing at-a-glance warning signs across alternating sides of the body while working. The arm and knee markers are intended to be on the user's dominant The papers change color upon contact with harmful chemical agents, displaying a clear white initially and turning red when activated. The suit has a recommended lifespan of twenty-four hours once contact with a toxic environment is made, but depending on the severity this can be shortened to eight hours or less. Beyond that point, the accuracy of the detector papers deteriorates significantly, as does the protection of the suit itself."
+ desc = "M3 MOPP suits are specially designed and engineered to protect the wearer from unshielded exposure to any Chemical, Biological, Radiological, or Nuclear (CBRN) threats in the field. The suit has a recommended lifespan of twenty-four hours once contact with a toxic environment is made, but depending on the severity this can be shortened to eight hours or less."
desc_lore = "Since the outbreak of the New Earth Plague in 2157 and the subsequent Interstellar Commerce Commission (ICC) sanctioned decontamination of the colony and its 40 million inhabitants, the abandoned colony has been left under a strict quarantine blockade to prevent any potential scavengers from spreading what’s left of the highly-durable airborne flesh-eating bacteria. Following those events, the three major superpowers have been investing heavily in the development and procurement of CBRN equipment, in no small part due to the extensive damage that the plague and other similar bioweapons could do. The \"Marine 70\" upgrade package and the launch of the M3 pattern armor series saw the first M3-M prototypes approved for CBRN usage."
flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE
icon_state = "cbrn"
diff --git a/code/modules/cm_preds/yaut_weapons.dm b/code/modules/cm_preds/yaut_weapons.dm
index 9cb8a8bef3fc..34233f2ee9cd 100644
--- a/code/modules/cm_preds/yaut_weapons.dm
+++ b/code/modules/cm_preds/yaut_weapons.dm
@@ -938,7 +938,7 @@
/obj/item/weapon/gun/energy/yautja/plasmarifle/set_gun_config_values()
..()
- set_fire_delay(FIRE_DELAY_TIER_6*2)
+ set_fire_delay(FIRE_DELAY_TIER_4*2)
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10
accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10
scatter = SCATTER_AMOUNT_TIER_6
diff --git a/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm b/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm
new file mode 100644
index 000000000000..2c8ec04594ad
--- /dev/null
+++ b/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm
@@ -0,0 +1,51 @@
+// /obj/effect/landmark/survivor_spawner/lv624_corporate_dome/cl
+// corporatedomehold.dmm
+
+/datum/equipment_preset/survivor/wy/executive
+ name = "Survivor - LV-624 Paranoid Corporate Liaison"
+ flags = EQUIPMENT_PRESET_START_OF_ROUND
+ paygrade = PAY_SHORT_WYC5
+ skills = /datum/skills/civilian/survivor/manager
+ assignment = "LV-624 Corporate Liaison"
+ idtype = /obj/item/card/id/silver/clearance_badge/cl
+ faction_group = list(FACTION_WY, FACTION_SURVIVOR)
+ access = list(
+ ACCESS_WY_GENERAL,
+ ACCESS_WY_COLONIAL,
+ ACCESS_WY_MEDICAL,
+ ACCESS_WY_SECURITY,
+ ACCESS_WY_RESEARCH,
+ ACCESS_WY_ARMORY,
+ ACCESS_CIVILIAN_PUBLIC,
+ ACCESS_CIVILIAN_RESEARCH,
+ ACCESS_CIVILIAN_ENGINEERING,
+ ACCESS_CIVILIAN_LOGISTICS,
+ ACCESS_CIVILIAN_BRIG,
+ ACCESS_CIVILIAN_MEDBAY,
+ ACCESS_CIVILIAN_COMMAND,
+ )
+ languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_RUSSIAN)
+
+ survivor_variant = CORPORATE_SURVIVOR
+
+/datum/equipment_preset/survivor/wy/executive/load_gear(mob/living/carbon/human/new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/field(new_human), WEAR_BODY)
+ if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD])
+ add_ice_colony_survivor_equipment(new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD)
+ if(new_human.disabilities & NEARSIGHTED)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/prescription(new_human), WEAR_EYES)
+ else
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp78(new_human), WEAR_WAIST)
+ new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/secure/briefcase(new_human), WEAR_L_HAND)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/med_small_stack(new_human), WEAR_IN_BACK)
+ add_random_cl_survivor_loot(new_human)
+ add_random_cl_survivor_loot(new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/document(new_human), WEAR_R_STORE)
diff --git a/code/modules/lighting/lighting_static/static_lighting_turf.dm b/code/modules/lighting/lighting_static/static_lighting_turf.dm
index 2fe918fa88bb..ec91e17e4fca 100644
--- a/code/modules/lighting/lighting_static/static_lighting_turf.dm
+++ b/code/modules/lighting/lighting_static/static_lighting_turf.dm
@@ -31,7 +31,8 @@
return !(luminosity || dynamic_lumcount)
-/turf/proc/change_area(area/old_area, area/new_area)
+///Transfer the lighting of one area to another
+/turf/proc/transfer_area_lighting(area/old_area, area/new_area)
if(SSlighting.initialized)
if (new_area.static_lighting != old_area.static_lighting)
if (new_area.static_lighting)
@@ -44,6 +45,8 @@
if(new_area.lighting_effect)
overlays += new_area.lighting_effect
+
+
/turf/proc/static_generate_missing_corners()
if (!lighting_corner_NE)
lighting_corner_NE = new/datum/static_lighting_corner(src, NORTH|EAST)
diff --git a/code/modules/logging/global_logs.dm b/code/modules/logging/global_logs.dm
index e0055907d67a..3fbcb70a1a8d 100644
--- a/code/modules/logging/global_logs.dm
+++ b/code/modules/logging/global_logs.dm
@@ -28,6 +28,9 @@ GLOBAL_PROTECT(scheduler_stats)
GLOBAL_VAR(strain_logs)
GLOBAL_PROTECT(strain_logs)
+GLOBAL_VAR(mapping_log)
+GLOBAL_PROTECT(mapping_log)
+
GLOBAL_VAR(round_stats)
GLOBAL_PROTECT(round_stats)
diff --git a/code/modules/mapping/map_template.dm b/code/modules/mapping/map_template.dm
index 35f7d30a9732..50a343635de9 100644
--- a/code/modules/mapping/map_template.dm
+++ b/code/modules/mapping/map_template.dm
@@ -7,6 +7,20 @@
var/datum/parsed_map/cached_map
var/keep_cached_map = FALSE
+ ///Default area associated with the map template
+ var/default_area
+
+ ///if true, turfs loaded from this template are placed on top of the turfs already there, defaults to TRUE
+ var/should_place_on_top = TRUE
+
+ ///if true, creates a list of all atoms created by this template loading, defaults to FALSE
+ var/returns_created_atoms = FALSE
+
+ ///the list of atoms created by this template being loaded, only populated if returns_created_atoms is TRUE
+ var/list/created_atoms = list()
+ //make sure this list is accounted for/cleared if you request it from ssatoms!
+
+
/datum/map_template/New(path = null, rename = null, cache = FALSE)
if(path)
mappath = path
@@ -25,71 +39,129 @@
cached_map = parsed
return bounds
-/datum/parsed_map/proc/initTemplateBounds()
- var/list/obj/structure/cable/cables = list()
- var/list/atom/atoms = list()
- var/list/area/areas = list()
+/datum/map_template/proc/initTemplateBounds(list/bounds)
+ if (!bounds) //something went wrong
+ stack_trace("[name] template failed to initialize correctly!")
+ return
- var/list/turfs = block( locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]),
- locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]))
- for(var/L in turfs)
- var/turf/B = L
- atoms += B
- areas |= B.loc
- for(var/A in B)
- atoms += A
- if(istype(A, /obj/structure/cable))
- cables += A
- continue
+ var/list/atom/movable/movables = list()
+ var/list/obj/docking_port/stationary/ports = list()
+ var/list/area/areas = list()
+ var/list/turfs = block(
+ locate(
+ bounds[MAP_MINX],
+ bounds[MAP_MINY],
+ bounds[MAP_MINZ]
+ ),
+ locate(
+ bounds[MAP_MAXX],
+ bounds[MAP_MAXY],
+ bounds[MAP_MAXZ]
+ )
+ )
+ for(var/turf/current_turf as anything in turfs)
+ var/area/current_turfs_area = current_turf.loc
+ areas |= current_turfs_area
+ if(!SSatoms.initialized)
+ continue
+
+ for(var/movable_in_turf in current_turf)
+ if(istype(movable_in_turf, /obj/docking_port/mobile))
+ continue // mobile docking ports need to be initialized after their template has finished loading, to ensure that their bounds are setup
+ movables += movable_in_turf
+ if(istype(movable_in_turf, /obj/docking_port/stationary))
+ ports += movable_in_turf
+
+ // Not sure if there is some importance here to make sure the area is in z
+ // first or not. Its defined In Initialize yet its run first in templates
+ // BEFORE so... hummm
SSmapping.reg_in_areas_in_z(areas)
- SSatoms.InitializeAtoms(atoms)
- //SSmachines.setup_template_powernets(cables) // mapping TODO:
-
-/datum/map_template/proc/load_new_z()
- var/x = round((world.maxx - width)/2)
- var/y = round((world.maxy - height)/2)
+ if(!SSatoms.initialized)
+ return
- var/datum/space_level/level = SSmapping.add_new_zlevel(name, list(ZTRAIT_AWAY = TRUE))
- var/datum/parsed_map/parsed = load_map(file(mappath), x, y, level.z_value, no_changeturf=(SSatoms.initialized == INITIALIZATION_INSSATOMS), placeOnTop=TRUE)
+ SSatoms.InitializeAtoms(areas + turfs + movables, returns_created_atoms ? created_atoms : null)
+
+ for(var/turf/unlit as anything in turfs)
+ var/area/loc_area = unlit.loc
+ if(!loc_area.static_lighting)
+ continue
+ unlit.static_lighting_build_overlay()
+
+/datum/map_template/proc/load_new_z(secret = FALSE)
+ var/x = round((world.maxx - width) * 0.5) + 1
+ var/y = round((world.maxy - height) * 0.5) + 1
+
+ var/datum/space_level/level = SSmapping.add_new_zlevel(name, list(), contain_turfs = FALSE)
+ var/datum/parsed_map/parsed = load_map(
+ file(mappath),
+ x,
+ y,
+ level.z_value,
+ no_changeturf = (SSatoms.initialized == INITIALIZATION_INSSATOMS),
+ place_on_top = should_place_on_top,
+ new_z = TRUE,
+ )
var/list/bounds = parsed.bounds
if(!bounds)
return FALSE
repopulate_sorted_areas()
-
//initialize things that are normally initialized after map load
- parsed.initTemplateBounds()
- log_game("Z-level [name] loaded at at [x],[y],[world.maxz]")
+ initTemplateBounds(bounds)
+ log_game("Z-level [name] loaded at [x],[y],[world.maxz]")
return level
-/datum/map_template/proc/load(turf/T, centered, delete)
+/datum/map_template/proc/load(turf/T, centered = FALSE, delete = FALSE)
if(centered)
T = locate(T.x - round(width/2) , T.y - round(height/2) , T.z)
if(!T)
return
- if(T.x + width > world.maxx)
+ if((T.x+width) - 1 > world.maxx)
return
- if(T.y + height > world.maxy)
+ if((T.y+height) - 1 > world.maxy)
return
// Accept cached maps, but don't save them automatically - we don't want
// ruins clogging up memory for the whole round.
var/datum/parsed_map/parsed = cached_map || new(file(mappath))
cached_map = keep_cached_map ? parsed : null
- if(!parsed.load(T.x, T.y, T.z, cropMap = TRUE, no_changeturf = (SSatoms.initialized == INITIALIZATION_INSSATOMS), placeOnTop = TRUE, delete = delete))
+
+ var/list/turf_blacklist = list()
+ update_blacklist(T, turf_blacklist)
+
+ UNSETEMPTY(turf_blacklist)
+ parsed.turf_blacklist = turf_blacklist
+ if(!parsed.load(
+ T.x,
+ T.y,
+ T.z,
+ crop_map = TRUE,
+ no_changeturf = (SSatoms.initialized == INITIALIZATION_INSSATOMS),
+ place_on_top = should_place_on_top,
+ delete = delete
+ ))
return
+
var/list/bounds = parsed.bounds
if(!bounds)
return
+ repopulate_sorted_areas()
+
//initialize things that are normally initialized after map load
- parsed.initTemplateBounds()
+ initTemplateBounds(bounds)
- log_game("[name] loaded at at [T.x],[T.y],[T.z]")
+ log_game("[name] loaded at [T.x],[T.y],[T.z]")
return bounds
+/datum/map_template/proc/post_load()
+ return
+
+/datum/map_template/proc/update_blacklist(turf/T, list/input_blacklist)
+ return
+
/datum/map_template/proc/get_affected_turfs(turf/T, centered = FALSE)
var/turf/placement = T
if(centered)
diff --git a/code/modules/mapping/preloader.dm b/code/modules/mapping/preloader.dm
index e8eee898a711..bd89d0e030a2 100644
--- a/code/modules/mapping/preloader.dm
+++ b/code/modules/mapping/preloader.dm
@@ -1,33 +1,42 @@
// global datum that will preload variables on atoms instanciation
GLOBAL_VAR_INIT(use_preloader, FALSE)
-GLOBAL_DATUM_INIT(_preloader, /datum/map_preloader, new)
+GLOBAL_LIST_INIT(_preloader_attributes, null)
+GLOBAL_LIST_INIT(_preloader_path, null)
/// Preloader datum
/datum/map_preloader
- parent_type = /datum
var/list/attributes
var/target_path
-/datum/map_preloader/proc/setup(list/the_attributes, path)
+/world/proc/preloader_setup(list/the_attributes, path)
if(the_attributes.len)
GLOB.use_preloader = TRUE
- attributes = the_attributes
- target_path = path
+ GLOB._preloader_attributes = the_attributes
+ GLOB._preloader_path = path
-/datum/map_preloader/proc/load(atom/what)
+/world/proc/preloader_load(atom/what)
GLOB.use_preloader = FALSE
+ var/list/attributes = GLOB._preloader_attributes
for(var/attribute in attributes)
var/value = attributes[attribute]
if(islist(value))
- value = deepCopyList(value)
+ value = deep_copy_list(value)
+ #ifdef TESTING
+ if(what.vars[attribute] == value)
+ var/message = "[what.type] at [AREACOORD(what)] - VAR: [attribute] = [isnull(value) ? "null" : (isnum(value) ? value : "\"[value]\"")] "
+ log_mapping("DIRTY VAR: [message]")
+ GLOB.dirty_vars += message
+ #endif
what.vars[attribute] = value
-/// Area passthrough: do not instanciate a new area, reuse the current one
+/// Template noop (no operation) is used to skip a turf or area when the template is loaded this allows for template transparency
+/// ex. if a ship has gaps in it's design, you would use template_noop to fill these in so that when the ship moves z-level, any
+/// tiles these gaps land on will not be deleted and replaced with the ships (empty) tiles
/area/template_noop
name = "Area Passthrough"
icon_state = "noop"
-/// Turf passthrough: do not instanciate a new turf, reuse the current one
+/// See above explanation
/turf/template_noop
name = "Turf Passthrough"
icon_state = "noop"
diff --git a/code/modules/mapping/reader.dm b/code/modules/mapping/reader.dm
index 969dc6a795f8..424ab22ae4ac 100644
--- a/code/modules/mapping/reader.dm
+++ b/code/modules/mapping/reader.dm
@@ -1,7 +1,67 @@
///////////////////////////////////////////////////////////////
//SS13 Optimized Map loader
//////////////////////////////////////////////////////////////
-#define SPACE_KEY "space"
+// We support two different map formats
+// It is kinda possible to process them together, but if we split them up
+// I can make optimization decisions more easily
+/**
+ * DMM SPEC:
+ * DMM is split into two parts. First we have strings of text linked to lists of paths and their modifications (I will call this the cache)
+ * We call these strings "keys" and the things they point to members. Keys have a static length
+ *
+ * The second part is a list of locations matched to a string of keys. (I'll be calling this the grid)
+ * These are used to lookup the cache we built earlier.
+ * We store location lists as grid_sets. the lines represent different things depending on the spec
+ *
+ * In standard DMM (which you can treat as the base case, since it also covers weird modifications) each line
+ * represents an x file, and there's typically only one grid set per z level.
+ * The meme is you can look at a DMM formatted map and literally see what it should roughly look like
+ * This differs in TGM, and we can pull some performance from this
+ *
+ * Any restrictions here also apply to TGM
+ *
+ * /tg/ Restrictions:
+ * Paths have a specified order. First atoms in the order in which they should be loaded, then a single turf, then the area of the cell
+ * DMM technically supports turf stacking, but this is deprecated for all formats
+
+ */
+#define MAP_DMM "dmm"
+/**
+ * TGM SPEC:
+ * TGM is a derevation of DMM, with restrictions placed on it
+ * to make it easier to parse and to reduce merge conflicts/ease their resolution
+ *
+ * Requirements:
+ * Each "statement" in a key's details ends with a new line, and wrapped in (...)
+ * All paths end with either a comma or occasionally a {, then a new line
+ * Excepting the area, who is listed last and ends with a ) to mark the end of the key
+ *
+ * {} denotes a list of variable edits applied to the path that came before the first {
+ * the final } is followed by a comma, and then a new line
+ * Variable edits have the form \tname = value;\n
+ * Except the last edit, which has no final ;, and just ends in a newline
+ * No extra padding is permitted
+ * Many values are supported. See parse_constant()
+ * Strings must be wrapped in "...", files in '...', and lists in list(...)
+ * Files are kinda susy, and may not actually work. buyer beware
+ * Lists support assoc values as expected
+ * These constants can be further embedded into lists
+ *
+ * There can be no padding in front of, or behind a path
+ *
+ * Therefore:
+ * "key" = (
+ * /path,
+ * /other/path{
+ * var = list("name" = 'filepath');
+ * other_var = /path
+ * },
+ * /turf,
+ * /area)
+ *
+ */
+#define MAP_TGM "tgm"
+#define MAP_UNKNOWN "unknown"
/datum/grid_set
var/xcrd
@@ -11,9 +71,20 @@
/datum/parsed_map
var/original_path
+ var/map_format
+ /// The length of a key in this file. This is promised by the standard to be static
var/key_len = 0
+ /// The length of a line in this file. Not promised by dmm but standard dmm uses it, so we can trust it
+ var/line_len = 0
+ /// If we've expanded world.maxx
+ var/expanded_y = FALSE
+ /// If we've expanded world.maxy
+ var/expanded_x = FALSE
var/list/grid_models = list()
var/list/gridSets = list()
+ /// List of area types we've loaded AS A PART OF THIS MAP
+ /// We do this to allow non unique areas, so we'll only load one per map
+ var/list/area/loaded_areas = list()
var/list/modelCache
@@ -22,33 +93,97 @@
/// Offset bounds. Same as parsed_bounds until load().
var/list/bounds
+ ///any turf in this list is skipped inside of build_coordinate. Lazy assoc list
+ var/list/turf_blacklist
+
// raw strings used to represent regexes more accurately
// '' used to avoid confusing syntax highlighting
- var/static/regex/dmmRegex = new(@'"([a-zA-Z]+)" = \(((?:.|\n)*?)\)\n(?!\t)|\((\d+),(\d+),(\d+)\) = \{"([a-zA-Z\n]*)"\}', "g")
- var/static/regex/trimQuotesRegex = new(@'^[\s\n]+"?|"?[\s\n]+$|^"|"$', "g")
- var/static/regex/trimRegex = new(@'^[\s\n]+|[\s\n]+$', "g")
+ var/static/regex/dmm_regex = new(@'"([a-zA-Z]+)" = (?:\(\n|\()((?:.|\n)*?)\)\n(?!\t)|\((\d+),(\d+),(\d+)\) = \{"([a-zA-Z\n]*)"\}', "g")
+ /// Matches key formats in TMG (IE: newline after the \()
+ var/static/regex/matches_tgm = new(@'^"[A-z]*"[\s]*=[\s]*\([\s]*\n', "m")
+ /// Pulls out key value pairs for TGM
+ var/static/regex/var_edits_tgm = new(@'^\t([A-z]*) = (.*?);?$')
+ /// Pulls out model paths for DMM
+ var/static/regex/model_path = new(@'(\/[^\{]*?(?:\{.*?\})?)(?:,|$)', "g")
+
+ /// If we are currently loading this map
+ var/loading = FALSE
#ifdef TESTING
var/turfsSkipped = 0
#endif
-/// Shortcut function to parse a map and apply it to the world.
-///
-/// - `dmm_file`: A .dmm file to load (Required).
-/// - `x_offset`, `y_offset`, `z_offset`: Positions representign where to load the map (Optional).
-/// - `cropMap`: When true, the map will be cropped to fit the existing world dimensions (Optional).
-/// - `measureOnly`: When true, no changes will be made to the world (Optional).
-/// - `no_changeturf`: When true, [turf/AfterChange] won't be called on loaded turfs
-/// - `x_lower`, `x_upper`, `y_lower`, `y_upper`: Coordinates (relative to the map) to crop to (Optional).
-/// - `placeOnTop`: Whether to use [turf/PlaceOnTop] rather than [turf/ChangeTurf] (Optional).
-/proc/load_map(dmm_file as file, x_offset as num, y_offset as num, z_offset as num, cropMap as num, measureOnly as num, no_changeturf as num, x_lower = -INFINITY as num, x_upper = INFINITY as num, y_lower = -INFINITY as num, y_upper = INFINITY as num, placeOnTop = FALSE as num)
- var/datum/parsed_map/parsed = new(dmm_file, x_lower, x_upper, y_lower, y_upper, measureOnly)
- if(parsed.bounds && !measureOnly)
- parsed.load(x_offset, y_offset, z_offset, cropMap, no_changeturf, x_lower, x_upper, y_lower, y_upper, placeOnTop)
- return parsed
+/datum/parsed_map/proc/copy()
+ // Avoids duped work just in case
+ build_cache()
+ var/datum/parsed_map/newfriend = new()
+ newfriend.original_path = original_path
+ newfriend.map_format = map_format
+ newfriend.key_len = key_len
+ newfriend.line_len = line_len
+ newfriend.grid_models = grid_models.Copy()
+ newfriend.gridSets = gridSets.Copy()
+ newfriend.modelCache = modelCache.Copy()
+ newfriend.parsed_bounds = parsed_bounds.Copy()
+ // Copy parsed bounds to reset to initial values
+ newfriend.bounds = parsed_bounds.Copy()
+ newfriend.turf_blacklist = turf_blacklist?.Copy()
+ return newfriend
+
+//text trimming (both directions) helper macro
+#define TRIM_TEXT(text) (trim_reduced(text))
+
+/**
+ * Helper and recommened way to load a map file
+ * - dmm_file: The path to the map file
+ * - x_offset: The x offset to load the map at
+ * - y_offset: The y offset to load the map at
+ * - z_offset: The z offset to load the map at
+ * - crop_map: If true, the map will be cropped to the world bounds
+ * - measure_only: If true, the map will not be loaded, but the bounds will be calculated
+ * - no_changeturf: If true, the map will not call /turf/AfterChange
+ * - x_lower: The minimum x coordinate to load
+ * - x_upper: The maximum x coordinate to load
+ * - y_lower: The minimum y coordinate to load
+ * - y_upper: The maximum y coordinate to load
+ * - z_lower: The minimum z coordinate to load
+ * - z_upper: The maximum z coordinate to load
+ * - place_on_top: Whether to use /turf/proc/PlaceOnTop rather than /turf/proc/ChangeTurf
+ * - new_z: If true, a new z level will be created for the map
+ * - delete: CM/TGMC addition, if we need to manually clear turf contents before spawning stuff
+ */
+/proc/load_map(
+ dmm_file,
+ x_offset = 0,
+ y_offset = 0,
+ z_offset = 0,
+ crop_map = FALSE,
+ measure_only = FALSE,
+ no_changeturf = FALSE,
+ x_lower = -INFINITY,
+ x_upper = INFINITY,
+ y_lower = -INFINITY,
+ y_upper = INFINITY,
+ z_lower = -INFINITY,
+ z_upper = INFINITY,
+ place_on_top = FALSE,
+ new_z = FALSE,
+ delete = FALSE,
+)
+ if(!(dmm_file in GLOB.cached_maps))
+ GLOB.cached_maps[dmm_file] = new /datum/parsed_map(dmm_file)
+
+ var/datum/parsed_map/parsed_map = GLOB.cached_maps[dmm_file]
+ parsed_map = parsed_map.copy()
+ if(!measure_only && !isnull(parsed_map.bounds))
+ parsed_map.load(x_offset, y_offset, z_offset, crop_map, no_changeturf, x_lower, x_upper, y_lower, y_upper, z_lower, z_upper, place_on_top, new_z, delete)
+ return parsed_map
/// Parse a map, possibly cropping it.
-/datum/parsed_map/New(tfile, x_lower = -INFINITY, x_upper = INFINITY, y_lower = -INFINITY, y_upper=INFINITY, measureOnly=FALSE)
+/datum/parsed_map/New(tfile, x_lower = -INFINITY, x_upper = INFINITY, y_lower = -INFINITY, y_upper=INFINITY, z_lower = -INFINITY, z_upper=INFINITY, measureOnly=FALSE)
+ // This proc sleeps for like 6 seconds. why?
+ // Is it file accesses? if so, can those be done ahead of time, async to save on time here? I wonder.
+ // Love ya :)
if(isfile(tfile))
original_path = "[tfile]"
tfile = file2text(tfile)
@@ -56,16 +191,30 @@
// create a new datum without loading a map
return
- bounds = parsed_bounds = list(1.#INF, 1.#INF, 1.#INF, -1.#INF, -1.#INF, -1.#INF)
- var/stored_index = 1
+ src.bounds = parsed_bounds = list(1.#INF, 1.#INF, 1.#INF, -1.#INF, -1.#INF, -1.#INF)
+
+ if(findtext(tfile, matches_tgm))
+ map_format = MAP_TGM
+ else
+ map_format = MAP_DMM // Fallback
+
+ // lists are structs don't you know :)
+ var/list/bounds = src.bounds
+ var/list/grid_models = src.grid_models
+ var/key_len = src.key_len
+ var/line_len = src.line_len
+ var/stored_index = 1
+ var/list/regexOutput
//multiz lool
- while(dmmRegex.Find(tfile, stored_index))
- stored_index = dmmRegex.next
+ while(dmm_regex.Find(tfile, stored_index))
+ stored_index = dmm_regex.next
+ // Datum var lookup is expensive, this isn't
+ regexOutput = dmm_regex.group
// "aa" = (/type{vars=blah})
- if(dmmRegex.group[1]) // Model
- var/key = dmmRegex.group[1]
+ if(regexOutput[1]) // Model
+ var/key = regexOutput[1]
if(grid_models[key]) // Duplicate model keys are ignored in DMMs
continue
if(key_len != length(key))
@@ -74,328 +223,776 @@
else
CRASH("Inconsistent key length in DMM")
if(!measureOnly)
- grid_models[key] = dmmRegex.group[2]
+ grid_models[key] = regexOutput[2]
// (1,1,1) = {"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"}
- else if(dmmRegex.group[3]) // Coords
+ else if(regexOutput[3]) // Coords
if(!key_len)
CRASH("Coords before model definition in DMM")
- var/curr_x = text2num(dmmRegex.group[3])
-
+ var/curr_x = text2num(regexOutput[3])
if(curr_x < x_lower || curr_x > x_upper)
continue
+ var/curr_y = text2num(regexOutput[4])
+ if(curr_y < y_lower || curr_y > y_upper)
+ continue
+
+ var/curr_z = text2num(regexOutput[5])
+ if(curr_z < z_lower || curr_z > z_upper)
+ continue
+
var/datum/grid_set/gridSet = new
gridSet.xcrd = curr_x
- //position of the currently processed square
- gridSet.ycrd = text2num(dmmRegex.group[4])
- gridSet.zcrd = text2num(dmmRegex.group[5])
+ gridSet.ycrd = curr_y
+ gridSet.zcrd = curr_z
- bounds[MAP_MINX] = min(bounds[MAP_MINX], clamp(gridSet.xcrd, x_lower, x_upper))
- bounds[MAP_MINZ] = min(bounds[MAP_MINZ], gridSet.zcrd)
- bounds[MAP_MAXZ] = max(bounds[MAP_MAXZ], gridSet.zcrd)
+ bounds[MAP_MINX] = min(bounds[MAP_MINX], curr_x)
+ bounds[MAP_MINZ] = min(bounds[MAP_MINZ], curr_y)
+ bounds[MAP_MAXZ] = max(bounds[MAP_MAXZ], curr_z)
- var/list/gridLines = splittext(dmmRegex.group[6], "\n")
+ var/list/gridLines = splittext(regexOutput[6], "\n")
gridSet.gridLines = gridLines
var/leadingBlanks = 0
- while(leadingBlanks < gridLines.len && gridLines[++leadingBlanks] == "")
+ while(leadingBlanks < length(gridLines) && gridLines[++leadingBlanks] == "")
if(leadingBlanks > 1)
gridLines.Cut(1, leadingBlanks) // Remove all leading blank lines.
- if(!gridLines.len) // Skip it if only blank lines exist.
+ if(!length(gridLines)) // Skip it if only blank lines exist.
continue
gridSets += gridSet
- if(gridLines.len && gridLines[gridLines.len] == "")
- gridLines.Cut(gridLines.len) // Remove only one blank line at the end.
+ if(gridLines[length(gridLines)] == "")
+ gridLines.Cut(length(gridLines)) // Remove only one blank line at the end.
+
+ bounds[MAP_MINY] = min(bounds[MAP_MINY], gridSet.ycrd)
+ gridSet.ycrd += length(gridLines) - 1 // Start at the top and work down
+ bounds[MAP_MAXY] = max(bounds[MAP_MAXY], gridSet.ycrd)
- bounds[MAP_MINY] = min(bounds[MAP_MINY], clamp(gridSet.ycrd, y_lower, y_upper))
- gridSet.ycrd += gridLines.len - 1 // Start at the top and work down
- bounds[MAP_MAXY] = max(bounds[MAP_MAXY], clamp(gridSet.ycrd, y_lower, y_upper))
+ if(!line_len)
+ line_len = length(gridLines[1])
- var/maxx = gridSet.xcrd
- if(gridLines.len) //Not an empty map
- maxx = max(maxx, gridSet.xcrd + length(gridLines[1]) / key_len - 1)
+ var/maxx = curr_x
+ if(length(gridLines)) //Not an empty map
+ maxx = max(maxx, curr_x + line_len / key_len - 1)
- bounds[MAP_MAXX] = clamp(max(bounds[MAP_MAXX], maxx), x_lower, x_upper)
+ bounds[MAP_MAXX] = max(bounds[MAP_MAXX], maxx)
CHECK_TICK
// Indicate failure to parse any coordinates by nulling bounds
if(bounds[1] == 1.#INF)
- bounds = null
- parsed_bounds = bounds
+ src.bounds = null
+ else
+ // Clamp all our mins and maxes down to the proscribed limits
+ bounds[MAP_MINX] = clamp(bounds[MAP_MINX], x_lower, x_upper)
+ bounds[MAP_MAXX] = clamp(bounds[MAP_MAXX], x_lower, x_upper)
+ bounds[MAP_MINY] = clamp(bounds[MAP_MINY], y_lower, y_upper)
+ bounds[MAP_MAXY] = clamp(bounds[MAP_MAXY], y_lower, y_upper)
+ bounds[MAP_MINZ] = clamp(bounds[MAP_MINZ], z_lower, z_upper)
+ bounds[MAP_MAXZ] = clamp(bounds[MAP_MAXZ], z_lower, z_upper)
+
+ parsed_bounds = src.bounds
+ src.key_len = key_len
+ src.line_len = line_len
+
+/// Iterates over all grid sets and returns ones with z values within the given bounds. Inclusive
+/datum/parsed_map/proc/filter_grid_sets_based_on_z_bounds(lower_z, upper_z)
+ var/list/filtered_sets = list()
+ for(var/datum/grid_set/grid_set as anything in gridSets)
+ if(grid_set.zcrd < lower_z)
+ continue
+ if(grid_set.zcrd > upper_z)
+ continue
+ filtered_sets += grid_set
+ return filtered_sets
-/// Load the parsed map into the world. See [/proc/load_map] for arguments.
-/datum/parsed_map/proc/load(x_offset, y_offset, z_offset, cropMap, no_changeturf, x_lower, x_upper, y_lower, y_upper, placeOnTop, delete)
+/// Load the parsed map into the world. You probably want [/proc/load_map]. Keep the signature the same.
+/datum/parsed_map/proc/load(x_offset = 0, y_offset = 0, z_offset = 0, crop_map = FALSE, no_changeturf = FALSE, x_lower = -INFINITY, x_upper = INFINITY, y_lower = -INFINITY, y_upper = INFINITY, z_lower = -INFINITY, z_upper = INFINITY, place_on_top = FALSE, new_z = FALSE, delete = FALSE)
//How I wish for RAII
Master.StartLoadingMap()
- . = _load_impl(x_offset, y_offset, z_offset, cropMap, no_changeturf, x_lower, x_upper, y_lower, y_upper, placeOnTop, delete)
+ . = _load_impl(x_offset, y_offset, z_offset, crop_map, no_changeturf, x_lower, x_upper, y_lower, y_upper, z_lower, z_upper, place_on_top, new_z, delete)
Master.StopLoadingMap()
+#define MAPLOADING_CHECK_TICK \
+ if(TICK_CHECK) { \
+ if(loading) { \
+ SSatoms.map_loader_stop(REF(src)); \
+ stoplag(); \
+ SSatoms.map_loader_begin(REF(src)); \
+ } else { \
+ stoplag(); \
+ } \
+ }
+
// Do not call except via load() above.
-/datum/parsed_map/proc/_load_impl(x_offset = 1, y_offset = 1, z_offset = world.maxz + 1, cropMap = FALSE, no_changeturf = FALSE, x_lower = -INFINITY, x_upper = INFINITY, y_lower = -INFINITY, y_upper = INFINITY, placeOnTop = FALSE, delete = FALSE)
- var/list/areaCache = list()
+/datum/parsed_map/proc/_load_impl(x_offset, y_offset, z_offset, crop_map, no_changeturf, x_lower, x_upper, y_lower, y_upper, z_lower, z_upper, place_on_top, new_z, delete)
+ PRIVATE_PROC(TRUE)
+ // Tell ss atoms that we're doing maploading
+ // We'll have to account for this in the following tick_checks so it doesn't overflow
+ loading = TRUE
+ SSatoms.map_loader_begin(REF(src))
+
+ // Loading used to be done in this proc
+ // We make the assumption that if the inner procs runtime, we WANT to do cleanup on them, but we should stil tell our parents we failed
+ // Since well, we did
+ var/sucessful = FALSE
+ switch(map_format)
+ if(MAP_TGM)
+ sucessful = _tgm_load(x_offset, y_offset, z_offset, crop_map, no_changeturf, x_lower, x_upper, y_lower, y_upper, z_lower, z_upper, place_on_top, new_z, delete)
+ else
+ sucessful = _dmm_load(x_offset, y_offset, z_offset, crop_map, no_changeturf, x_lower, x_upper, y_lower, y_upper, z_lower, z_upper, place_on_top, new_z, delete)
+
+ // And we are done lads, call it off
+ SSatoms.map_loader_stop(REF(src))
+ loading = FALSE
+
+ // CM: Disabled due to not using contained_turfs and SSarea_contents
+// if(new_z)
+// for(var/z_index in bounds[MAP_MINZ] to bounds[MAP_MAXZ])
+// SSmapping.build_area_turfs(z_index)
+
+ if(!no_changeturf)
+ var/list/turfs = block(
+ locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]),
+ locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]))
+ for(var/turf/T as anything in turfs)
+ //we do this after we load everything in. if we don't, we'll have weird atmos bugs regarding atmos adjacent turfs
+ T.AfterChange(CHANGETURF_IGNORE_AIR)
+
+ if(expanded_x || expanded_y)
+ SEND_GLOBAL_SIGNAL(COMSIG_GLOB_EXPANDED_WORLD_BOUNDS, expanded_x, expanded_y)
+
+ #ifdef TESTING
+ if(turfsSkipped)
+ testing("Skipped loading [turfsSkipped] default turfs")
+ #endif
+
+ return sucessful
+
+// Wanna clear something up about maps, talking in 255x255 here
+// In the tgm format, each gridset contains 255 lines, each line representing one tile, with 255 total gridsets
+// In the dmm format, each gridset contains 255 lines, each line representing one row of tiles, containing 255 * line length characters, with one gridset per z
+// You can think of dmm as storing maps in rows, whereas tgm stores them in columns
+/datum/parsed_map/proc/_tgm_load(x_offset, y_offset, z_offset, crop_map, no_changeturf, x_lower, x_upper, y_lower, y_upper, z_lower, z_upper, place_on_top, new_z, delete)
+ // setup
var/list/modelCache = build_cache(no_changeturf)
var/space_key = modelCache[SPACE_KEY]
var/list/bounds
src.bounds = bounds = list(1.#INF, 1.#INF, 1.#INF, -1.#INF, -1.#INF, -1.#INF)
- for(var/I in gridSets)
- var/datum/grid_set/gset = I
- var/ycrd = gset.ycrd + y_offset - 1
- var/zcrd = gset.zcrd + z_offset - 1
- if(!cropMap && ycrd > world.maxy)
- world.maxy = ycrd // Expand Y here. X is expanded in the loop below
+ // Building y coordinate ranges
+ var/y_relative_to_absolute = y_offset - 1
+ var/x_relative_to_absolute = x_offset - 1
+
+ // Ok so like. something important
+ // We talk in "relative" coords here, so the coordinate system of the map datum
+ // This is so we can do offsets, but it is NOT the same as positions in game
+ // That's why there's some uses of - y_relative_to_absolute here, to turn absolute positions into relative ones
+ // TGM maps process in columns, so the starting y will always be the max size
+ // We know y starts at 1
+ var/datum/grid_set/first_column = gridSets[1]
+ var/relative_y = first_column.ycrd
+ var/highest_y = relative_y + y_relative_to_absolute
+
+ if(!crop_map && highest_y > world.maxy)
+ if(new_z)
+ // Need to avoid improperly loaded area/turf_contents
+ world.increase_max_y(highest_y, map_load_z_cutoff = z_offset - 1)
+ else
+ world.increase_max_y(highest_y)
+ expanded_y = TRUE
+
+ // Skip Y coords that are above the smallest of the three params
+ // So maxy and y_upper get to act as thresholds, and relative_y can play
+ var/y_skip_above = min(world.maxy - y_relative_to_absolute, y_upper, relative_y)
+ // How many lines to skip because they'd be above the y cuttoff line
+ var/y_starting_skip = relative_y - y_skip_above
+ highest_y -= y_starting_skip
+
+ // Y is the LOWEST it will ever be here, so we can easily set a threshold for how low to go
+ var/line_count = length(first_column.gridLines)
+ var/lowest_y = relative_y - (line_count - 1) // -1 because we decrement at the end of the loop, not the start
+ var/y_ending_skip = max(max(y_lower, 1 - y_relative_to_absolute) - lowest_y, 0)
+
+ // X setup
+ var/x_delta_with = x_upper
+ if(crop_map)
+ // Take our smaller crop threshold yes?
+ x_delta_with = min(x_delta_with, world.maxx)
+
+ // We're gonna skip all the entries above the upper x, or maxx if cropMap is set
+ // The last column is guarenteed to have the highest x value we;ll encounter
+ // Even if z scales, this still works
+ var/datum/grid_set/last_column = gridSets[length(gridSets)]
+ var/final_x = last_column.xcrd + x_relative_to_absolute
+
+ if(final_x > x_delta_with)
+ // If our relative x is greater then X upper, well then we've gotta limit our expansion
+ var/delta = max(final_x - x_delta_with, 0)
+ final_x -= delta
+ if(final_x > world.maxx && !crop_map)
+ if(new_z)
+ // Need to avoid improperly loaded area/turf_contents
+ world.increase_max_x(final_x, map_load_z_cutoff = z_offset - 1)
+ else
+ world.increase_max_x(final_x)
+ expanded_x = TRUE
+
+ var/lowest_x = max(x_lower, 1 - x_relative_to_absolute)
+
+ // Amount we offset the grid zcrd to get the true zcrd
+ var/grid_z_offset = z_offset - 1
+ var/z_upper_set = z_upper < INFINITY
+ var/z_lower_set = z_lower > -INFINITY
+
+ // We make the assumption that the last block of turfs will have the highest embedded z in it
+ // true max zcrd
+ var/map_bounds_z_max = last_column.zcrd
+ var/z_upper_parsed = map_bounds_z_max + z_offset - 1
+ if(z_upper_set)
+ z_upper_parsed -= map_bounds_z_max - z_upper
+ if(z_lower_set)
+ var/offset_amount = z_lower - 1
+ z_upper_parsed -= offset_amount
+ grid_z_offset -= offset_amount
+
+ var/list/target_grid_sets = gridSets
+ if(z_lower_set || z_upper_set) // bounds are set, filter out gridsets for z levels we don't want
+ target_grid_sets = filter_grid_sets_based_on_z_bounds(z_lower, z_upper)
+
+ var/z_threshold = world.maxz
+ if(z_upper_parsed > z_threshold && crop_map)
+ for(var/i in z_threshold + 1 to z_upper_parsed) //create a new z_level if needed
+ world.incrementMaxZ()
+ if(!no_changeturf)
+ WARNING("Z-level expansion occurred without no_changeturf set, this may cause problems when /turf/AfterChange is called")
+
+ for(var/datum/grid_set/gset as anything in target_grid_sets)
+ var/true_xcrd = gset.xcrd + x_relative_to_absolute
+
+ // any cutoff of x means we just shouldn't iterate this gridset
+ if(final_x < true_xcrd || lowest_x > gset.xcrd)
+ continue
+
+ var/zcrd = gset.zcrd + grid_z_offset
+ // If we're using changeturf, we disable it if we load into a z level we JUST created
+ var/no_afterchange = no_changeturf || zcrd > z_threshold
+
+ // We're gonna track the first and last pairs of coords we find
+ // Since x is always incremented in steps of 1, we only need to deal in y
+ // The first x is guarenteed to be the lowest, the first y the highest, and vis versa
+ // This is faster then doing mins and maxes inside the hot loop below
+ var/first_found = FALSE
+ var/first_y = 0
+ var/last_y = 0
+
+ var/ycrd = highest_y
+ // Everything following this line is VERY hot.
+ for(var/i in 1 + y_starting_skip to line_count - y_ending_skip)
+ if(gset.gridLines[i] == space_key && no_afterchange)
+ #ifdef TESTING
+ ++turfsSkipped
+ #endif
+ ycrd--
+ MAPLOADING_CHECK_TICK
+ continue
+
+ var/list/cache = modelCache[gset.gridLines[i]]
+ if(!cache)
+ SSatoms.map_loader_stop(REF(src))
+ CRASH("Undefined model key in DMM: [gset.gridLines[i]]")
+ build_coordinate(cache, locate(true_xcrd, ycrd, zcrd), no_afterchange, place_on_top, new_z, delete)
+
+ // only bother with bounds that actually exist
+ if(!first_found)
+ first_found = TRUE
+ first_y = ycrd
+ last_y = ycrd
+ ycrd--
+ MAPLOADING_CHECK_TICK
+
+ // The x coord never changes, so not tracking first x is safe
+ // If no ycrd is found, we assume this row is totally empty and just continue on
+ if(first_found)
+ bounds[MAP_MINX] = min(bounds[MAP_MINX], true_xcrd)
+ bounds[MAP_MINY] = min(bounds[MAP_MINY], last_y)
+ bounds[MAP_MINZ] = min(bounds[MAP_MINZ], zcrd)
+ bounds[MAP_MAXX] = max(bounds[MAP_MAXX], true_xcrd)
+ bounds[MAP_MAXY] = max(bounds[MAP_MAXY], first_y)
+ bounds[MAP_MAXZ] = max(bounds[MAP_MAXZ], zcrd)
+ return TRUE
+
+/// Stanrdard loading, not used in production
+/// Doesn't take advantage of any tgm optimizations, which makes it slower but also more general
+/// Use this if for some reason your map format is messy
+/datum/parsed_map/proc/_dmm_load(x_offset, y_offset, z_offset, crop_map, no_changeturf, x_lower, x_upper, y_lower, y_upper, z_lower, z_upper, place_on_top, new_z, delete)
+ // setup
+ var/list/modelCache = build_cache(no_changeturf)
+ var/space_key = modelCache[SPACE_KEY]
+ var/list/bounds
+ var/key_len = src.key_len
+ src.bounds = bounds = list(1.#INF, 1.#INF, 1.#INF, -1.#INF, -1.#INF, -1.#INF)
+
+ var/y_relative_to_absolute = y_offset - 1
+ var/x_relative_to_absolute = x_offset - 1
+ var/line_len = src.line_len
+
+ // Amount we offset the grid zcrd to get the true zcrd
+ var/grid_z_offset = z_offset - 1
+ var/z_upper_set = z_upper < INFINITY
+ var/z_lower_set = z_lower > -INFINITY
+
+ // we now need to find the maximum z, fun!
+ var/map_bounds_z_max = 1
+ for(var/datum/grid_set/grid_set as anything in gridSets)
+ map_bounds_z_max = max(map_bounds_z_max, grid_set.zcrd)
+
+ var/z_upper_parsed = map_bounds_z_max + z_offset - 1
+ if(z_upper_set)
+ z_upper_parsed -= map_bounds_z_max - z_upper
+ if(z_lower_set)
+ var/offset_amount = z_lower - 1
+ z_upper_parsed -= offset_amount
+ grid_z_offset -= offset_amount
+
+ var/list/target_grid_sets = gridSets
+ if(z_lower_set || z_upper_set) // bounds are set, filter out gridsets for z levels we don't want
+ target_grid_sets = filter_grid_sets_based_on_z_bounds(z_lower, z_upper)
+
+ for(var/datum/grid_set/gset as anything in target_grid_sets)
+ var/relative_x = gset.xcrd
+ var/relative_y = gset.ycrd
+ var/true_xcrd = relative_x + x_relative_to_absolute
+ var/ycrd = relative_y + y_relative_to_absolute
+ var/zcrd = gset.zcrd + grid_z_offset
+ if(!crop_map && ycrd > world.maxy)
+ if(new_z)
+ // Need to avoid improperly loaded area/turf_contents
+ world.increase_max_y(ycrd, map_load_z_cutoff = z_offset - 1)
+ else
+ world.increase_max_y(ycrd)
+ expanded_y = TRUE
var/zexpansion = zcrd > world.maxz
+ var/no_afterchange = no_changeturf
if(zexpansion)
- if(cropMap)
+ if(crop_map)
continue
else
while (zcrd > world.maxz) //create a new z_level if needed
world.incrementMaxZ()
if(!no_changeturf)
WARNING("Z-level expansion occurred without no_changeturf set, this may cause problems when /turf/AfterChange is called")
-
- for(var/line in gset.gridLines)
- if((ycrd - y_offset + 1) < y_lower || (ycrd - y_offset + 1) > y_upper) //Reverse operation and check if it is out of bounds of cropping.
- --ycrd
- continue
- if(ycrd <= world.maxy && ycrd >= 1)
- var/xcrd = gset.xcrd + x_offset - 1
- for(var/tpos = 1 to length(line) - key_len + 1 step key_len)
- if((xcrd - x_offset + 1) < x_lower || (xcrd - x_offset + 1) > x_upper) //Same as above.
- ++xcrd
- continue //X cropping.
- if(xcrd > world.maxx)
- if(cropMap)
- break
- else
- world.maxx = xcrd
-
- if(xcrd >= 1)
- var/model_key = copytext(line, tpos, tpos + key_len)
- var/no_afterchange = no_changeturf || zexpansion
- if(!no_afterchange || (model_key != space_key))
- var/list/cache = modelCache[model_key]
- if(!cache)
- CRASH("Undefined model key in DMM: [model_key]")
- build_coordinate(areaCache, cache, locate(xcrd, ycrd, zcrd), no_afterchange, placeOnTop, delete)
-
- // only bother with bounds that actually exist
- bounds[MAP_MINX] = min(bounds[MAP_MINX], xcrd)
- bounds[MAP_MINY] = min(bounds[MAP_MINY], ycrd)
- bounds[MAP_MINZ] = min(bounds[MAP_MINZ], zcrd)
- bounds[MAP_MAXX] = max(bounds[MAP_MAXX], xcrd)
- bounds[MAP_MAXY] = max(bounds[MAP_MAXY], ycrd)
- bounds[MAP_MAXZ] = max(bounds[MAP_MAXZ], zcrd)
- #ifdef TESTING
- else
- ++turfsSkipped
- #endif
- CHECK_TICK
+ no_afterchange = TRUE
+ // Ok so like. something important
+ // We talk in "relative" coords here, so the coordinate system of the map datum
+ // This is so we can do offsets, but it is NOT the same as positions in game
+ // That's why there's some uses of - y_relative_to_absolute here, to turn absolute positions into relative ones
+
+ // Skip Y coords that are above the smallest of the three params
+ // So maxy and y_upper get to act as thresholds, and relative_y can play
+ var/y_skip_above = min(world.maxy - y_relative_to_absolute, y_upper, relative_y)
+ // How many lines to skip because they'd be above the y cuttoff line
+ var/y_starting_skip = relative_y - y_skip_above
+ ycrd += y_starting_skip
+
+ // Y is the LOWEST it will ever be here, so we can easily set a threshold for how low to go
+ var/line_count = length(gset.gridLines)
+ var/lowest_y = relative_y - (line_count - 1) // -1 because we decrement at the end of the loop, not the start
+ var/y_ending_skip = max(max(y_lower, 1 - y_relative_to_absolute) - lowest_y, 0)
+
+ // Now we're gonna precompute the x thresholds
+ // We skip all the entries below the lower x, or 1
+ var/starting_x_delta = max(max(x_lower, 1 - x_relative_to_absolute) - relative_x, 0)
+ // The x loop counts by key length, so we gotta multiply here
+ var/x_starting_skip = starting_x_delta * key_len
+ true_xcrd += starting_x_delta
+
+ // We're gonna skip all the entries above the upper x, or maxx if cropMap is set
+ var/x_target = line_len - key_len + 1
+ var/x_step_count = ROUND_UP(x_target / key_len)
+ var/final_x = relative_x + (x_step_count - 1)
+ var/x_delta_with = x_upper
+ if(crop_map)
+ // Take our smaller crop threshold yes?
+ x_delta_with = min(x_delta_with, world.maxx)
+ if(final_x > x_delta_with)
+ // If our relative x is greater then X upper, well then we've gotta limit our expansion
+ var/delta = max(final_x - x_delta_with, 0)
+ x_step_count -= delta
+ final_x -= delta
+ x_target = x_step_count * key_len
+ if(final_x > world.maxx && !crop_map)
+ if(new_z)
+ // Need to avoid improperly loaded area/turf_contents
+ world.increase_max_x(final_x, map_load_z_cutoff = z_offset - 1)
+ else
+ world.increase_max_x(final_x)
+ expanded_x = TRUE
+
+ // We're gonna track the first and last pairs of coords we find
+ // The first x is guarenteed to be the lowest, the first y the highest, and vis versa
+ // This is faster then doing mins and maxes inside the hot loop below
+ var/first_found = FALSE
+ var/first_x = 0
+ var/first_y = 0
+ var/last_x = 0
+ var/last_y = 0
+
+ // Everything following this line is VERY hot. How hot depends on the map format
+ // (Yes this does mean dmm is technically faster to parse. shut up)
+ for(var/i in 1 + y_starting_skip to line_count - y_ending_skip)
+ var/line = gset.gridLines[i]
+
+ var/xcrd = true_xcrd
+ for(var/tpos in 1 + x_starting_skip to x_target step key_len)
+ var/model_key = copytext(line, tpos, tpos + key_len)
+ if(model_key == space_key && no_afterchange)
+ #ifdef TESTING
+ ++turfsSkipped
+ #endif
+ MAPLOADING_CHECK_TICK
++xcrd
- --ycrd
-
- CHECK_TICK
+ continue
+ var/list/cache = modelCache[model_key]
+ if(!cache)
+ SSatoms.map_loader_stop(REF(src))
+ CRASH("Undefined model key in DMM: [model_key]")
+ build_coordinate(cache, locate(xcrd, ycrd, zcrd), no_afterchange, place_on_top, new_z, delete)
+
+ // only bother with bounds that actually exist
+ if(!first_found)
+ first_found = TRUE
+ first_x = xcrd
+ first_y = ycrd
+ last_x = xcrd
+ last_y = ycrd
+ MAPLOADING_CHECK_TICK
+ ++xcrd
+ ycrd--
+ MAPLOADING_CHECK_TICK
+ bounds[MAP_MINX] = min(bounds[MAP_MINX], first_x)
+ bounds[MAP_MINY] = min(bounds[MAP_MINY], last_y)
+ bounds[MAP_MINZ] = min(bounds[MAP_MINZ], zcrd)
+ bounds[MAP_MAXX] = max(bounds[MAP_MAXX], last_x)
+ bounds[MAP_MAXY] = max(bounds[MAP_MAXY], first_y)
+ bounds[MAP_MAXZ] = max(bounds[MAP_MAXZ], zcrd)
- //if(!no_changeturf)// mapping TODO:
- // for(var/t in block(locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]), locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])))
- // var/turf/T = t
- // //we do this after we load everything in. if we don't; we'll have weird atmos bugs regarding atmos adjacent turfs
- // T.AfterChange(CHANGETURF_IGNORE_AIR)
+ return TRUE
- #ifdef TESTING
- if(turfsSkipped)
- testing("Skipped loading [turfsSkipped] default turfs")
- #endif
+GLOBAL_LIST_EMPTY(map_model_default)
- return TRUE
+/datum/parsed_map/proc/build_cache(no_changeturf, bad_paths)
+ if(map_format == MAP_TGM)
+ return tgm_build_cache(no_changeturf, bad_paths)
+ return dmm_build_cache(no_changeturf, bad_paths)
-/datum/parsed_map/proc/build_cache(no_changeturf, bad_paths=null)
+/datum/parsed_map/proc/tgm_build_cache(no_changeturf, bad_paths=null)
if(modelCache && !bad_paths)
return modelCache
. = modelCache = list()
var/list/grid_models = src.grid_models
+ var/set_space = FALSE
+ // Use where a list is needed, but where it will not be modified
+ // Used here to remove the cost of needing to make a new list for each fields entry when it's set manually later
+ var/static/list/default_list = GLOB.map_model_default // It's stupid, but it saves += list(list)
+ var/static/list/wrapped_default_list = list(default_list) // It's stupid, but it saves += list(list)
+ var/static/regex/var_edits = var_edits_tgm
+
+ var/path_to_init = ""
+ // Reference to the attributes list we're currently filling, if any
+ var/list/current_attributes
+ // If we are currently editing a path or not
+ var/editing = FALSE
for(var/model_key in grid_models)
- var/model = grid_models[model_key]
- var/list/members = list() //will contain all members (paths) in model (in our example : /turf/unsimulated/wall and /area/mine/explored)
- var/list/members_attributes = list() //will contain lists filled with corresponding variables, if any (in our example : list(icon_state = "rock") and list())
+ // We're going to split models by newline
+ // This guarentees that each entry will be of interest to us
+ // Then we'll process them step by step
+ // Hopefully this reduces the cost from read_list that we'd otherwise have
+ var/list/lines = splittext(grid_models[model_key], "\n")
+ // Builds list of path/edits for later
+ // Of note: we cannot preallocate them to save time in list expansion later
+ // But fortunately lists allocate at least 8 entries normally anyway, and
+ // We are unlikely to have more then that many members
+ //will contain all members (paths) in model (in our example : /turf/unsimulated/wall)
+ var/list/members = list()
+ //will contain lists filled with corresponding variables, if any (in our example : list(icon_state = "rock") and list())
+ var/list/members_attributes = list()
/////////////////////////////////////////////////////////
//Constructing members and corresponding variables lists
////////////////////////////////////////////////////////
+ // string representation of the path to init
+ for(var/line in lines)
+ // We do this here to avoid needing to check at each return statement
+ // No harm in it anyway
+ MAPLOADING_CHECK_TICK
+
+ switch(line[length(line)])
+ if(";") // Var edit, we'll apply it
+ // Var edits look like \tname = value;
+ // I'm gonna try capturing them with regex, since it ought to be the fastest here
+ // Should hand back key = value
+ var_edits.Find(line)
+ var/value = parse_constant(var_edits.group[2])
+ if(istext(value))
+ value = apply_text_macros(value)
+ current_attributes[var_edits.group[1]] = value
+ continue // Keep on keeping on brother
+ if("{") // Start of an edit, and so also the start of a path
+ editing = TRUE
+ current_attributes = list() // Init the list we'll be filling
+ members_attributes += list(current_attributes)
+ path_to_init = copytext(line, 1, -1)
+ if(",") // Either the end of a path, or the end of an edit
+ if(editing) // it was the end of a path
+ editing = FALSE
+ continue
+ members_attributes += wrapped_default_list // We know this is a path, and we also know it has no vv's. so we'll just set this to the default list
+ // Drop the last char mind
+ path_to_init = copytext(line, 1, -1)
+ if("}") // Gotta be the end of an area edit, let's check to be sure
+ if(editing) // it was the end of an area edit (shouldn't do those anyhow)
+ editing = FALSE
+ continue
+ stack_trace("ended a line on JUST a }, with no ongoing edit. What? Area shit?")
+ else // If we're editing, this is a var edit entry. the last one in a stack, cause god hates me. Otherwise, it's an area
+ if(editing) // I want inline I want inline I want inline
+ // Var edits look like \tname = value;
+ // I'm gonna try capturing them with regex, since it ought to be the fastest here
+ // Should hand back key = value
+ var_edits.Find(line)
+ var/value = parse_constant(var_edits.group[2])
+ if(istext(value))
+ value = apply_text_macros(value)
+ current_attributes[var_edits.group[1]] = value
+ continue // Keep on keeping on brother
- var/index = 1
- var/old_position = 1
- var/dpos
+ members_attributes += wrapped_default_list // We know this is a path, and we also know it has no vv's. so we'll just set this to the default list
+ path_to_init = line
- while(dpos != 0)
- //finding next member (e.g /turf/unsimulated/wall{icon_state = "rock"} or /area/mine/explored)
- dpos = find_next_delimiter_position(model, old_position, ",", "{", "}") //find next delimiter (comma here) that's not within {...}
- var/full_def = trim_text(copytext(model, old_position, dpos)) //full definition, e.g : /obj/foo/bar{variables=derp}
- var/variables_start = findtext(full_def, "{")
- var/path_text = trim_text(copytext(full_def, 1, variables_start))
+ // Alright, if we've gotten to this point, our string is a path
+ // Oh and we don't trim it, because we require no padding for these
+ // Saves like 1.5 deciseconds
+ var/atom_def = text2path(path_to_init) //path definition, e.g /obj/foo/bar
+
+ if(!ispath(atom_def, /atom)) // Skip the item if the path does not exist. Fix your crap, mappers!
+ if(bad_paths)
+ // Rare case, avoid the var to save time most of the time
+ LAZYOR(bad_paths[copytext(line, 1, -1)], model_key)
+ continue
+ // Index is already incremented either way, just gotta set the path and all
+ members += atom_def
+
+ //check and see if we can just skip this turf
+ //So you don't have to understand this horrid statement, we can do this if
+ // 1. the space_key isn't set yet
+ // 2. no_changeturf is set
+ // 3. there are exactly 2 members
+ // 4. with no attributes
+ // 5. and the members are world.turf and world.area
+ // Basically, if we find an entry like this: "XXX" = (/turf/default, /area/default)
+ // We can skip calling this proc every time we see XXX
+ if(!set_space \
+ && no_changeturf \
+ && members_attributes.len == 2 \
+ && members.len == 2 \
+ && members_attributes[1] == default_list \
+ && members_attributes[2] == default_list \
+ && members[2] == world.area \
+ && members[1] == world.turf
+ )
+ set_space = TRUE
+ .[SPACE_KEY] = model_key
+ continue
+
+ .[model_key] = list(members, members_attributes)
+ return .
+
+/// Builds key caches for general formats
+/// Slower then the proc above, tho it could still be optimized slightly. it's just not a priority
+/// Since we don't run DMM maps, ever.
+/datum/parsed_map/proc/dmm_build_cache(no_changeturf, bad_paths=null)
+ if(modelCache && !bad_paths)
+ return modelCache
+ . = modelCache = list()
+ var/list/grid_models = src.grid_models
+ var/set_space = FALSE
+ // Use where a list is needed, but where it will not be modified
+ // Used here to remove the cost of needing to make a new list for each fields entry when it's set manually later
+ var/static/list/default_list = list(GLOB.map_model_default)
+ for(var/model_key in grid_models)
+ //will contain all members (paths) in model (in our example : /turf/unsimulated/wall)
+ var/list/members = list()
+ //will contain lists filled with corresponding variables, if any (in our example : list(icon_state = "rock") and list())
+ var/list/members_attributes = list()
+
+ var/model = grid_models[model_key]
+ /////////////////////////////////////////////////////////
+ //Constructing members and corresponding variables lists
+ ////////////////////////////////////////////////////////
+
+ var/model_index = 1
+ while(model_path.Find(model, model_index))
+ var/variables_start = 0
+ var/member_string = model_path.group[1]
+ model_index = model_path.next
+ //findtext is a bit expensive, lets only do this if the last char of our string is a } (IE: we know we have vars)
+ //this saves about 25 miliseconds on my machine. Not a major optimization
+ if(member_string[length(member_string)] == "}")
+ variables_start = findtext(member_string, "{")
+
+ var/path_text = TRIM_TEXT(copytext(member_string, 1, variables_start))
var/atom_def = text2path(path_text) //path definition, e.g /obj/foo/bar
- if(dpos)
- old_position = dpos + length(model[dpos])
if(!ispath(atom_def, /atom)) // Skip the item if the path does not exist. Fix your crap, mappers!
if(bad_paths)
LAZYOR(bad_paths[path_text], model_key)
continue
- members.Add(atom_def)
+ members += atom_def
//transform the variables in text format into a list (e.g {var1="derp"; var2; var3=7} => list(var1="derp", var2, var3=7))
- var/list/fields = list()
-
+ // OF NOTE: this could be made faster by replacing readlist with a progressive regex
+ // I'm just too much of a bum to do it rn, especially since we mandate tgm format for any maps in repo
+ var/list/fields = default_list
if(variables_start)//if there's any variable
- full_def = copytext(full_def, variables_start + length(full_def[variables_start]), -length(copytext_char(full_def, -1))) //removing the last '}'
- fields = readlist(full_def, ";")
- if(fields.len)
- if(!trim(fields[fields.len]))
- --fields.len
- for(var/I in fields)
- var/value = fields[I]
- if(istext(value))
- fields[I] = apply_text_macros(value)
+ member_string = copytext(member_string, variables_start + length(member_string[variables_start]), -length(copytext_char(member_string, -1))) //removing the last '}'
+ fields = list(readlist(member_string, ";"))
+ for(var/I in fields)
+ var/value = fields[I]
+ if(istext(value))
+ fields[I] = apply_text_macros(value)
//then fill the members_attributes list with the corresponding variables
- members_attributes.len++
- members_attributes[index++] = fields
-
- CHECK_TICK
+ members_attributes += fields
+ MAPLOADING_CHECK_TICK
//check and see if we can just skip this turf
//So you don't have to understand this horrid statement, we can do this if
- // 1. no_changeturf is set
- // 2. the space_key isn't set yet
+ // 1. the space_key isn't set yet
+ // 2. no_changeturf is set
// 3. there are exactly 2 members
// 4. with no attributes
// 5. and the members are world.turf and world.area
// Basically, if we find an entry like this: "XXX" = (/turf/default, /area/default)
// We can skip calling this proc every time we see XXX
- if(no_changeturf \
- && !(.[SPACE_KEY]) \
+ if(!set_space \
+ && no_changeturf \
&& members.len == 2 \
&& members_attributes.len == 2 \
&& length(members_attributes[1]) == 0 \
&& length(members_attributes[2]) == 0 \
&& (world.area in members) \
&& (world.turf in members))
-
+ set_space = TRUE
.[SPACE_KEY] = model_key
continue
-
.[model_key] = list(members, members_attributes)
+ return .
-/datum/parsed_map/proc/build_coordinate(list/areaCache, list/model, turf/crds, no_changeturf as num, placeOnTop as num, delete)
+/datum/parsed_map/proc/build_coordinate(list/model, turf/crds, no_changeturf as num, placeOnTop as num, new_z, delete)
+ // If we don't have a turf, nothing we will do next will actually acomplish anything, so just go back
+ // Note, this would actually drop area vvs in the tile, but like, why tho
+ if(!crds)
+ return
var/index
var/list/members = model[1]
var/list/members_attributes = model[2]
+ // We use static lists here because it's cheaper then passing them around
+ var/static/list/default_list = GLOB.map_model_default
////////////////
//Instanciation
////////////////
+ if(turf_blacklist?[crds])
+ return
+
//The next part of the code assumes there's ALWAYS an /area AND a /turf on a given tile
//first instance the /area and remove it from the members list
index = members.len
+ var/area/old_area
if(members[index] != /area/template_noop)
- var/atype = members[index]
- GLOB._preloader.setup(members_attributes[index], atype)//preloader for assigning set variables on atom creation
- var/atom/instance = areaCache[atype]
- if(!instance)
- instance = GLOB.areas_by_type[atype]
- if(!instance)
- instance = new atype(null)
- areaCache[atype] = instance
- if(crds)
- instance.contents.Add(crds)
-
- if(GLOB.use_preloader && instance)
- GLOB._preloader.load(instance)
-
- //then instance the /turf and, if multiple tiles are presents, simulates the DMM underlays piling effect
-
- var/first_turf_index = 1
- while(!ispath(members[first_turf_index], /turf)) //find first /turf object in members
- first_turf_index++
-
- //turn off base new Initialization until the whole thing is loaded
- SSatoms.map_loader_begin()
- //instanciate the first /turf
- var/turf/T
- if(members[first_turf_index] != /turf/template_noop)
- T = instance_atom(members[first_turf_index], members_attributes[first_turf_index], crds,no_changeturf, placeOnTop, delete)
-
- if(T)
- //if others /turf are presents, simulates the underlays piling effect
- index = first_turf_index + 1
- while(index <= members.len - 1) // Last item is an /area
- var/underlay = T.appearance
- T = instance_atom(members[index], members_attributes[index], crds,no_changeturf, placeOnTop, delete)//instance new turf
- T.underlays += underlay
- index++
+ if(members_attributes[index] != default_list)
+ world.preloader_setup(members_attributes[index], members[index])//preloader for assigning set variables on atom creation
+ var/area/area_instance = loaded_areas[members[index]]
+ if(!area_instance)
+ var/area_type = members[index]
+ // If this parsed map doesn't have that area already, we check the global cache
+ area_instance = GLOB.areas_by_type[area_type]
+ // If the global list DOESN'T have this area it's either not a unique area, or it just hasn't been created yet
+ if (!area_instance)
+ area_instance = new area_type(null)
+ if(!area_instance)
+ CRASH("[area_type] failed to be new'd, what'd you do?")
+ loaded_areas[area_type] = area_instance
+
+ if(!new_z)
+ old_area = crds.loc
+// old_area.turfs_to_uncontain += crds
+// area_instance.contained_turfs.Add(crds)
+ area_instance.contents.Add(crds)
+
+ if(GLOB.use_preloader)
+ world.preloader_load(area_instance)
+
+ // Index right before /area is /turf
+ index--
+ var/atom/instance
+ //then instance the /turf
+ //NOTE: this used to place any turfs before the last "underneath" it using .appearance and underlays
+ //We don't actually use this, and all it did was cost cpu, so we don't do this anymore
+ if(members[index] != /turf/template_noop)
+ if(members_attributes[index] != default_list)
+ world.preloader_setup(members_attributes[index], members[index])
+
+ // CM/TGMC addition: delete map contents before inserting if delete truthy
+ if(delete)
+ for(var/atom/turf_atom as anything in crds.GetAllTurfStrictContents())
+ if(isobserver(turf_atom))
+ continue
+ qdel(turf_atom, force = TRUE)
+
+ // Note: we make the assertion that the last path WILL be a turf. if it isn't, this will fail.
+ if(placeOnTop)
+ instance = crds.load_on_top(members[index], CHANGETURF_DEFER_CHANGE | (no_changeturf ? CHANGETURF_SKIP : NONE))
+ else if(no_changeturf)
+ instance = create_atom(members[index], crds)//first preloader pass
+ else
+ instance = crds.ChangeTurf(members[index], null, CHANGETURF_DEFER_CHANGE)
+
+ if(GLOB.use_preloader && instance)//second preloader pass, for those atoms that don't ..() in New()
+ world.preloader_load(instance)
+ // If this isn't template work, we didn't change our turf and we changed area, then we've gotta handle area lighting transfer
+ else if(!no_changeturf && old_area)
+ // Don't do contain/uncontain stuff, this happens a few lines up when the area actally changes
+ crds.on_change_area(old_area, crds.loc)
+ MAPLOADING_CHECK_TICK
//finally instance all remainings objects/mobs
- for(index in 1 to first_turf_index-1)
- instance_atom(members[index], members_attributes[index], crds, no_changeturf, placeOnTop, delete)
- //Restore initialization to the previous value
- SSatoms.map_loader_stop()
+ for(var/atom_index in 1 to index-1)
+ if(members_attributes[atom_index] != default_list)
+ world.preloader_setup(members_attributes[atom_index], members[atom_index])
+
+ // We make the assertion that only /atom s will be in this portion of the code. if that isn't true, this will fail
+ instance = create_atom(members[atom_index], crds)//first preloader pass
+
+ if(GLOB.use_preloader && instance)//second preloader pass, for those atoms that don't ..() in New()
+ world.preloader_load(instance)
+ MAPLOADING_CHECK_TICK
////////////////
//Helpers procs
////////////////
-//Instance an atom at (x,y,z) and gives it the variables in attributes
-/datum/parsed_map/proc/instance_atom(path,list/attributes, turf/crds, no_changeturf, placeOnTop, delete)
- GLOB._preloader.setup(attributes, path)
-
- if(crds)
- if(ispath(path, /turf))
- if(delete)
- for(var/atom/A as anything in crds.GetAllTurfStrictContents())
- if(isobserver(A))
- continue
- qdel(A, force=TRUE)
-
- if(placeOnTop)
- . = crds.PlaceOnTop(null, path, CHANGETURF_DEFER_CHANGE | (no_changeturf ? CHANGETURF_SKIP : NONE))
- else if(!no_changeturf)
- . = crds.ChangeTurf(path, null, CHANGETURF_DEFER_CHANGE)
- else
- . = create_atom(path, crds)//first preloader pass
- else
- . = create_atom(path, crds)//first preloader pass
-
- if(GLOB.use_preloader && .)//second preloader pass, for those atoms that don't ..() in New()
- GLOB._preloader.load(.)
-
- //custom CHECK_TICK here because we don't want things created while we're sleeping to not initialize
- if(TICK_CHECK)
- SSatoms.map_loader_stop()
- stoplag()
- SSatoms.map_loader_begin()
-
/datum/parsed_map/proc/create_atom(path, crds)
set waitfor = FALSE
. = new path (crds)
-//text trimming (both directions) helper proc
-//optionally removes quotes before and after the text (for variable name)
-/datum/parsed_map/proc/trim_text(what as text,trim_quotes=0)
- if(trim_quotes)
- return trimQuotesRegex.Replace(what, "")
- else
- return trimRegex.Replace(what, "")
-
-
//find the position of the next delimiter,skipping whatever is comprised between opening_escape and closing_escape
//returns 0 if reached the last delimiter
/datum/parsed_map/proc/find_next_delimiter_position(text as text,initial_position as num, delimiter=",",opening_escape="\"",closing_escape="\"")
@@ -410,7 +1007,6 @@
return next_delimiter
-
//build a list from variables in text form (e.g {var1="derp"; var2; var3=7} => list(var1="derp", var2, var3=7))
//return the filled list
/datum/parsed_map/proc/readlist(text as text, delimiter=",")
@@ -418,28 +1014,29 @@
if (!text)
return
+ // If we're using a semi colon, we can do this as splittext rather then constant calls to find_next_delimiter_position
+ // This does make the code a bit harder to read, but saves a good bit of time so suck it up
var/position
var/old_position = 1
-
while(position != 0)
// find next delimiter that is not within "..."
position = find_next_delimiter_position(text,old_position,delimiter)
// check if this is a simple variable (as in list(var1, var2)) or an associative one (as in list(var1="foo",var2=7))
var/equal_position = findtext(text,"=",old_position, position)
-
- var/trim_left = trim_text(copytext(text,old_position,(equal_position ? equal_position : position)))
- var/left_constant = delimiter == ";" ? trim_left : parse_constant(trim_left)
+ var/trim_left = TRIM_TEXT(copytext(text,old_position,(equal_position ? equal_position : position)))
+ var/left_constant = parse_constant(trim_left)
if(position)
old_position = position + length(text[position])
+ if(!left_constant) // damn newlines man. Exists to provide behavior consistency with the above loop. not a major cost becuase this path is cold
+ continue
if(equal_position && !isnum(left_constant))
// Associative var, so do the association.
// Note that numbers cannot be keys - the RHS is dropped if so.
- var/trim_right = trim_text(copytext(text, equal_position + length(text[equal_position]), position))
+ var/trim_right = TRIM_TEXT(copytext(text, equal_position + length(text[equal_position]), position))
var/right_constant = parse_constant(trim_right)
.[left_constant] = right_constant
-
else // simple var
. += list(left_constant)
@@ -451,7 +1048,10 @@
// string
if(text[1] == "\"")
- return copytext(text, length(text[1]) + 1, findtext(text, "\"", length(text[1]) + 1))
+ // insert implied locate \" and length("\"") here
+ // It's a minimal timesave but it is a timesave
+ // Safe becuase we're guarenteed trimmed constants
+ return copytext(text, 2, -1)
// list
if(copytext(text, 1, 6) == "list(")//6 == length("list(") + 1
@@ -479,4 +1079,17 @@
/datum/parsed_map/Destroy()
..()
+ SSatoms.map_loader_stop(REF(src)) // Just in case, I don't want to double up here
+ if(turf_blacklist)
+ turf_blacklist.Cut()
+ parsed_bounds.Cut()
+ bounds.Cut()
+ grid_models.Cut()
+ gridSets.Cut()
return QDEL_HINT_HARDDEL_NOW
+
+#undef MAP_DMM
+#undef MAP_TGM
+#undef MAP_UNKNOWN
+#undef TRIM_TEXT
+#undef MAPLOADING_CHECK_TICK
diff --git a/code/modules/mapping/space_management/space_level.dm b/code/modules/mapping/space_management/space_level.dm
index 861258aa20a2..48303b5e39ae 100644
--- a/code/modules/mapping/space_management/space_level.dm
+++ b/code/modules/mapping/space_management/space_level.dm
@@ -4,13 +4,20 @@
var/list/traits
var/z_value = 1 //actual z placement
var/linkage = SELFLOOPING
- var/x_bounds
- var/y_bounds
+ /// Bounds at time of loading the map
+ var/bounds
/datum/space_level/New(new_z, new_name, list/new_traits = list())
z_value = new_z
name = new_name
traits = new_traits
+
+ if (islist(new_traits))
+ for (var/trait in new_traits)
+ SSmapping.z_trait_levels[trait] += list(new_z)
+ else // in case a single trait is passed in
+ SSmapping.z_trait_levels[new_traits] += list(new_z)
//set_linkage(new_traits[ZTRAIT_LINKAGE])
- x_bounds = world.maxx
- y_bounds = world.maxy
+
+ //Lazy Init value, will be hopefully changed by SSmapping
+ bounds = list(1, 1, z_value, world.maxx, world.maxy, z_value)
diff --git a/code/modules/mapping/space_management/space_reservation.dm b/code/modules/mapping/space_management/space_reservation.dm
index adaff04000ff..3c47ac3b5c2a 100644
--- a/code/modules/mapping/space_management/space_reservation.dm
+++ b/code/modules/mapping/space_management/space_reservation.dm
@@ -1,81 +1,240 @@
+/// Cordon area surrounding turf reservations
+/area/misc/cordon
+ name = "CORDON"
+ icon_state = "cordon"
+ static_lighting = FALSE
+ base_lighting_alpha = 255
+ requires_power = FALSE
+
+#define CORDON_TURF_TYPE /turf/closed/cordon
//Yes, they can only be rectangular.
//Yes, I'm sorry.
/datum/turf_reservation
+ /// All turfs that we've reserved
var/list/reserved_turfs = list()
+
+ /// Turfs around the reservation for cordoning
+ var/list/cordon_turfs = list()
+
+ /// Area of turfs next to the cordon to fill with pre_cordon_area's
+ var/list/pre_cordon_turfs = list()
+
+ /// The width of the reservation
var/width = 0
+
+ /// The height of the reservation
var/height = 0
- var/bottom_left_coords[3]
- var/top_right_coords[3]
- var/wipe_reservation_on_release = TRUE
+
+ /// The z stack size of the reservation. Note that reservations are ALWAYS reserved from the bottom up
+ var/z_size = 0
+
+ /// List of the bottom left turfs. Indexed by what their z index for this reservation is
+ var/list/bottom_left_turfs = list()
+
+ /// List of the top right turfs. Indexed by what their z index for this reservation is
+ var/list/top_right_turfs = list()
+
+ /// The turf type the reservation is initially made with
var/turf_type = /turf/open/space
+ ///Distance away from the cordon where we can put a "sort-cordon" and run some extra code (see make_repel). 0 makes nothing happen
+ var/pre_cordon_distance = 0
+
/datum/turf_reservation/transit
turf_type = /turf/open/space/transit
+ pre_cordon_distance = 7
/datum/turf_reservation/interior
turf_type = /turf/open/void/vehicle
/datum/turf_reservation/proc/Release()
- var/v = reserved_turfs.Copy()
- for(var/i in reserved_turfs)
- var/turf/T = i
- T.flags_atom |= UNUSED_RESERVATION_TURF
- reserved_turfs -= i
- SSmapping.used_turfs -= i
- SSmapping.reserve_turfs(v)
+ bottom_left_turfs.Cut()
+ top_right_turfs.Cut()
+
+ var/list/reserved_copy = reserved_turfs.Copy()
+ SSmapping.used_turfs -= reserved_turfs
+ reserved_turfs = list()
+
+ var/list/cordon_copy = cordon_turfs.Copy()
+ SSmapping.used_turfs -= cordon_turfs
+ cordon_turfs = list()
-/datum/turf_reservation/proc/Reserve(width, height, zlevel)
+ var/release_turfs = reserved_copy + cordon_copy
+
+ for(var/turf/reserved_turf as anything in release_turfs)
+ SEND_SIGNAL(reserved_turf, COMSIG_TURF_RESERVATION_RELEASED, src)
+
+ // Makes the linter happy, even tho we don't await this
+ INVOKE_ASYNC(SSmapping, TYPE_PROC_REF(/datum/controller/subsystem/mapping, reserve_turfs), release_turfs)
+
+/// Attempts to calaculate and store a list of turfs around the reservation for cordoning. Returns whether a valid cordon was calculated
+/datum/turf_reservation/proc/calculate_cordon_turfs(turf/bottom_left, turf/top_right)
+ if(bottom_left.x < 2 || bottom_left.y < 2 || top_right.x > (world.maxx - 2) || top_right.y > (world.maxy - 2))
+ return FALSE // no space for a cordon here
+
+ var/list/possible_turfs = CORNER_OUTLINE(bottom_left, width, height)
+ // if they're our cordon turfs, accept them
+ possible_turfs -= cordon_turfs
+ for(var/turf/cordon_turf as anything in possible_turfs)
+ if(!(cordon_turf.turf_flags & UNUSED_RESERVATION_TURF))
+ return FALSE
+ cordon_turfs |= possible_turfs
+
+ if(pre_cordon_distance)
+ var/turf/offset_turf = locate(bottom_left.x + pre_cordon_distance, bottom_left.y + pre_cordon_distance, bottom_left.z)
+ var/list/to_add = CORNER_OUTLINE(offset_turf, width - pre_cordon_distance * 2, height - pre_cordon_distance * 2) //we step-by-stop move inwards from the outer cordon
+ for(var/turf/turf_being_added as anything in to_add)
+ pre_cordon_turfs |= turf_being_added //add one by one so we can filter out duplicates
+
+ return TRUE
+
+/// Actually generates the cordon around the reservation, and marking the cordon turfs as reserved
+/datum/turf_reservation/proc/generate_cordon()
+ for(var/turf/cordon_turf as anything in cordon_turfs)
+ var/area/misc/cordon/cordon_area = GLOB.areas_by_type[/area/misc/cordon] || new
+ //var/area/old_area = cordon_turf.loc
+ //old_area.turfs_to_uncontain += cordon_turf
+ //cordon_area.contained_turfs += cordon_turf
+ cordon_area.contents += cordon_turf
+ // Its no longer unused, but its also not "used"
+ cordon_turf.turf_flags &= ~UNUSED_RESERVATION_TURF
+ cordon_turf.ChangeTurf(CORDON_TURF_TYPE, CORDON_TURF_TYPE)
+ SSmapping.unused_turfs["[cordon_turf.z]"] -= cordon_turf
+ // still gets linked to us though
+ SSmapping.used_turfs[cordon_turf] = src
+
+ //swap the area with the pre-cordoning area
+
+/// Internal proc which handles reserving the area for the reservation.
+/datum/turf_reservation/proc/_reserve_area(width, height, zlevel)
+ src.width = width
+ src.height = height
if(width > world.maxx || height > world.maxy || width < 1 || height < 1)
- log_debug("turf reservation had invalid dimensions")
return FALSE
var/list/avail = SSmapping.unused_turfs["[zlevel]"]
- var/turf/bottom_left
- var/turf/top_right
+ var/turf/BL
+ var/turf/TR
var/list/turf/final = list()
var/passing = FALSE
for(var/i in avail)
CHECK_TICK
- bottom_left = i
- if(!(bottom_left.flags_atom & UNUSED_RESERVATION_TURF))
+ BL = i
+ if(!(BL.turf_flags & UNUSED_RESERVATION_TURF))
continue
- if(bottom_left.x + width > world.maxx || bottom_left.y + height > world.maxy)
+ if(BL.x + width > world.maxx || BL.y + height > world.maxy)
continue
- top_right = locate(bottom_left.x + width - 1, bottom_left.y + height - 1, bottom_left.z)
- if(!(top_right.flags_atom & UNUSED_RESERVATION_TURF))
+ TR = locate(BL.x + width - 1, BL.y + height - 1, BL.z)
+ if(!(TR.turf_flags & UNUSED_RESERVATION_TURF))
continue
- final = block(bottom_left, top_right)
+ final = block(BL, TR)
if(!final)
continue
passing = TRUE
- for(var/turf/checking as anything in final)
- if(!(checking.flags_atom & UNUSED_RESERVATION_TURF))
+ for(var/I in final)
+ var/turf/checking = I
+ if(!(checking.turf_flags & UNUSED_RESERVATION_TURF))
passing = FALSE
break
+ if(passing) // found a potentially valid area, now try to calculate its cordon
+ passing = calculate_cordon_turfs(BL, TR)
if(!passing)
continue
break
- if(!passing || !istype(bottom_left) || !istype(top_right))
- log_debug("failed to pass reservation tests, [passing], [istype(bottom_left)], [istype(top_right)]")
+ if(!passing || !istype(BL) || !istype(TR))
return FALSE
- bottom_left_coords = list(bottom_left.x, bottom_left.y, bottom_left.z)
- top_right_coords = list(top_right.x, top_right.y, top_right.z)
- var/weakref = WEAKREF(src)
for(var/i in final)
var/turf/T = i
reserved_turfs |= T
SSmapping.unused_turfs["[T.z]"] -= T
- SSmapping.used_turfs[T] = weakref
- T = T.ChangeTurf(turf_type, turf_type)
- T.flags_atom &= ~UNUSED_RESERVATION_TURF
- src.width = width
- src.height = height
+ SSmapping.used_turfs[T] = src
+ T.turf_flags = (T.turf_flags | RESERVATION_TURF) & ~UNUSED_RESERVATION_TURF
+ T.ChangeTurf(turf_type, turf_type)
+
+ bottom_left_turfs += BL
+ top_right_turfs += TR
+ return TRUE
+
+/datum/turf_reservation/proc/reserve(width, height, z_size, z_reservation)
+ src.z_size = z_size
+ var/failed_reservation = FALSE
+ for(var/_ in 1 to z_size)
+ if(!_reserve_area(width, height, z_reservation))
+ failed_reservation = TRUE
+ break
+
+ if(failed_reservation)
+ Release()
+ return FALSE
+
+ generate_cordon()
return TRUE
+/// Calculates the effective bounds information for the given turf. Returns a list of the information, or null if not applicable.
+/datum/turf_reservation/proc/calculate_turf_bounds_information(turf/target)
+ for(var/z_idx in 1 to z_size)
+ var/turf/bottom_left = bottom_left_turfs[z_idx]
+ var/turf/top_right = top_right_turfs[z_idx]
+ var/bl_x = bottom_left.x
+ var/bl_y = bottom_left.y
+ var/tr_x = top_right.x
+ var/tr_y = top_right.y
+
+ if(target.x < bl_x)
+ continue
+
+ if(target.y < bl_y)
+ continue
+
+ if(target.x > tr_x)
+ continue
+
+ if(target.y > tr_y)
+ continue
+
+ var/list/return_information = list()
+ return_information["z_idx"] = z_idx
+ return_information["offset_x"] = target.x - bl_x
+ return_information["offset_y"] = target.y - bl_y
+ return return_information
+ return null
+
+/// Gets the turf below the given target. Returns null if there is no turf below the target
+/datum/turf_reservation/proc/get_turf_below(turf/target)
+ var/list/bounds_info = calculate_turf_bounds_information(target)
+ if(isnull(bounds_info))
+ return null
+
+ var/z_idx = bounds_info["z_idx"]
+ // check what z level, if its the max, then there is no turf below
+ if(z_idx == z_size)
+ return null
+
+ var/offset_x = bounds_info["offset_x"]
+ var/offset_y = bounds_info["offset_y"]
+ var/turf/bottom_left = bottom_left_turfs[z_idx + 1]
+ return locate(bottom_left.x + offset_x, bottom_left.y + offset_y, bottom_left.z)
+
+/// Gets the turf above the given target. Returns null if there is no turf above the target
+/datum/turf_reservation/proc/get_turf_above(turf/target)
+ var/list/bounds_info = calculate_turf_bounds_information(target)
+ if(isnull(bounds_info))
+ return null
+
+ var/z_idx = bounds_info["z_idx"]
+ // check what z level, if its the min, then there is no turf above
+ if(z_idx == 1)
+ return null
+
+ var/offset_x = bounds_info["offset_x"]
+ var/offset_y = bounds_info["offset_y"]
+ var/turf/bottom_left = bottom_left_turfs[z_idx - 1]
+ return locate(bottom_left.x + offset_x, bottom_left.y + offset_y, bottom_left.z)
+
/datum/turf_reservation/New()
LAZYADD(SSmapping.turf_reservations, src)
/datum/turf_reservation/Destroy()
- INVOKE_ASYNC(src, PROC_REF(Release))
+ Release()
LAZYREMOVE(SSmapping.turf_reservations, src)
return ..()
diff --git a/code/modules/mapping/space_management/zlevel_manager.dm b/code/modules/mapping/space_management/zlevel_manager.dm
index 9311719ea7d8..2b96065929f8 100644
--- a/code/modules/mapping/space_management/zlevel_manager.dm
+++ b/code/modules/mapping/space_management/zlevel_manager.dm
@@ -14,16 +14,22 @@
for (var/I in 1 to default_map_traits.len)
var/list/features = default_map_traits[I]
var/datum/space_level/S = new(I, features[DL_NAME], features[DL_TRAITS])
- z_list += S
+ manage_z_level(S, filled_with_space = FALSE)
+ //generate_z_level_linkages() // Default Zs don't use add_new_zlevel() so they don't automatically generate z-linkages.
-/datum/controller/subsystem/mapping/proc/add_new_zlevel(name, traits = list(), z_type = /datum/space_level)
+/datum/controller/subsystem/mapping/proc/add_new_zlevel(name, traits = list(), z_type = /datum/space_level, contain_turfs = TRUE)
+ UNTIL(!adding_new_zlevel)
+ adding_new_zlevel = TRUE
var/new_z = z_list.len + 1
if (world.maxz < new_z)
world.incrementMaxZ()
CHECK_TICK
// TODO: sleep here if the Z level needs to be cleared
var/datum/space_level/S = new z_type(new_z, name, traits)
- z_list += S
+ manage_z_level(S, filled_with_space = TRUE, contain_turfs = contain_turfs)
+ //generate_linkages_for_z_level(new_z)
+ //calculate_z_level_gravity(new_z)
+ adding_new_zlevel = FALSE
SEND_GLOBAL_SIGNAL(COMSIG_GLOB_NEW_Z, S)
return S
diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
index c8d3df91c975..03ba544be6b8 100644
--- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
+++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
@@ -839,6 +839,8 @@
tackle_min = caste.tackle_min
tackle_max = caste.tackle_max
tackle_chance = caste.tackle_chance + tackle_chance_modifier
+ tacklestrength_min = caste.tacklestrength_min
+ tacklestrength_max = caste.tacklestrength_max
/mob/living/carbon/xenomorph/proc/recalculate_health()
var/new_max_health = nocrit ? health_modifier + maxHealth : health_modifier + caste.max_health
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm
index 152115cd7c8b..f854272365d0 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm
@@ -156,7 +156,7 @@
addtimer(CALLBACK(src, PROC_REF(process_tunnel), T), 1 SECONDS)
/mob/living/carbon/xenomorph/proc/do_tunnel(turf/T)
- to_chat(src, SPAN_NOTICE("We tunnel to your destination."))
+ to_chat(src, SPAN_NOTICE("We tunnel to the destination."))
anchored = FALSE
forceMove(T)
burrow_off()
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm
index aa98f063b8d5..b1358e30c26b 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm
@@ -1,14 +1,22 @@
-/datum/action/xeno_action/activable/pounce/predalien
- name = "Leap"
+
+/datum/action/xeno_action/onclick/feralrush
+ name = "Feral Rush"
+ action_icon_state = "charge_spit"
+ ability_name = "toughen up"
+ macro_path = /datum/action/xeno_action/verb/verb_feralrush
ability_primacy = XENO_PRIMARY_ACTION_1
+ action_type = XENO_ACTION_ACTIVATE
+ xeno_cooldown = 12 SECONDS
+
+ // Config
+ var/speed_duration = 3 SECONDS
+ var/armor_duration = 6 SECONDS
+ var/speed_buff_amount = 0.8 // Go from shit slow to kindafast
+ var/armor_buff_amount = 10 // hopefully-minor buff so they can close the distance
- knockdown = FALSE
+ var/speed_buff = FALSE
+ var/armor_buff = FALSE
- distance = 5
- knockdown = FALSE // Should we knock down the target?
- slash = FALSE // Do we slash upon reception?
- freeze_self = FALSE // Should we freeze ourselves after the lunge?
- should_destroy_objects = TRUE // Only used for ravager charge
/datum/action/xeno_action/onclick/predalien_roar
name = "Roar"
@@ -16,37 +24,53 @@
ability_name = "roar"
action_type = XENO_ACTION_CLICK
ability_primacy = XENO_PRIMARY_ACTION_2
+ macro_path = /datum/action/xeno_action/verb/verb_predalien_roar
xeno_cooldown = 25 SECONDS
- plasma_cost = 50
-
var/predalien_roar = list("sound/voice/predalien_roar.ogg")
var/bonus_damage_scale = 2.5
var/bonus_speed_scale = 0.05
-/datum/action/xeno_action/onclick/smash
- name = "Smash"
- action_icon_state = "stomp"
- ability_name = "smash"
+/datum/action/xeno_action/activable/feral_smash
+ name = "Feral Smash"
+ ability_name = "Feral Smash"
+ action_icon_state = "lunge"
action_type = XENO_ACTION_CLICK
+ macro_path = /datum/action/xeno_action/verb/feral_smash
ability_primacy = XENO_PRIMARY_ACTION_3
xeno_cooldown = 20 SECONDS
- plasma_cost = 80
-
- var/freeze_duration = 1.5 SECONDS
- var/activation_delay = 1 SECONDS
- var/smash_sounds = list('sound/effects/alien_footstep_charge1.ogg', 'sound/effects/alien_footstep_charge2.ogg', 'sound/effects/alien_footstep_charge3.ogg')
+ // Configurables
+ var/grab_range = 4
+ var/click_miss_cooldown = 15
+ var/twitch_message_cooldown = 0 //apparently this is necessary for a tiny code that makes the lunge message on cooldown not be spammable, doesn't need to be big so 5 will do.
+ var/smash_damage = 20
+ var/smash_scale = 10
+ var/stun_duration = 2 SECONDS
-/datum/action/xeno_action/activable/devastate
- name = "Devastate"
- action_icon_state = "gut"
- ability_name = "devastate"
+/datum/action/xeno_action/activable/feralfrenzy
+ name = "Feral Frenzy"
+ action_icon_state = "rav_eviscerate"
+ ability_name = "Feral Frenzy"
action_type = XENO_ACTION_CLICK
ability_primacy = XENO_PRIMARY_ACTION_4
- xeno_cooldown = 20 SECONDS
- plasma_cost = 110
-
- var/activation_delay = 1 SECONDS
+ macro_path = /datum/action/xeno_action/verb/verb_feralfrenzy
+ xeno_cooldown = 15 SECONDS
+ //AOE
+ var/activation_delay_aoe = 1 SECONDS
+ var/base_damage_aoe = 15
+ var/damage_scale_aoe = 10
+ //SINGLE TARGET
+ var/activation_delay = 0.5 SECONDS
var/base_damage = 25
- var/damage_scale = 10 // How much it scales by every kill
+ var/damage_scale = 10
+ var/targeting = SINGLETARGETGUT
+ /// The orange used for a AOETARGETGUT
+ var/range = 2
+
+/datum/action/xeno_action/onclick/toggle_gut_targeting
+ name = "Toggle Gutting Type"
+ action_icon_state = "gut" // starting targetting is SINGLETARGETGUT
+ macro_path = /datum/action/xeno_action/verb/verb_toggle_gut_targeting
+ action_type = XENO_ACTION_ACTIVATE
+ ability_primacy = XENO_PRIMARY_ACTION_5
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm
new file mode 100644
index 000000000000..450a0ac67745
--- /dev/null
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm
@@ -0,0 +1,35 @@
+/datum/action/xeno_action/verb/verb_feralfrenzy()
+ set category = "Alien"
+ set name = "Feral Frenzy"
+ set hidden = TRUE
+ var/action_name = "Feral Frenzy"
+ handle_xeno_macro(src, action_name)
+
+/datum/action/xeno_action/verb/verb_toggle_gut_targeting()
+ set category = "Alien"
+ set name = "Toggle Gutting Type"
+ set hidden = TRUE
+ var/action_name = "Toggle Gutting Type"
+ handle_xeno_macro(src, action_name)
+
+
+/datum/action/xeno_action/verb/verb_feralrush()
+ set category = "Alien"
+ set name = "Feral Rush"
+ set hidden = TRUE
+ var/action_name = "Feral Rush"
+ handle_xeno_macro(src, action_name)
+
+/datum/action/xeno_action/verb/verb_predalien_roar()
+ set category = "Alien"
+ set name = "Predalien Roar"
+ set hidden = TRUE
+ var/action_name = "Roar"
+ handle_xeno_macro(src, action_name)
+
+/datum/action/xeno_action/verb/feral_smash()
+ set category = "Alien"
+ set name = "Feral Smash"
+ set hidden = TRUE
+ var/action_name = "Feral Smash"
+ handle_xeno_macro(src, action_name)
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 cdf0d3840084..6e6fef86a2f4 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
@@ -1,13 +1,10 @@
-/datum/action/xeno_action/activable/pounce/predalien/pre_pounce_effects()
- playsound(owner, 'sound/voice/predalien_pounce.ogg', 75, 0, status = 0)
-
/datum/action/xeno_action/onclick/predalien_roar/use_ability(atom/target)
var/mob/living/carbon/xenomorph/xeno = owner
- if (!action_cooldown_check())
+ if(!action_cooldown_check())
return
- if (!xeno.check_state())
+ if(!xeno.check_state())
return
if(!check_and_use_plasma_owner())
@@ -34,124 +31,258 @@
continue
new /datum/effects/xeno_buff(carbon, xeno, ttl = (0.25 SECONDS * behavior.kills + 3 SECONDS), bonus_damage = bonus_damage_scale * behavior.kills, bonus_speed = (bonus_speed_scale * behavior.kills))
-
- for(var/mob/M in view(xeno))
- if(M && M.client)
- shake_camera(M, 10, 1)
-
apply_cooldown()
return ..()
-/datum/action/xeno_action/onclick/smash/use_ability(atom/target)
+/datum/action/xeno_action/activable/feralfrenzy/use_ability(atom/target)
var/mob/living/carbon/xenomorph/xeno = owner
-
- if (!action_cooldown_check())
+ if(!action_cooldown_check() || xeno.action_busy)
+ return
+ if(!xeno.check_state())
return
- if (!xeno.check_state())
+ var/datum/behavior_delegate/predalien_base/predalienbehavior = xeno.behavior_delegate
+ if(!istype(predalienbehavior))
return
+ if(targeting == AOETARGETGUT)
+ xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] begins digging in for a massive strike!"), SPAN_XENOHIGHDANGER("We begin digging in for a massive strike!"))
+ ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate"))
+ xeno.anchored = TRUE
+ if (do_after(xeno, (activation_delay_aoe), INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE))
+ xeno.emote("roar")
+ xeno.spin_circle()
+
+ for (var/mob/living/carbon/carbon in orange(xeno, range))
+ if(!isliving(carbon) || xeno.can_not_harm(carbon))
+ continue
+
+ if (carbon.stat == DEAD)
+ continue
+
+ if(!check_clear_path_to_target(xeno, carbon))
+ continue
+
+ xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rip open the guts of [carbon]!"))
+ carbon.spawn_gibs()
+ xeno.animation_attack_on(carbon)
+ xeno.spin_circle()
+ xeno.flick_attack_overlay(carbon, "tail")
+ playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 30, 1)
+ carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN)
+ playsound(get_turf(carbon), "alien_claw_flesh", 30, 1)
+ carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage_aoe + damage_scale_aoe * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20)
+ playsound(owner, 'sound/voice/predalien_death.ogg', 75, 0, status = 0)
+ REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate"))
+ xeno.anchored = FALSE
+ apply_cooldown()
+ return ..()
- var/datum/behavior_delegate/predalien_base/behavior = xeno.behavior_delegate
- if(!istype(behavior))
+ //single target checks
+ if(xeno.can_not_harm(target))
+ to_chat(xeno, SPAN_XENOWARNING("We must target a hostile!"))
return
- if(!check_plasma_owner())
+ if(!isliving(target))
return
- if(!do_after(xeno, activation_delay, INTERRUPT_ALL, BUSY_ICON_GENERIC))
- to_chat(xeno, "Keep still whilst trying to smash into the ground")
+ if(get_dist_sqrd(target, xeno) > 2)
+ to_chat(xeno, SPAN_XENOWARNING("[target] is too far away!"))
+ return
- var/real_cooldown = xeno_cooldown
+ var/mob/living/carbon/carbon = target
- xeno_cooldown = 3 SECONDS
+ if(carbon.stat == DEAD)
+ to_chat(xeno, SPAN_XENOWARNING("[carbon] is dead, why would we want to touch them?"))
+ return
+ if(targeting == SINGLETARGETGUT) // single target
+ ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate"))
apply_cooldown()
- xeno_cooldown = real_cooldown
+
+ ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate"))
+ xeno.anchored = TRUE
+
+ if(do_after(xeno, activation_delay, INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE))
+ xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rapidly slice into [carbon]!"))
+ carbon.spawn_gibs()
+ playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 50, 1)
+ carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN)
+ carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage + damage_scale * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20)
+
+ xeno.animation_attack_on(carbon)
+ xeno.spin_circle()
+ xeno.flick_attack_overlay(carbon, "tail")
+
+ playsound(owner, 'sound/voice/predalien_growl.ogg', 50, 0, status = 0)
+
+ REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate"))
+ xeno.anchored = FALSE
+ unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate"))
+
+ return ..()
+
+
+/datum/action/xeno_action/onclick/feralrush/use_ability(atom/A)
+ var/mob/living/carbon/xenomorph/predatoralien = owner
+
+ if(!action_cooldown_check())
+ return
+
+ if(!istype(predatoralien) || !predatoralien.check_state())
+ return
+
+ if(armor_buff && speed_buff)
+ to_chat(predatoralien, SPAN_XENOHIGHDANGER("We cannot stack this!"))
return
if(!check_and_use_plasma_owner())
return
- playsound(xeno.loc, pick(smash_sounds), 50, 0, status = 0)
- xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] smashes into the ground!"))
- xeno.create_stomp()
+ addtimer(CALLBACK(src, PROC_REF(remove_rush_effects)), speed_duration)
+ addtimer(CALLBACK(src, PROC_REF(remove_armor_effects)), armor_duration) // calculate armor and speed differently, so it's a bit more armored while trying to get out
+ predatoralien.add_filter("predalien_toughen", 1, list("type" = "outline", "color" = "#421313", "size" = 1))
+ to_chat(predatoralien, SPAN_XENOWARNING("We feel our muscles tense as our speed and armor increase!"))
+ speed_buff = TRUE
+ armor_buff = TRUE
+ predatoralien.speed_modifier -= speed_buff_amount
+ predatoralien.armor_modifier += armor_buff_amount
+ predatoralien.recalculate_speed()
+ predatoralien.recalculate_armor()
+ playsound(predatoralien, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0)
+ apply_cooldown()
- for(var/mob/living/carbon/carbon in oview(round(behavior.kills * 0.5 + 2), xeno))
- if(!xeno.can_not_harm(carbon) && carbon.stat != DEAD)
- ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Smash"))
- if (ishuman(carbon))
- var/mob/living/carbon/human/human = carbon
- human.update_xeno_hostile_hud()
+/datum/action/xeno_action/onclick/feralrush/proc/remove_rush_effects()
+ SIGNAL_HANDLER
+ var/mob/living/carbon/xenomorph/predatoralien = owner
+ if(speed_buff == TRUE)
+ to_chat(predatoralien, SPAN_XENOWARNING("Our muscles relax as we feel our speed wane."))
+ predatoralien.remove_filter("predalien_toughen")
+ predatoralien.speed_modifier += speed_buff_amount
+ predatoralien.recalculate_speed()
+ speed_buff = FALSE
- addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(unroot_human), carbon, TRAIT_SOURCE_ABILITY("Smash")), get_xeno_stun_duration(carbon, freeze_duration))
+/datum/action/xeno_action/onclick/feralrush/proc/remove_armor_effects()
+ SIGNAL_HANDLER
+ var/mob/living/carbon/xenomorph/predatoralien = owner
+ if(armor_buff)
+ to_chat(predatoralien, SPAN_XENOWARNING("We are no longer armored."))
+ predatoralien.armor_modifier -= armor_buff_amount
+ predatoralien.recalculate_armor()
+ armor_buff = FALSE
- for(var/mob/M in view(xeno))
- if(M && M.client)
- shake_camera(M, 0.2 SECONDS, 1)
- apply_cooldown()
- return ..()
+/datum/action/xeno_action/onclick/toggle_gut_targeting/use_ability(atom/A)
-/datum/action/xeno_action/activable/devastate/use_ability(atom/target)
var/mob/living/carbon/xenomorph/xeno = owner
+ var/action_icon_result
- if (!action_cooldown_check())
+ if(!xeno.check_state())
return
- if (!xeno.check_state())
+ var/datum/action/xeno_action/activable/feralfrenzy/guttype = get_xeno_action_by_type(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ if(!guttype)
return
- if (!isxeno_human(target) || xeno.can_not_harm(target))
- to_chat(xeno, SPAN_XENOWARNING("We must target a hostile!"))
- return
+ if(guttype.targeting == SINGLETARGETGUT)
+ action_icon_result = "rav_scissor_cut"
+ guttype.targeting = AOETARGETGUT
+ to_chat(xeno, SPAN_XENOWARNING("We will now attack everyone around us during a Feral Frenzy."))
+ else
+ action_icon_result = "gut"
+ guttype.targeting = SINGLETARGETGUT
+ to_chat(xeno, SPAN_XENOWARNING("We will now focus our Feral Frenzy on one person!"))
+
+ button.overlays.Cut()
+ button.overlays += image('icons/mob/hud/actions_xeno.dmi', button, action_icon_result)
+ return ..()
- if (get_dist_sqrd(target, xeno) > 2)
- to_chat(xeno, SPAN_XENOWARNING("[target] is too far away!"))
- return
+/datum/action/xeno_action/activable/feral_smash/use_ability(atom/affected_atom)
+ var/mob/living/carbon/xenomorph/predalien_smash = owner
+ var/datum/behavior_delegate/predalien_base/predalienbehavior = predalien_smash.behavior_delegate
- var/mob/living/carbon/carbon = target
+ if(!action_cooldown_check())
+ if(twitch_message_cooldown < world.time )
+ predalien_smash.visible_message(SPAN_XENOWARNING("[predalien_smash]'s muscles twitch."), SPAN_XENOWARNING("Our claws twitch as we try to grab onto the target but lack the strength. Wait a moment to try again."))
+ twitch_message_cooldown = world.time + 5 SECONDS
+ return //this gives a little feedback on why your lunge didn't hit other than the lunge button going grey. Plus, it might spook marines that almost got lunged if they know why the message appeared, and extra spookiness is always good.
- if (carbon.stat == DEAD)
- to_chat(xeno, SPAN_XENOWARNING("[carbon] is dead, why would we want to touch them?"))
+ if(!affected_atom)
return
- var/datum/behavior_delegate/predalien_base/behavior = xeno.behavior_delegate
- if(!istype(behavior))
+ if(!isturf(predalien_smash.loc))
+ to_chat(predalien_smash, SPAN_XENOWARNING("We can't lunge from here!"))
return
- if (!check_and_use_plasma_owner())
+ if(!predalien_smash.check_state() || predalien_smash.agility)
return
- ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate"))
-
- if (ishuman(carbon))
- var/mob/living/carbon/human/human = carbon
- human.update_xeno_hostile_hud()
-
- apply_cooldown()
-
- ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate"))
- xeno.anchored = TRUE
+ if(predalien_smash.can_not_harm(affected_atom) || !ismob(affected_atom))
+ apply_cooldown_override(click_miss_cooldown)
+ return
- if (do_after(xeno, activation_delay, INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE))
- xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rip open the guts of [carbon]!"))
- carbon.spawn_gibs()
- playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 75, 1)
- carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN)
- carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage + damage_scale * behavior.kills), ARMOR_MELEE, BRUTE, "chest", 20)
- xeno.animation_attack_on(carbon)
- xeno.spin_circle()
- xeno.flick_attack_overlay(carbon, "tail")
+ var/mob/living/carbon/carbon = affected_atom
+ if(carbon.stat == DEAD)
+ return
- playsound(owner, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0)
+ if(!isliving(affected_atom))
+ return
- REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate"))
- xeno.anchored = FALSE
- unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate"))
+ if(!check_and_use_plasma_owner())
+ return
- xeno.visible_message(SPAN_XENODANGER("[xeno] rapidly slices into [carbon]!"))
+ apply_cooldown()
+ predalien_smash.throw_atom(get_step_towards(affected_atom, predalien_smash), grab_range, SPEED_FAST, predalien_smash)
+
+ if(predalien_smash.Adjacent(carbon) && predalien_smash.start_pulling(carbon, TRUE))
+ playsound(carbon.pulledby, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) // bang and roar for dramatic effect
+ playsound(carbon, 'sound/effects/bang.ogg', 25, 0)
+ animate(carbon, pixel_y = carbon.pixel_y + 32, time = 4, easing = SINE_EASING)
+ sleep(4)
+ playsound(carbon, 'sound/effects/bang.ogg', 25, 0)
+ playsound(carbon,"slam", 50, 1)
+ animate(carbon, pixel_y = 0, time = 4, easing = BOUNCE_EASING) //animates the smash
+ carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, smash_damage + smash_scale * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20)
+ 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
+
+/mob/living/carbon/xenomorph/predalien/stop_pulling()
+ if(isliving(pulling) && smashing)
+ smashing = FALSE // To avoid extreme cases of stopping a lunge then quickly pulling and stopping to pull someone else
+ var/mob/living/smashed = pulling
+ smashed.set_effect(0, STUN)
+ smashed.set_effect(0, WEAKEN)
return ..()
+
+/mob/living/carbon/xenomorph/predalien/start_pulling(atom/movable/movable_atom, feral_smash)
+ if(!check_state())
+ return FALSE
+
+ if(!isliving(movable_atom))
+ return FALSE
+ var/mob/living/living_mob = movable_atom
+ var/should_neckgrab = !(src.can_not_harm(living_mob)) && feral_smash
+
+
+ . = ..(living_mob, feral_smash, should_neckgrab)
+
+ if(.) //successful pull
+ if(isxeno(living_mob))
+ var/mob/living/carbon/xenomorph/xeno = living_mob
+ if(xeno.tier >= 2) // Tier 2 castes or higher immune to warrior grab stuns
+ return
+
+ if(should_neckgrab && living_mob.mob_size < MOB_SIZE_BIG)
+ visible_message(SPAN_XENOWARNING("[src] grabs [living_mob] by the back of their leg and slams them onto the ground!"), \
+ SPAN_XENOWARNING("We grab [living_mob] by the back of their leg and slam them onto the ground!")) // more flair
+ smashing = TRUE
+ living_mob.drop_held_items()
+ var/duration = get_xeno_stun_duration(living_mob, 1)
+ living_mob.KnockDown(duration)
+ living_mob.Stun(duration)
+ addtimer(VARSET_CALLBACK(src, smashing, FALSE), duration)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm
index 9ec61b4c95ca..ebcd29ded29d 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm
@@ -38,7 +38,7 @@
var/node_plant_cooldown = 7 SECONDS
var/node_plant_plasma_cost = 300
- var/turf_build_cooldown = 7 SECONDS
+ var/turf_build_cooldown = 10 SECONDS
/datum/action/xeno_action/onclick/manage_hive
name = "Manage The Hive"
diff --git a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
index 2aefff19c684..9f42f8ae8928 100644
--- a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
+++ b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
@@ -911,7 +911,7 @@
return XENO_ATTACK_ACTION
/obj/structure/girder/attack_alien(mob/living/carbon/xenomorph/M)
- if((M.caste && M.caste.tier < 2 && !isqueen(M)) || unacidable)
+ if((M.caste && M.caste.tier < 2 && M.claw_type < CLAW_TYPE_VERY_SHARP) || unacidable)
to_chat(M, SPAN_WARNING("Our claws aren't sharp enough to damage [src]."))
return XENO_NO_DELAY_ACTION
M.animation_attack_on(src)
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm
index ebae6f56830f..841675234e63 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm
@@ -6,8 +6,7 @@
melee_damage_upper = XENO_DAMAGE_TIER_5
melee_vehicle_damage = XENO_DAMAGE_TIER_5
max_health = XENO_HEALTH_TIER_9
- plasma_gain = XENO_PLASMA_GAIN_TIER_9
- plasma_max = XENO_PLASMA_TIER_3
+ plasma_max = XENO_NO_PLASMA
xeno_explosion_resistance = XENO_EXPLOSIVE_ARMOR_TIER_10
armor_deflection = XENO_ARMOR_TIER_3
evasion = XENO_EVASION_NONE
@@ -41,6 +40,7 @@
speaking_noise = 'sound/voice/predalien_click.ogg'
plasma_types = list(PLASMA_CATECHOLAMINE)
faction = FACTION_PREDALIEN
+ claw_type = CLAW_TYPE_VERY_SHARP
wall_smash = TRUE
hardcore = FALSE
pixel_x = -16
@@ -56,18 +56,19 @@
/datum/action/xeno_action/onclick/regurgitate,
/datum/action/xeno_action/watch_xeno,
/datum/action/xeno_action/activable/tail_stab,
- /datum/action/xeno_action/activable/pounce/predalien,
+ /datum/action/xeno_action/onclick/feralrush,
/datum/action/xeno_action/onclick/predalien_roar,
- /datum/action/xeno_action/onclick/smash,
- /datum/action/xeno_action/activable/devastate,
+ /datum/action/xeno_action/activable/feral_smash,
+ /datum/action/xeno_action/activable/feralfrenzy,
+ /datum/action/xeno_action/onclick/toggle_gut_targeting,
/datum/action/xeno_action/onclick/tacmap,
)
weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi'
weed_food_states = list("Predalien_1","Predalien_2","Predalien_3")
weed_food_states_flipped = list("Predalien_1","Predalien_2","Predalien_3")
+ var/smashing = FALSE
- var/butcher_time = 6 SECONDS
/mob/living/carbon/xenomorph/predalien/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number)
@@ -86,15 +87,20 @@
to_chat(src, {"
|______________________|
-
-You are a very powerful xenomorph creature that was born of a Yautja warrior body.
-You are stronger, faster, and smarter than a regular xenomorph, but you must still listen to the queen.
-You have a degree of freedom to where you can hunt and claim the heads of the hive's enemies, so check your verbs.
-Your health meter will not regenerate normally, so kill and die for the hive!
+
+You are a xenomorph born from the body of your natural enemy, you are considered an abomination to all of the yautja race and they will do WHATEVER it takes to kill you.
+However, being born from one you also harbor their intelligence and strength. You are built to be able to take them on but that does not mean you are invincible. Stay with your hive and overwhelm them with your numbers. Your sisters have sacrificed a lot for you; Do not just wander off and die.
+You must still listen to the queen.
+
|______________________|
"})
emote("roar")
+
+/mob/living/carbon/xenomorph/predalien/resist_fire()
+ ..()
+ SetKnockDown(0.1 SECONDS)
+
/datum/behavior_delegate/predalien_base
name = "Base Predalien Behavior Delegate"
@@ -118,53 +124,11 @@ Your health meter will not regenerate normally, so kill and die for the hive! 0)
- return 1
- return 0
+ return TRUE
+ update_wounds()
+ return FALSE
/obj/limb/process()
diff --git a/code/modules/projectiles/guns/pistols.dm b/code/modules/projectiles/guns/pistols.dm
index 5794e861a63c..362841651b2d 100644
--- a/code/modules/projectiles/guns/pistols.dm
+++ b/code/modules/projectiles/guns/pistols.dm
@@ -587,7 +587,7 @@
desc = "Standard issue USCM firearm. Also found in the hands of Weyland-Yutani PMC teams. Fires 9mm armor shredding rounds and is capable of 3-round burst."
icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'
icon_state = "_88m4" // to comply with css standards
- item_state = "88m4"
+ item_state = "_88m4"
fire_sound = "88m4"
firesound_volume = 20
reload_sound = 'sound/weapons/gun_88m4_reload.ogg'
diff --git a/code/modules/shuttle/computer.dm b/code/modules/shuttle/computer.dm
index 79377d9c0849..b803a8f66b55 100644
--- a/code/modules/shuttle/computer.dm
+++ b/code/modules/shuttle/computer.dm
@@ -81,8 +81,8 @@
to_chat(usr, SPAN_NOTICE("Unable to comply."))
return TRUE
-/obj/structure/machinery/computer/shuttle/connect_to_shuttle(obj/docking_port/mobile/port, obj/docking_port/stationary/dock, idnum, override=FALSE)
- if(port && (shuttleId == initial(shuttleId) || override))
+/obj/structure/machinery/computer/shuttle/connect_to_shuttle(mapload, obj/docking_port/mobile/port, obj/docking_port/stationary/dock)
+ if(port && (shuttleId == initial(shuttleId)))
shuttleId = port.id
/obj/structure/machinery/computer/shuttle/ert
diff --git a/code/modules/shuttle/docking.dm b/code/modules/shuttle/docking.dm
index a21ec330d4c9..63e220deadc6 100644
--- a/code/modules/shuttle/docking.dm
+++ b/code/modules/shuttle/docking.dm
@@ -1,7 +1,5 @@
/// This is the main proc. It instantly moves our mobile port to stationary port `new_dock`.
/obj/docking_port/mobile/proc/initiate_docking(obj/docking_port/stationary/new_dock, movement_direction, force=FALSE)
- // Crashing this ship with NO SURVIVORS
-
if(new_dock.get_docked() == src)
remove_ripples()
return DOCKING_SUCCESS
diff --git a/code/modules/shuttle/dropship_hijack.dm b/code/modules/shuttle/dropship_hijack.dm
index c01445be5b5b..2190683974e0 100644
--- a/code/modules/shuttle/dropship_hijack.dm
+++ b/code/modules/shuttle/dropship_hijack.dm
@@ -191,14 +191,13 @@
turfs += get_area_turfs(/area/almayer/medical/containment)
turfs += get_area_turfs(/area/almayer/medical/containment/cell)
turfs += get_area_turfs(/area/almayer/medical/medical_science)
- turfs += get_area_turfs(/area/almayer/medical/testlab)
turfs += get_area_turfs(/area/almayer/medical/hydroponics)
if("Upper deck Aftship")
turfs += get_area_turfs(/area/almayer/engineering/upper_engineering)
turfs += get_area_turfs(/area/almayer/engineering/laundry)
if("Lower deck Foreship")
turfs += get_area_turfs(/area/almayer/hallways/hangar)
- turfs += get_area_turfs(/area/almayer/hallways/vehiclehangar)
+ turfs += get_area_turfs(/area/almayer/hallways/lower/vehiclehangar)
if("Lower deck Midship")
turfs += get_area_turfs(/area/almayer/medical/chemistry)
turfs += get_area_turfs(/area/almayer/medical/lower_medical_lobby)
diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm
index 6f02bf00e89d..d72dcdda5bfe 100644
--- a/code/modules/shuttle/shuttle.dm
+++ b/code/modules/shuttle/shuttle.dm
@@ -380,10 +380,82 @@
var/shuttle_flags = NONE
+#define WORLDMAXX_CUTOFF (world.maxx + 1)
+#define WORLDMAXY_CUTOFF (world.maxx + 1)
+/**
+ * Calculated and populates the information used for docking and some internal vars.
+ * This can also be used to calculate from shuttle_areas so that you can expand/shrink shuttles!
+ *
+ * Arguments:
+ * * loading_from - The template that the shuttle was loaded from, if not given we iterate shuttle_areas to calculate information instead
+ */
+/obj/docking_port/mobile/proc/calculate_docking_port_information(datum/map_template/shuttle/loading_from)
+ var/port_x_offset = loading_from?.port_x_offset
+ var/port_y_offset = loading_from?.port_y_offset
+ var/width = loading_from?.width
+ var/height = loading_from?.height
+ if(!loading_from)
+ if(!length(shuttle_areas))
+ CRASH("Attempted to calculate a docking port's information without a template before it was assigned any areas!")
+ // no template given, use shuttle_areas to calculate width and height
+ var/min_x = -1
+ var/min_y = -1
+ var/max_x = WORLDMAXX_CUTOFF
+ var/max_y = WORLDMAXY_CUTOFF
+ for(var/area/area as anything in shuttle_areas)
+ for(var/turf/turf in area)
+ min_x = max(turf.x, min_x)
+ max_x = min(turf.x, max_x)
+ min_y = max(turf.y, min_y)
+ max_y = min(turf.y, max_y)
+ CHECK_TICK
+
+ if(min_x == -1 || max_x == WORLDMAXX_CUTOFF)
+ CRASH("Failed to locate shuttle boundaries when iterating through shuttle areas, somehow.")
+ if(min_y == -1 || max_y == WORLDMAXY_CUTOFF)
+ CRASH("Failed to locate shuttle boundaries when iterating through shuttle areas, somehow.")
+
+ width = (max_x - min_x) + 1
+ height = (max_y - min_y) + 1
+ port_x_offset = min_x - x
+ port_y_offset = min_y - y
+
+ if(dir in list(EAST, WEST))
+ src.width = height
+ src.height = width
+ else
+ src.width = width
+ src.height = height
+
+ switch(dir)
+ if(NORTH)
+ dwidth = port_x_offset - 1
+ dheight = port_y_offset - 1
+ if(EAST)
+ dwidth = height - port_y_offset
+ dheight = port_x_offset - 1
+ if(SOUTH)
+ dwidth = width - port_x_offset
+ dheight = height - port_y_offset
+ if(WEST)
+ dwidth = port_y_offset - 1
+ dheight = width - port_x_offset
+#undef WORLDMAXX_CUTOFF
+#undef WORLDMAXY_CUTOFF
+
/obj/docking_port/mobile/register()
. = ..()
SSshuttle.mobile += src
+/**
+ * Actions to be taken after shuttle is loaded and has been moved to its final location
+ *
+ * Arguments:
+ * * replace - TRUE if this shuttle is replacing an existing one. FALSE by default.
+ */
+/obj/docking_port/mobile/proc/postregister(replace = FALSE)
+ return
+
/obj/docking_port/mobile/Destroy(force)
if(force)
QDEL_NULL(alarm_sound_loop)
@@ -442,6 +514,10 @@
// Called after the shuttle is loaded from template
/obj/docking_port/mobile/proc/linkup(datum/map_template/shuttle/template, obj/docking_port/stationary/dock)
+
+ // ================== CM Change ==================
+ // This is gone in /tg/ backend but kept for historical reasons
+ // Suspect this is supposed to be handled in register
var/list/static/shuttle_id = list()
var/idnum = ++shuttle_id[id]
if(idnum > 1)
@@ -449,12 +525,12 @@
id = "[id][idnum]"
if(name == initial(name))
name = "[name] [idnum]"
- for(var/place in shuttle_areas)
- var/area/area = place
- area.connect_to_shuttle(src, dock, idnum, FALSE)
- for(var/each in place)
- var/atom/atom = each
- atom.connect_to_shuttle(src, dock, idnum, FALSE)
+ // ================ END CM Change ================
+
+ for(var/area/place as anything in shuttle_areas)
+ place.connect_to_shuttle(TRUE, src, dock)
+ for(var/atom/individual_atoms in place)
+ individual_atoms.connect_to_shuttle(TRUE, src, dock)
//this is a hook for custom behaviour. Maybe at some point we could add checks to see if engines are intact
diff --git a/code/modules/shuttle/shuttles/ert.dm b/code/modules/shuttle/shuttles/ert.dm
index b619645c501c..4c078f3fe6d3 100644
--- a/code/modules/shuttle/shuttles/ert.dm
+++ b/code/modules/shuttle/shuttles/ert.dm
@@ -254,7 +254,7 @@
width = 17
height = 29
airlock_id = "s_umbilical"
- airlock_area = /area/almayer/hallways/port_umbilical
+ airlock_area = /area/almayer/hallways/lower/port_umbilical
/obj/docking_port/stationary/emergency_response/external/hangar_starboard
name = "Almayer hanger starboard external airlock"
@@ -263,7 +263,7 @@
width = 17
height = 29
airlock_id = "n_umbilical"
- airlock_area = /area/almayer/hallways/starboard_umbilical
+ airlock_area = /area/almayer/hallways/lower/starboard_umbilical
// These are docking ports not on the almayer
/obj/docking_port/stationary/emergency_response/idle_port1
diff --git a/code/modules/shuttle/shuttles/trijent_elevator.dm b/code/modules/shuttle/shuttles/trijent_elevator.dm
index 457c150212c0..ff10485e8d5a 100644
--- a/code/modules/shuttle/shuttles/trijent_elevator.dm
+++ b/code/modules/shuttle/shuttles/trijent_elevator.dm
@@ -37,12 +37,6 @@
. = ..()
door_control.control_doors("force-lock-launch", "all", force=TRUE)
-/obj/docking_port/mobile/trijent_elevator/linkup(datum/map_template/shuttle/template, obj/docking_port/stationary/dock)
- ..()
- var/datum/map_template/shuttle/trijent_elevator/elev = template
- elevator_network = elev.elevator_network
- log_debug("Adding network [elev.elevator_network] to [id]")
-
/obj/docking_port/stationary/trijent_elevator
dir=NORTH
width=7
diff --git a/code/modules/tgs/core/core.dm b/code/modules/tgs/core/core.dm
index 8be96f27404a..15622228e91f 100644
--- a/code/modules/tgs/core/core.dm
+++ b/code/modules/tgs/core/core.dm
@@ -166,3 +166,11 @@
var/datum/tgs_api/api = TGS_READ_GLOBAL(tgs)
if(api)
return api.Visibility()
+
+/world/TgsTriggerEvent(event_name, list/parameters, wait_for_completion = FALSE)
+ var/datum/tgs_api/api = TGS_READ_GLOBAL(tgs)
+ if(api)
+ if(!istype(parameters, /list))
+ parameters = list()
+
+ return api.TriggerEvent(event_name, parameters, wait_for_completion)
diff --git a/code/modules/tgs/core/datum.dm b/code/modules/tgs/core/datum.dm
index 07ce3b684584..898516f12486 100644
--- a/code/modules/tgs/core/datum.dm
+++ b/code/modules/tgs/core/datum.dm
@@ -17,7 +17,7 @@ TGS_DEFINE_AND_SET_GLOBAL(tgs, null)
world.sleep_offline = FALSE // https://www.byond.com/forum/post/2894866
del(world)
world.sleep_offline = FALSE // just in case, this is BYOND after all...
- sleep(1)
+ sleep(world.tick_lag)
TGS_DEBUG_LOG("BYOND DIDN'T TERMINATE THE WORLD!!! TICK IS: [world.time], sleep_offline: [world.sleep_offline]")
/datum/tgs_api/latest
@@ -69,3 +69,6 @@ TGS_PROTECT_DATUM(/datum/tgs_api)
/datum/tgs_api/proc/Visibility()
return TGS_UNIMPLEMENTED
+
+/datum/tgs_api/proc/TriggerEvent(event_name, list/parameters, wait_for_completion)
+ return FALSE
diff --git a/code/modules/tgs/v4/api.dm b/code/modules/tgs/v4/api.dm
index 945e2e411767..7c87922750b9 100644
--- a/code/modules/tgs/v4/api.dm
+++ b/code/modules/tgs/v4/api.dm
@@ -181,7 +181,7 @@
var/json = json_encode(data)
while(requesting_new_port && !override_requesting_new_port)
- sleep(1)
+ sleep(world.tick_lag)
//we need some port open at this point to facilitate return communication
if(!world.port)
@@ -209,7 +209,7 @@
requesting_new_port = FALSE
while(export_lock)
- sleep(1)
+ sleep(world.tick_lag)
export_lock = TRUE
last_interop_response = null
@@ -217,7 +217,7 @@
text2file(json, server_commands_json_path)
for(var/I = 0; I < EXPORT_TIMEOUT_DS && !last_interop_response; ++I)
- sleep(1)
+ sleep(world.tick_lag)
if(!last_interop_response)
TGS_ERROR_LOG("Failed to get export result for: [json]")
diff --git a/code/modules/tgs/v5/__interop_version.dm b/code/modules/tgs/v5/__interop_version.dm
index 616263098fd3..f4806f7adb97 100644
--- a/code/modules/tgs/v5/__interop_version.dm
+++ b/code/modules/tgs/v5/__interop_version.dm
@@ -1 +1 @@
-"5.8.0"
+"5.9.0"
diff --git a/code/modules/tgs/v5/_defines.dm b/code/modules/tgs/v5/_defines.dm
index 1c7d67d20cdf..92c7a8388a71 100644
--- a/code/modules/tgs/v5/_defines.dm
+++ b/code/modules/tgs/v5/_defines.dm
@@ -14,6 +14,7 @@
#define DMAPI5_BRIDGE_COMMAND_KILL 4
#define DMAPI5_BRIDGE_COMMAND_CHAT_SEND 5
#define DMAPI5_BRIDGE_COMMAND_CHUNK 6
+#define DMAPI5_BRIDGE_COMMAND_EVENT 7
#define DMAPI5_PARAMETER_ACCESS_IDENTIFIER "accessIdentifier"
#define DMAPI5_PARAMETER_CUSTOM_COMMANDS "customCommands"
@@ -34,6 +35,7 @@
#define DMAPI5_BRIDGE_PARAMETER_VERSION "version"
#define DMAPI5_BRIDGE_PARAMETER_CHAT_MESSAGE "chatMessage"
#define DMAPI5_BRIDGE_PARAMETER_MINIMUM_SECURITY_LEVEL "minimumSecurityLevel"
+#define DMAPI5_BRIDGE_PARAMETER_EVENT_INVOCATION "eventInvocation"
#define DMAPI5_BRIDGE_RESPONSE_NEW_PORT "newPort"
#define DMAPI5_BRIDGE_RESPONSE_RUNTIME_INFORMATION "runtimeInformation"
@@ -81,6 +83,7 @@
#define DMAPI5_TOPIC_COMMAND_SEND_CHUNK 9
#define DMAPI5_TOPIC_COMMAND_RECEIVE_CHUNK 10
#define DMAPI5_TOPIC_COMMAND_RECEIVE_BROADCAST 11
+#define DMAPI5_TOPIC_COMMAND_COMPLETE_EVENT 12
#define DMAPI5_TOPIC_PARAMETER_COMMAND_TYPE "commandType"
#define DMAPI5_TOPIC_PARAMETER_CHAT_COMMAND "chatCommand"
@@ -116,3 +119,9 @@
#define DMAPI5_CUSTOM_CHAT_COMMAND_NAME "name"
#define DMAPI5_CUSTOM_CHAT_COMMAND_HELP_TEXT "helpText"
#define DMAPI5_CUSTOM_CHAT_COMMAND_ADMIN_ONLY "adminOnly"
+
+#define DMAPI5_EVENT_ID "eventId"
+
+#define DMAPI5_EVENT_INVOCATION_NAME "eventName"
+#define DMAPI5_EVENT_INVOCATION_PARAMETERS "parameters"
+#define DMAPI5_EVENT_INVOCATION_NOTIFY_COMPLETION "notifyCompletion"
diff --git a/code/modules/tgs/v5/api.dm b/code/modules/tgs/v5/api.dm
index a5c064a8eaf1..9b64931f8f92 100644
--- a/code/modules/tgs/v5/api.dm
+++ b/code/modules/tgs/v5/api.dm
@@ -27,6 +27,8 @@
var/chunked_requests = 0
var/list/chunked_topics = list()
+ var/list/pending_events = list()
+
var/detached = FALSE
/datum/tgs_api/v5/New()
@@ -125,7 +127,7 @@
TGS_DEBUG_LOG("RequireInitialBridgeResponse: Starting sleep")
logged = TRUE
- sleep(1)
+ sleep(world.tick_lag)
TGS_DEBUG_LOG("RequireInitialBridgeResponse: Passed")
@@ -249,6 +251,40 @@
WaitForReattach(TRUE)
return chat_channels.Copy()
+/datum/tgs_api/v5/TriggerEvent(event_name, list/parameters, wait_for_completion)
+ RequireInitialBridgeResponse()
+ WaitForReattach(TRUE)
+
+ if(interop_version.minor < 9)
+ TGS_WARNING_LOG("Interop version too low for custom events!")
+ return FALSE
+
+ var/str_parameters = list()
+ for(var/i in parameters)
+ str_parameters += "[i]"
+
+ var/list/response = Bridge(DMAPI5_BRIDGE_COMMAND_EVENT, list(DMAPI5_BRIDGE_PARAMETER_EVENT_INVOCATION = list(DMAPI5_EVENT_INVOCATION_NAME = event_name, DMAPI5_EVENT_INVOCATION_PARAMETERS = str_parameters, DMAPI5_EVENT_INVOCATION_NOTIFY_COMPLETION = wait_for_completion)))
+ if(!response)
+ return FALSE
+
+ var/event_id = response[DMAPI5_EVENT_ID]
+ if(!event_id)
+ return FALSE
+
+ TGS_DEBUG_LOG("Created event ID: [event_id]")
+ if(!wait_for_completion)
+ return TRUE
+
+ TGS_DEBUG_LOG("Waiting for completion of event ID: [event_id]")
+
+ while(!pending_events[event_id])
+ sleep(world.tick_lag)
+
+ TGS_DEBUG_LOG("Completed wait on event ID: [event_id]")
+ pending_events -= event_id
+
+ return TRUE
+
/datum/tgs_api/v5/proc/DecodeChannels(chat_update_json)
TGS_DEBUG_LOG("DecodeChannels()")
var/list/chat_channels_json = chat_update_json[DMAPI5_CHAT_UPDATE_CHANNELS]
diff --git a/code/modules/tgs/v5/bridge.dm b/code/modules/tgs/v5/bridge.dm
index a0ab35987670..0c5e701a32b6 100644
--- a/code/modules/tgs/v5/bridge.dm
+++ b/code/modules/tgs/v5/bridge.dm
@@ -65,7 +65,7 @@
if(detached)
// Wait up to one minute
for(var/i in 1 to 600)
- sleep(1)
+ sleep(world.tick_lag)
if(!detached && (!require_channels || length(chat_channels)))
break
@@ -77,8 +77,11 @@
/datum/tgs_api/v5/proc/PerformBridgeRequest(bridge_request)
WaitForReattach(FALSE)
+ TGS_DEBUG_LOG("Bridge request start")
// This is an infinite sleep until we get a response
var/export_response = world.Export(bridge_request)
+ TGS_DEBUG_LOG("Bridge request complete")
+
if(!export_response)
TGS_ERROR_LOG("Failed bridge request: [bridge_request]")
return
@@ -88,7 +91,7 @@
TGS_ERROR_LOG("Failed bridge request, missing content!")
return
- var/response_json = file2text(content)
+ var/response_json = TGS_FILE2TEXT_NATIVE(content)
if(!response_json)
TGS_ERROR_LOG("Failed bridge request, failed to load content!")
return
diff --git a/code/modules/tgs/v5/topic.dm b/code/modules/tgs/v5/topic.dm
index 05e6c4e1b214..e66edc27206a 100644
--- a/code/modules/tgs/v5/topic.dm
+++ b/code/modules/tgs/v5/topic.dm
@@ -176,6 +176,9 @@
var/list/reattach_response = TopicResponse(error_message)
reattach_response[DMAPI5_PARAMETER_CUSTOM_COMMANDS] = ListCustomCommands()
reattach_response[DMAPI5_PARAMETER_TOPIC_PORT] = GetTopicPort()
+
+ pending_events.Cut()
+
return reattach_response
if(DMAPI5_TOPIC_COMMAND_SEND_CHUNK)
@@ -276,6 +279,15 @@
TGS_WORLD_ANNOUNCE(message)
return TopicResponse()
+ if(DMAPI5_TOPIC_COMMAND_COMPLETE_EVENT)
+ var/event_id = topic_parameters[DMAPI5_EVENT_ID]
+ if (!istext(event_id))
+ return TopicResponse("Invalid or missing [DMAPI5_EVENT_ID]")
+
+ TGS_DEBUG_LOG("Completing event ID [event_id]...")
+ pending_events[event_id] = TRUE
+ return TopicResponse()
+
return TopicResponse("Unknown command: [command]")
/datum/tgs_api/v5/proc/WorldBroadcast(message)
diff --git a/code/modules/tgs/v5/undefs.dm b/code/modules/tgs/v5/undefs.dm
index d531d4b7b9dd..237207fdfd05 100644
--- a/code/modules/tgs/v5/undefs.dm
+++ b/code/modules/tgs/v5/undefs.dm
@@ -14,6 +14,7 @@
#undef DMAPI5_BRIDGE_COMMAND_KILL
#undef DMAPI5_BRIDGE_COMMAND_CHAT_SEND
#undef DMAPI5_BRIDGE_COMMAND_CHUNK
+#undef DMAPI5_BRIDGE_COMMAND_EVENT
#undef DMAPI5_PARAMETER_ACCESS_IDENTIFIER
#undef DMAPI5_PARAMETER_CUSTOM_COMMANDS
@@ -34,6 +35,7 @@
#undef DMAPI5_BRIDGE_PARAMETER_VERSION
#undef DMAPI5_BRIDGE_PARAMETER_CHAT_MESSAGE
#undef DMAPI5_BRIDGE_PARAMETER_MINIMUM_SECURITY_LEVEL
+#undef DMAPI5_BRIDGE_PARAMETER_EVENT_INVOCATION
#undef DMAPI5_BRIDGE_RESPONSE_NEW_PORT
#undef DMAPI5_BRIDGE_RESPONSE_RUNTIME_INFORMATION
@@ -81,6 +83,7 @@
#undef DMAPI5_TOPIC_COMMAND_SEND_CHUNK
#undef DMAPI5_TOPIC_COMMAND_RECEIVE_CHUNK
#undef DMAPI5_TOPIC_COMMAND_RECEIVE_BROADCAST
+#undef DMAPI5_TOPIC_COMMAND_COMPLETE_EVENT
#undef DMAPI5_TOPIC_PARAMETER_COMMAND_TYPE
#undef DMAPI5_TOPIC_PARAMETER_CHAT_COMMAND
@@ -116,3 +119,9 @@
#undef DMAPI5_CUSTOM_CHAT_COMMAND_NAME
#undef DMAPI5_CUSTOM_CHAT_COMMAND_HELP_TEXT
#undef DMAPI5_CUSTOM_CHAT_COMMAND_ADMIN_ONLY
+
+#undef DMAPI5_EVENT_ID
+
+#undef DMAPI5_EVENT_INVOCATION_NAME
+#undef DMAPI5_EVENT_INVOCATION_PARAMETERS
+#undef DMAPI5_EVENT_INVOCATION_NOTIFY_COMPLETION
diff --git a/code/modules/vehicles/interior/interior.dm b/code/modules/vehicles/interior/interior.dm
index f2afcd5ae5f7..8fb65602c9b3 100644
--- a/code/modules/vehicles/interior/interior.dm
+++ b/code/modules/vehicles/interior/interior.dm
@@ -304,21 +304,13 @@
// Returns min and max turfs for the interior
/datum/interior/proc/get_bound_turfs()
- var/turf/min = TURF_FROM_COORDS_LIST(reservation.bottom_left_coords)
- if(!min)
- return null
-
- var/turf/max = TURF_FROM_COORDS_LIST(reservation.top_right_coords)
- if(!max)
- return null
-
- return list(min, max)
+ return list(reservation.bottom_left_turfs[1], reservation.top_right_turfs[1])
/datum/interior/proc/get_middle_coords()
- var/turf/min = reservation.bottom_left_coords
- var/turf/max = reservation.top_right_coords
+ var/turf/min = reservation.bottom_left_turfs[1]
+ var/turf/max = reservation.top_right_turfs[1]
+ return list(Floor(min.x + (max.x - min.x)/2), Floor(min.y + (max.y - min.y)/2), min.z)
- return list(Floor(min[1] + (max[1] - min[1])/2), Floor(min[2] + (max[2] - min[2])/2), min[3])
/datum/interior/proc/get_middle_turf()
var/list/turf/bounds = get_bound_turfs()
diff --git a/colonialmarines.dme b/colonialmarines.dme
index 6075de14e246..00dd045a7da5 100644
--- a/colonialmarines.dme
+++ b/colonialmarines.dme
@@ -112,6 +112,7 @@
#include "code\__DEFINES\tgui.dm"
#include "code\__DEFINES\traits.dm"
#include "code\__DEFINES\turf_flags.dm"
+#include "code\__DEFINES\turfs.dm"
#include "code\__DEFINES\tutorial.dm"
#include "code\__DEFINES\unit_tests.dm"
#include "code\__DEFINES\urls.dm"
@@ -184,6 +185,7 @@
#include "code\__HELPERS\sanitize_values.dm"
#include "code\__HELPERS\shell.dm"
#include "code\__HELPERS\status_effects.dm"
+#include "code\__HELPERS\string_lists.dm"
#include "code\__HELPERS\text.dm"
#include "code\__HELPERS\traits.dm"
#include "code\__HELPERS\type2type.dm"
@@ -1241,6 +1243,7 @@
#include "code\game\objects\items\toys\crayons.dm"
#include "code\game\objects\items\toys\toy_weapons.dm"
#include "code\game\objects\items\toys\toys.dm"
+#include "code\game\objects\items\toys\trading_cards.dm"
#include "code\game\objects\items\weapons\blades.dm"
#include "code\game\objects\items\weapons\energy.dm"
#include "code\game\objects\items\weapons\misc.dm"
@@ -1766,6 +1769,7 @@
#include "code\modules\gear_presets\survivors\kutjevo\preset_kutjevo.dm"
#include "code\modules\gear_presets\survivors\lv_522\forcon_survivors.dm"
#include "code\modules\gear_presets\survivors\lv_624\clfship_insert_lv624.dm"
+#include "code\modules\gear_presets\survivors\lv_624\corporate_dome_insert_lv624.dm"
#include "code\modules\gear_presets\survivors\lv_624\preset_lv.dm"
#include "code\modules\gear_presets\survivors\new_varadero\preset_new_varadero.dm"
#include "code\modules\gear_presets\survivors\shivas_snowball\preset_shivas_snowball.dm"
@@ -2007,6 +2011,7 @@
#include "code\modules\mob\living\carbon\xenomorph\abilities\praetorian\praetorian_macros.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\praetorian\praetorian_powers.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\predalien\predalien_abilities.dm"
+#include "code\modules\mob\living\carbon\xenomorph\abilities\predalien\predalien_macros.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\predalien\predalien_powers.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\queen\queen_abilities.dm"
#include "code\modules\mob\living\carbon\xenomorph\abilities\queen\queen_macros.dm"
diff --git a/html/changelogs/AutoChangeLog-pr-5433.yml b/html/changelogs/AutoChangeLog-pr-5433.yml
deleted file mode 100644
index 89e4d482185e..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5433.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "TheGamerdk"
-delete-after: True
-changes:
- - rscadd: "CIC can now view helmet cameras of Command Staff. Literally 1984"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5577.yml b/html/changelogs/AutoChangeLog-pr-5577.yml
deleted file mode 100644
index ea5029462ec5..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5577.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-author: "LaylaMcC"
-delete-after: True
-changes:
- - rscadd: "Increased levels of acidic blood and carpotoxin in xenomeat and carp fillets."
- - rscdel: "Xenomeat and carp fillet-based recipes no longer add additional acidic blood or carpotoxin."
- - qol: "Master level domestic skill allows the use of the food processor to remove acidic blood and carpotoxin from xenomeat and carp fillets."
- - bugfix: "Turning named pieces of human meat into meatballs will retain the human's name."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5609.yml b/html/changelogs/AutoChangeLog-pr-5609.yml
deleted file mode 100644
index 4ad1eb6ed5db..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5609.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "Huffie56"
-delete-after: True
-changes:
- - refactor: "refactored files with the aim of making fixing barricade with a welder more constant."
- - bugfix: "being unable to repair more than one metal barricade at the time."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5652.yml b/html/changelogs/AutoChangeLog-pr-5652.yml
new file mode 100644
index 000000000000..99b631afe734
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5652.yml
@@ -0,0 +1,5 @@
+author: "BadAtThisGame302"
+delete-after: True
+changes:
+ - rscadd: "Added a CL and Goon nightmare insert spawn."
+ - mapadd: "added a new nightmare insert on LV which revamps the Corporate Dome into a holdout."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5665.yml b/html/changelogs/AutoChangeLog-pr-5665.yml
new file mode 100644
index 000000000000..c021e7cd3870
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5665.yml
@@ -0,0 +1,5 @@
+author: "Warfan1815"
+delete-after: True
+changes:
+ - rscadd: "Added WeyYu Trading Cards (they come in packs of 5, single, or in special packs of WeyYu Gold) buyable at rec vendor (and/or colony tobacco vendors in the case of the special cigarette packs)"
+ - imageadd: "Added sprites of the WeyYu Trading Cards, trading card packs, and special WeyYu Gold cigarette packs."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5735.yml b/html/changelogs/AutoChangeLog-pr-5735.yml
deleted file mode 100644
index 5f383f47d5fb..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5735.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "iloveloopers"
-delete-after: True
-changes:
- - qol: "Autolathes are now significantly faster."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5750.yml b/html/changelogs/AutoChangeLog-pr-5750.yml
deleted file mode 100644
index 45c4e629436c..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5750.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "SabreML"
-delete-after: True
-changes:
- - refactor: "Refactored the 'gun action' buttons, making them show their names in the status bar when hovered over."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5751.yml b/html/changelogs/AutoChangeLog-pr-5751.yml
deleted file mode 100644
index a2f845c0527e..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5751.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "SabreML"
-delete-after: True
-changes:
- - rscadd: "Added 'observe' functionality to Xenomorphs, allowing observers to view the target's UI."
- - rscadd: "Made observing a player also show their action buttons."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5755.yml b/html/changelogs/AutoChangeLog-pr-5755.yml
deleted file mode 100644
index f84131bf8dc7..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5755.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "Drathek"
-delete-after: True
-changes:
- - bugfix: "Fixed automatic CMB ERT caused by black market heat"
- - code_imp: "get_specific_call now only accepts a path or a string of a path"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5757.yml b/html/changelogs/AutoChangeLog-pr-5757.yml
deleted file mode 100644
index d227d38fd6c8..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5757.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "BadAtThisGame302"
-delete-after: True
-changes:
- - rscadd: "Implemented a probability of playing a static-filled transmission as the distress received response."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5758.yml b/html/changelogs/AutoChangeLog-pr-5758.yml
deleted file mode 100644
index faa5452042bd..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5758.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Kaga"
-delete-after: True
-changes:
- - bugfix: "Fixed a bug that broke ID-Lockable items in presets. Rejoice, PMC Snipers, pre-equipped USCM Specs, UPP Commandos, and WY Deathsquads."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5762.yml b/html/changelogs/AutoChangeLog-pr-5762.yml
deleted file mode 100644
index e91fb28814b9..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5762.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Drathek"
-delete-after: True
-changes:
- - spellcheck: "Reworded message when a facehugger's temporary mute ends to not mention hivemind"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5764.yml b/html/changelogs/AutoChangeLog-pr-5764.yml
deleted file mode 100644
index 1239985de3b2..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5764.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Drathek"
-delete-after: True
-changes:
- - ui: "Fix broken admin Medals Panel"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5782.yml b/html/changelogs/AutoChangeLog-pr-5782.yml
new file mode 100644
index 000000000000..fce959009947
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5782.yml
@@ -0,0 +1,4 @@
+author: "TopHatPenguin"
+delete-after: True
+changes:
+ - rscdel: "Removes part of MOPP suit desc."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5785.yml b/html/changelogs/AutoChangeLog-pr-5785.yml
new file mode 100644
index 000000000000..fe4a448209e7
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5785.yml
@@ -0,0 +1,4 @@
+author: "SabreML"
+delete-after: True
+changes:
+ - bugfix: "Fixed the 88 Mod 4 pistol's holster sprite."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5786.yml b/html/changelogs/AutoChangeLog-pr-5786.yml
new file mode 100644
index 000000000000..09ca6028d60e
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5786.yml
@@ -0,0 +1,4 @@
+author: "Segrain"
+delete-after: True
+changes:
+ - admin: "Check Ckey verb is now available on player panel."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5787.yml b/html/changelogs/AutoChangeLog-pr-5787.yml
new file mode 100644
index 000000000000..2e9c41e24d0d
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5787.yml
@@ -0,0 +1,4 @@
+author: "Segrain"
+delete-after: True
+changes:
+ - bugfix: "Fully healed limbs should now properly remove the overlays for their wounds and bandages."
\ No newline at end of file
diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml
index 35e063bd1bdc..386c13c0cf92 100644
--- a/html/changelogs/archive/2024-02.yml
+++ b/html/changelogs/archive/2024-02.yml
@@ -269,3 +269,80 @@
- bugfix: Forsaken and Feral xenos can now (correctly) use hive-status
- spellcheck: fixed a case where we/our wouldn't be used when attempting to access
hive status with no queen
+2024-02-22:
+ BadAtThisGame302:
+ - rscadd: Implemented a probability of playing a static-filled transmission as the
+ distress received response.
+ Drathek:
+ - bugfix: Fixed automatic CMB ERT caused by black market heat
+ - code_imp: get_specific_call now only accepts a path or a string of a path
+ - ui: Fix broken admin Medals Panel
+ - spellcheck: Reworded message when a facehugger's temporary mute ends to not mention
+ hivemind
+ Huffie56:
+ - refactor: refactored files with the aim of making fixing barricade with a welder
+ more constant.
+ - bugfix: being unable to repair more than one metal barricade at the time.
+ Kaga:
+ - bugfix: Fixed a bug that broke ID-Lockable items in presets. Rejoice, PMC Snipers,
+ pre-equipped USCM Specs, UPP Commandos, and WY Deathsquads.
+ LaylaMcC:
+ - rscadd: Increased levels of acidic blood and carpotoxin in xenomeat and carp fillets.
+ - rscdel: Xenomeat and carp fillet-based recipes no longer add additional acidic
+ blood or carpotoxin.
+ - qol: Master level domestic skill allows the use of the food processor to remove
+ acidic blood and carpotoxin from xenomeat and carp fillets.
+ - bugfix: Turning named pieces of human meat into meatballs will retain the human's
+ name.
+ SabreML:
+ - rscadd: Added 'observe' functionality to Xenomorphs, allowing observers to view
+ the target's UI.
+ - rscadd: Made observing a player also show their action buttons.
+ - refactor: Refactored the 'gun action' buttons, making them show their names in
+ the status bar when hovered over.
+ TheGamerdk:
+ - rscadd: CIC can now view helmet cameras of Command Staff. Literally 1984
+ iloveloopers:
+ - qol: Autolathes are now significantly faster.
+2024-02-23:
+ AtticusRezzer:
+ - bugfix: Fixed the incorrect area flag in lifeboats allowing tunneling
+ Drathek:
+ - balance: Increased same tile weed expansion delay for queen from 7s to 10s
+ Huffie56:
+ - maptweak: split each Hallway area port and starboard into three areas.(fore midship
+ aft)
+ - maptweak: change the area around north and south west staircase to remove emergency
+ shutters.
+ - maptweak: change the area west of squad preparation room to remove emergency shutter.
+ - maptweak: change the area west of lower engi to make emergency shutter be at the
+ frontier of the area.
+ InsaneRed:
+ - rscadd: Added a new ability to the predalien "Feral Rush" that increases it's
+ armor and speed for a short duration.
+ - rscadd: Added two new abilities to the predalien "Feral Frenzy" and a toggle.
+ The predalien can now switch between a single target GUT and an AOE one, both
+ of which has damage that scale with your kills.
+ - rscdel: Removed the predaliens gib ability
+ - rscdel: Removed the predaliens "pounce" ability
+ - rscdel: Removed the predaliens "Ground Smash" ability
+ - balance: Predalien no longer has plasma costs, or plasma.
+ - balance: The Plasma Rifle, which is ONLY used to hunt abominations now has a higher
+ ROF and has incin bullets.
+ - spellcheck: Re-wrote the predalien text to be more up to date and remove missinformation
+ - qol: Everyone can see how many kills the predalien has by examining it.
+ - rscadd: Added a "Feral Smash" ability that lets you grab somebody and smash them
+ to the ground, this scales with kills and is a devastating attack.
+ - balance: Removed screenshake from predalien's screech
+ - balance: Predalien removes fire stacks faster.
+ - bugfix: Girders are now slashable by very_sharp_claws instead of just having a
+ queen chack
+ SabreML:
+ - bugfix: Fixed the search function of TGUI input lists.
+ - qol: Made the TGUI input list search bar automatically focus when toggled.
+ - bugfix: Fixed Xenomorphs not having their caste's tackle duration values applied
+ to them.
+ fira:
+ - code_imp: Updated mapping backend from /tg/ upstream.
+ iloveloopers:
+ - qol: Reagent tanks can now be dragged faster.
diff --git a/icons/mob/humans/onmob/items_lefthand_1.dmi b/icons/mob/humans/onmob/items_lefthand_1.dmi
index 357a94f60cf7..91dc908a8293 100644
Binary files a/icons/mob/humans/onmob/items_lefthand_1.dmi and b/icons/mob/humans/onmob/items_lefthand_1.dmi differ
diff --git a/icons/mob/humans/onmob/items_righthand_1.dmi b/icons/mob/humans/onmob/items_righthand_1.dmi
index 7bcc772c7375..c5b67e97c2e1 100644
Binary files a/icons/mob/humans/onmob/items_righthand_1.dmi and b/icons/mob/humans/onmob/items_righthand_1.dmi differ
diff --git a/icons/obj/items/cigarettes.dmi b/icons/obj/items/cigarettes.dmi
index db313199afb2..89b3ca2195fa 100644
Binary files a/icons/obj/items/cigarettes.dmi and b/icons/obj/items/cigarettes.dmi differ
diff --git a/icons/obj/items/clothing/belts.dmi b/icons/obj/items/clothing/belts.dmi
index 946fbfd23cda..2506ee0eb48d 100644
Binary files a/icons/obj/items/clothing/belts.dmi and b/icons/obj/items/clothing/belts.dmi differ
diff --git a/icons/obj/items/playing_cards.dmi b/icons/obj/items/playing_cards.dmi
index 4db5c94cf063..e69286371ae0 100644
Binary files a/icons/obj/items/playing_cards.dmi and b/icons/obj/items/playing_cards.dmi differ
diff --git a/maps/Nightmare/maps/LV624/nightmare.json b/maps/Nightmare/maps/LV624/nightmare.json
index 8f81a61c16de..0fe51643177b 100644
--- a/maps/Nightmare/maps/LV624/nightmare.json
+++ b/maps/Nightmare/maps/LV624/nightmare.json
@@ -6,6 +6,13 @@
"path": "standalone/clfship.dmm",
"when": { "lvevent": "fallen_ship" }
},
+ {
+ "type": "map_insert",
+ "landmark": "corporatedome",
+ "chance": 0.5,
+ "path": "standalone/corporatedome.dmm",
+ "when": { "lvevent": "asset_protection" }
+ },
{
"type": "map_insert",
"landmark": "lv-skylight",
diff --git a/maps/Nightmare/maps/LV624/scenario.json b/maps/Nightmare/maps/LV624/scenario.json
index 3c8051a4eb17..6880cb542f2a 100644
--- a/maps/Nightmare/maps/LV624/scenario.json
+++ b/maps/Nightmare/maps/LV624/scenario.json
@@ -13,7 +13,8 @@
{ "weight": 2, "type": "def", "values": { "lvevent": "none" } },
{ "weight": 4, "type": "def", "values": { "lvevent": "last_stand" } },
{ "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "bridge" } },
- { "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "right" } }
+ { "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "right" } },
+ { "weight": 2, "type": "def", "values": { "lvevent": "asset_protection", "mainpath": "left" } }
]
}
]
diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm
index 11f57fc6680c..c18a5d0acd7b 100644
--- a/maps/map_files/LV624/LV624.dmm
+++ b/maps/map_files/LV624/LV624.dmm
@@ -16099,6 +16099,15 @@
"hSn" = (
/turf/open/gm/grass/grass1,
/area/lv624/ground/colony/west_nexus_road)
+"hSp" = (
+/obj/structure/flora/grass/tallgrass/jungle/corner{
+ dir = 9
+ },
+/obj/effect/landmark/nightmare{
+ insert_tag = "corporatedome"
+ },
+/turf/open/gm/grass/grass1,
+/area/lv624/ground/colony/west_tcomms_road)
"hSz" = (
/obj/effect/landmark/hunter_secondary,
/turf/open/gm/grass/grass1,
@@ -35242,7 +35251,7 @@ aXh
wTC
kjp
kjp
-ply
+hSp
efp
efp
uSq
diff --git a/maps/map_files/LV624/standalone/corporatedome.dmm b/maps/map_files/LV624/standalone/corporatedome.dmm
new file mode 100644
index 000000000000..0778d0c61564
--- /dev/null
+++ b/maps/map_files/LV624/standalone/corporatedome.dmm
@@ -0,0 +1,1787 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aQ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Corporation Dome";
+ req_access_txt = "100"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"bm" = (
+/obj/structure/surface/rack,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/spacecash/c1000/counterfeit,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"bA" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"bD" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"bE" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/shard,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cm" = (
+/obj/structure/largecrate/random/case/small,
+/obj/structure/barricade/sandbags{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cn" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cA" = (
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cB" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"cR" = (
+/obj/structure/flora/jungle/vines/light_2,
+/obj/structure/flora/jungle/vines/heavy,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"da" = (
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_y = 20
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"dq" = (
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/folder/white{
+ pixel_y = 8
+ },
+/obj/item/folder/yellow{
+ pixel_y = 4
+ },
+/obj/item/folder/red,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"dH" = (
+/obj/structure/machinery/blackbox_recorder,
+/obj/item/prop/almayer/flight_recorder/colony{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"dI" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gib6"
+ },
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"dO" = (
+/obj/item/weapon/pole/fancy_cane,
+/obj/item/shard,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"dY" = (
+/turf/open/floor/plating{
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"ev" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"eF" = (
+/obj/structure/barricade/deployable{
+ damage_state = 1;
+ health = 245;
+ icon_state = "folding_1"
+ },
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"fm" = (
+/obj/effect/vehicle_spawner/van/decrepit,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"fq" = (
+/obj/effect/acid_hole,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"ft" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"fF" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "casing_9_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"fH" = (
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"gx" = (
+/obj/structure/window/framed/colony/reinforced,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"gz" = (
+/obj/item/shard,
+/turf/open/gm/grass/grass1,
+/area/lv624/ground/jungle/west_central_jungle)
+"gX" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/colony{
+ name = "\improper Garage";
+ req_access_txt = "100";
+ req_one_access = null
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ha" = (
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"hc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/showcase{
+ desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you.";
+ icon = 'icons/mob/humans/species/r_synthetic.dmi';
+ icon_state = "Synthetic_Template";
+ name = "Display synthetic"
+ },
+/obj/item/clothing/under/marine/veteran/pmc/corporate{
+ pixel_y = -2
+ },
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"he" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"hf" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"is" = (
+/obj/item/stack/sheet/wood,
+/obj/effect/decal/cleanable/blood/gibs/xeno,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"iF" = (
+/obj/structure/closet/crate/secure/weyland,
+/obj/item/reagent_container/food/snacks/packaged_hdogs,
+/obj/item/reagent_container/food/snacks/packaged_hdogs,
+/obj/item/reagent_container/food/snacks/packaged_burrito,
+/obj/item/reagent_container/food/snacks/packaged_burrito,
+/obj/item/reagent_container/food/snacks/packaged_burger,
+/obj/item/reagent_container/food/snacks/packaged_burger,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"iT" = (
+/obj/structure/filingcabinet,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"jH" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/medical_diagnostics_manual,
+/obj/item/book/manual/research_and_development,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"jJ" = (
+/obj/item/shard,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"kl" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"kU" = (
+/obj/structure/machinery/door_control{
+ id = "garage_lv";
+ name = "Garage Shutters";
+ pixel_y = -28
+ },
+/obj/effect/landmark/corpsespawner/colonist,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating{
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"ln" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"lG" = (
+/obj/item/storage/firstaid/adv/empty,
+/obj/structure/transmitter/colony_net{
+ phone_category = "Lazarus Landing";
+ phone_color = "blue";
+ phone_id = "Corporate Office";
+ pixel_y = 24
+ },
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"lX" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/shard,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mg" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mi" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mp" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/stack/rods,
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ms" = (
+/turf/open/floor{
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mw" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
+/obj/item/ammo_casing/bullet,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"mK" = (
+/obj/effect/spawner/gibspawner/human,
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"ny" = (
+/obj/effect/landmark/corpsespawner/prisoner,
+/obj/effect/decal/cleanable/blood,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"oj" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Corporation Office";
+ req_access_txt = "100"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"oq" = (
+/obj/structure/window_frame/colony/reinforced,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"pg" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/showcase{
+ desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you.";
+ icon = 'icons/mob/humans/species/r_synthetic.dmi';
+ icon_state = "Synthetic_Template";
+ name = "Display synthetic"
+ },
+/obj/item/clothing/under/liaison_suit/blazer,
+/obj/item/clothing/head/manager{
+ pixel_y = 13
+ },
+/turf/open/floor{
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"pR" = (
+/obj/structure/filingcabinet,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qn" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/bodybag,
+/obj/effect/landmark/corpsespawner/clf,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qH" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/colony{
+ dir = 1;
+ name = "\improper Workshop Storage";
+ req_access_txt = "100";
+ req_one_access = null
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qI" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin/wy{
+ pixel_y = 8
+ },
+/obj/item/tool/pen/clicky,
+/obj/item/device/flashlight/lamp{
+ pixel_x = -7;
+ pixel_y = 15
+ },
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qJ" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Storage Room"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"qM" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/obj/structure/machinery/door_control{
+ id = "garage_lv";
+ name = "Garage Shutters";
+ pixel_x = -28
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"sc" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl,
+/turf/open/floor{
+ dir = 1;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"sm" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"sH" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/stack/rods,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/lv624/lazarus/corporate_dome)
+"sX" = (
+/obj/structure/window/framed/colony/reinforced,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/lv624/lazarus/corporate_dome)
+"vf" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Corporate Liaison";
+ locked = 1
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"vC" = (
+/obj/structure/prop/server_equipment/yutani_server/off,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"vW" = (
+/obj/structure/barricade/wooden,
+/turf/open/floor{
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"wy" = (
+/obj/structure/machinery/door/airlock/almayer/engineering/colony{
+ name = "\improper Workshop Storage";
+ req_access_txt = "100";
+ req_one_access = null
+ },
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"wW" = (
+/obj/structure/closet/bodybag,
+/obj/effect/landmark/corpsespawner/security/marshal,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"xk" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 16
+ },
+/obj/effect/landmark/objective_landmark/science,
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"xG" = (
+/obj/structure/machinery/photocopier,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"yc" = (
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"yJ" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/lv624/lazarus/corporate_dome)
+"zm" = (
+/obj/structure/safe{
+ spawnkey = 0
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"zs" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/shard,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"zw" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/folder/black{
+ name = "Weyland-Yutani Classified folder";
+ desc = "A black folder which has the Weyland-Yutani symbol inside it, along with CLASSIFIED in giant red letters."
+ },
+/obj/effect/landmark/objective_landmark/close,
+/obj/item/reagent_container/food/drinks/coffeecup/wy{
+ pixel_x = -9;
+ pixel_y = 7
+ },
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"zx" = (
+/obj/effect/decal/cleanable/blood/gibs/xeno,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"zz" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/tool/pen/red/clicky,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"Aj" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/prop/invuln/pipe_water{
+ dir = 8;
+ pixel_y = -12;
+ pixel_x = 6
+ },
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"AG" = (
+/obj/structure/barricade/wooden,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"AT" = (
+/obj/item/shard,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Bh" = (
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"BL" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 8;
+ id = "garage_lv";
+ name = "\improper Garage"
+ },
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"BZ" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_6_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ct" = (
+/obj/structure/window_frame/colony/reinforced,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/lv624/lazarus/corporate_dome)
+"CF" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ locked = 1;
+ name = "\improper Corporate Liaison"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Df" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Dn" = (
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/item/ammo_magazine/smg/mp5,
+/obj/structure/closet/crate/secure/weyland,
+/obj/item/weapon/gun/smg/mp5,
+/obj/item/weapon/gun/smg/mp5,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Dp" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/bed/roller,
+/obj/effect/landmark/corpsespawner/wysec,
+/obj/item/prop/colony/usedbandage{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 15
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"DU" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 6
+ },
+/obj/item/storage/toolbox/electrical,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ez" = (
+/obj/structure/machinery/light_construct{
+ dir = 4
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"EM" = (
+/obj/structure/flora/jungle/vines/light_3,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"Fh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/fancy/cigarettes/emeraldgreen,
+/obj/item/storage/fancy/cigarettes/wypacket{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/turf/open/floor{
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Fk" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidwarning"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"Fl" = (
+/turf/open/floor{
+ dir = 1;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Fu" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/adv,
+/obj/effect/landmark/objective_landmark/medium,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"FP" = (
+/obj/item/shard,
+/obj/item/stack/sheet/wood,
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"FZ" = (
+/obj/structure/machinery/faxmachine/corporate/liaison,
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Gi" = (
+/obj/structure/prop/server_equipment/yutani_server/broken,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"Go" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_10_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Gt" = (
+/obj/structure/machinery/light_construct/small{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/lv624/lazarus/corporate_dome)
+"GM" = (
+/turf/open/floor{
+ dir = 1;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"GV" = (
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Hn" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_9_1"
+ },
+/obj/effect/decal/cleanable/blood/gibs/xeno,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ho" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor{
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Hv" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/storage/fancy/cigar,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"HK" = (
+/obj/structure/machinery/power/apc{
+ dir = 1
+ },
+/obj/effect/spawner/random/powercell,
+/obj/item/tool/crowbar/red{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/tool/screwdriver,
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Ii" = (
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"IM" = (
+/obj/item/shard,
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/stack/rods{
+ amount = 15
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Jg" = (
+/obj/structure/machinery/light,
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"Jq" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ locked = 1;
+ name = "\improper Corporation Dome";
+ req_access_txt = "100"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"JL" = (
+/obj/effect/decal/cleanable/blood,
+/obj/item/prop/colony/usedbandage{
+ dir = 10
+ },
+/turf/open/floor{
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Kv" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/gm/dirt,
+/area/lv624/ground/colony/west_tcomms_road)
+"KC" = (
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"KG" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Le" = (
+/obj/effect/acid_hole{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"Lh" = (
+/obj/item/stack/cable_coil,
+/obj/effect/decal/cleanable/blood/oil/streak,
+/obj/item/shard,
+/obj/structure/machinery/vending/cola,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Li" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/shard,
+/obj/item/stack/rods,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"Ln" = (
+/obj/structure/barricade/plasteel/metal{
+ health = 250
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"LZ" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Me" = (
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/landing_zones/lz2)
+"Ml" = (
+/obj/structure/machinery/atm{
+ name = "Weyland-Yutani Automatic Teller Machine";
+ pixel_y = 30
+ },
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"OH" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
+ pixel_x = 29
+ },
+/obj/structure/closet/crate/secure/weyland,
+/obj/item/stack/sheet/metal/med_small_stack,
+/obj/item/stack/sheet/plasteel/med_small_stack,
+/obj/item/stack/sandbags/small_stack,
+/obj/item/device/motiondetector/hacked/pmc,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Pa" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"Pr" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "casing_9_1"
+ },
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Qi" = (
+/obj/structure/flora/jungle/vines/light_1,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"Rn" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/showcase{
+ desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you.";
+ icon = 'icons/mob/humans/species/r_synthetic.dmi';
+ icon_state = "Synthetic_Template";
+ name = "Display synthetic"
+ },
+/obj/item/clothing/head/helmet/marine/veteran/pmc{
+ pixel_y = 11;
+ pixel_x = -1
+ },
+/obj/item/clothing/under/marine/veteran/pmc{
+ pixel_y = -2
+ },
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"RD" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "casing_1_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"RF" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"RN" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/prop/server_equipment/laptop/on,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Sb" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"SO" = (
+/obj/structure/flora/jungle/vines/heavy,
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"SV" = (
+/turf/open/floor/greengrid,
+/area/lv624/lazarus/corporate_dome)
+"Tc" = (
+/obj/item/paper_bin/wy{
+ pixel_y = 8
+ },
+/obj/item/frame/table/wood/fancy,
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteyellow"
+ },
+/area/lv624/lazarus/corporate_dome)
+"TF" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/supply/medicine,
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Uo" = (
+/obj/item/shard,
+/turf/open/floor/plating{
+ dir = 1;
+ icon_state = "asteroidfloor"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Uz" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"UF" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor{
+ dir = 6;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Vj" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/ashtray/glass,
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_y = 12
+ },
+/obj/item/trash/cigbutt,
+/turf/open/floor{
+ dir = 4;
+ icon_state = "whitebluecorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Wx" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor{
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Xc" = (
+/obj/structure/barricade/metal{
+ dir = 4;
+ health = 200
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Xf" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Xp" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/showcase{
+ desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you.";
+ icon = 'icons/mob/humans/species/r_synthetic.dmi';
+ icon_state = "Synthetic_Template";
+ name = "Display synthetic"
+ },
+/obj/item/clothing/under/colonist{
+ pixel_y = -2
+ },
+/turf/open/floor{
+ dir = 10;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Xt" = (
+/turf/template_noop,
+/area/template_noop)
+"Xz" = (
+/obj/item/ammo_casing/bullet{
+ icon_state = "cartridge_3_1"
+ },
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"XC" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor{
+ dir = 8;
+ icon_state = "whiteyellowcorner"
+ },
+/area/lv624/lazarus/corporate_dome)
+"XG" = (
+/turf/closed/wall/r_wall,
+/area/lv624/lazarus/corporate_dome)
+"Ye" = (
+/obj/structure/largecrate/supply/supplies/water,
+/turf/open/floor{
+ dir = 5;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Yg" = (
+/obj/item/moneybag,
+/obj/structure/surface/rack,
+/obj/item/coin/diamond,
+/turf/open/floor{
+ dir = 9;
+ icon_state = "whiteblue"
+ },
+/area/lv624/lazarus/corporate_dome)
+"Yv" = (
+/obj/item/frame/table/reinforced,
+/turf/open/floor/plating,
+/area/lv624/lazarus/corporate_dome)
+"YN" = (
+/turf/open/gm/dirt,
+/area/lv624/lazarus/landing_zones/lz2)
+"ZG" = (
+/obj/effect/decal/cleanable/blood,
+/obj/effect/landmark/corpsespawner/scientist,
+/obj/item/handcuffs,
+/turf/open/floor{
+ icon_state = "dark"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ZO" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/stack/sheet/wood,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+"ZT" = (
+/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl,
+/turf/open/floor{
+ icon_state = "white"
+ },
+/area/lv624/lazarus/corporate_dome)
+
+(1,1,1) = {"
+Xt
+Xt
+Xt
+Fk
+Me
+dY
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(2,1,1) = {"
+Xt
+Xt
+Xt
+yc
+da
+dY
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(3,1,1) = {"
+Xt
+Xt
+Xt
+yc
+Me
+kU
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(4,1,1) = {"
+Xt
+Xt
+XG
+BL
+BL
+BL
+XG
+he
+Bh
+fm
+he
+XG
+XG
+XG
+LZ
+yJ
+Xt
+Xt
+Xt
+Xt
+"}
+(5,1,1) = {"
+Xt
+Xt
+XG
+Bh
+Bh
+Bh
+qM
+Uz
+ft
+Bh
+Bh
+XG
+Pa
+Gt
+LZ
+LZ
+Xt
+Xt
+Xt
+Xt
+"}
+(6,1,1) = {"
+Xt
+Xt
+XG
+ny
+Bh
+mw
+Bh
+Bh
+Bh
+Bh
+Bh
+qH
+Uo
+yJ
+LZ
+mi
+Xt
+Xt
+Xt
+Xt
+"}
+(7,1,1) = {"
+Xt
+Xt
+XG
+ZG
+cB
+mw
+wW
+qn
+OH
+Bh
+Bh
+XG
+Yv
+Aj
+mi
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(8,1,1) = {"
+Xt
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+gX
+XG
+XG
+XG
+XG
+wy
+XG
+XG
+Xt
+Xt
+Xt
+"}
+(9,1,1) = {"
+YN
+XG
+ln
+GV
+GV
+TF
+XG
+Rn
+Fl
+cA
+iF
+Xp
+XG
+Ml
+GV
+eF
+fq
+Ii
+Ii
+Ii
+"}
+(10,1,1) = {"
+YN
+Lh
+hf
+ev
+cA
+cA
+Jq
+cA
+cA
+Go
+cA
+cA
+aQ
+cA
+Hn
+Ln
+aQ
+Kv
+Ii
+Ii
+"}
+(11,1,1) = {"
+YN
+mp
+sm
+RF
+fF
+KG
+cA
+cA
+cA
+Sb
+cA
+cA
+cA
+RD
+Sb
+AG
+cA
+Ii
+dI
+mK
+"}
+(12,1,1) = {"
+YN
+XG
+xk
+fH
+fH
+UF
+XG
+hc
+Dn
+cA
+cA
+pg
+XG
+Ye
+kl
+DU
+XG
+Ii
+Ii
+bD
+"}
+(13,1,1) = {"
+Xt
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+XG
+cA
+oj
+XG
+XG
+XG
+XG
+XG
+XG
+Xt
+Xt
+Xt
+"}
+(14,1,1) = {"
+Xt
+Xt
+Xt
+XG
+XG
+Yg
+bm
+FZ
+gx
+cA
+cA
+cn
+XG
+Gi
+vC
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(15,1,1) = {"
+Xt
+Xt
+XG
+XG
+HK
+Fl
+ZT
+ms
+IM
+cA
+BZ
+cA
+qJ
+SV
+Jg
+XG
+Xt
+Xt
+Xt
+Xt
+"}
+(16,1,1) = {"
+Xt
+Xt
+XG
+RN
+sc
+bA
+cA
+ms
+gx
+cm
+Sb
+UF
+XG
+Fu
+dH
+EM
+Xt
+Xt
+Xt
+Xt
+"}
+(17,1,1) = {"
+Xt
+Xt
+XG
+qI
+Vj
+xG
+Fh
+zw
+XG
+cA
+oj
+XG
+XG
+XG
+XG
+Qi
+Xt
+Xt
+Xt
+Xt
+"}
+(18,1,1) = {"
+Xt
+Xt
+XG
+XG
+XG
+CF
+XG
+XG
+XG
+KG
+bA
+XC
+jJ
+iT
+Xf
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(19,1,1) = {"
+Xt
+Xt
+XG
+Hv
+GM
+bA
+Df
+ha
+zz
+AT
+mg
+cA
+bA
+vW
+zs
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(20,1,1) = {"
+Xt
+Xt
+XG
+zm
+KC
+zx
+Dp
+JL
+oq
+cA
+Xz
+cA
+Ho
+FP
+sH
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(21,1,1) = {"
+Xt
+Xt
+XG
+XG
+lG
+Pr
+cA
+ZO
+vf
+bE
+Xc
+Wx
+Ez
+SO
+cR
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(22,1,1) = {"
+Xt
+Xt
+Xt
+XG
+XG
+Tc
+dq
+dO
+Xf
+jH
+is
+pR
+SO
+SO
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(23,1,1) = {"
+Xt
+Xt
+Xt
+Xt
+XG
+Li
+sX
+Ct
+Le
+sX
+lX
+sX
+SO
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(24,1,1) = {"
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+gz
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
+(25,1,1) = {"
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+Xt
+"}
diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm
index b2e66d1e2d5b..0638a9329caf 100644
--- a/maps/map_files/USS_Almayer/USS_Almayer.dmm
+++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm
@@ -72,14 +72,6 @@
allow_construction = 0
},
/area/almayer/stair_clone/upper)
-"aan" = (
-/obj/effect/projector{
- name = "Almayer_Up1";
- vector_x = -19;
- vector_y = 98
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"aaq" = (
/obj/item/bedsheet/purple{
layer = 3.2
@@ -120,75 +112,13 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
-"aas" = (
-/obj/vehicle/powerloader,
-/obj/structure/platform{
- dir = 4
- },
-/obj/structure/platform{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/repair_bay)
"aau" = (
/turf/closed/wall/almayer/reinforced/temphull,
/area/almayer/living/pilotbunks)
-"aav" = (
-/obj/vehicle/powerloader,
-/obj/structure/platform{
- dir = 4
- },
-/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/repair_bay)
-"aax" = (
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/aft_hallway)
-"aay" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"aaC" = (
/obj/structure/lattice,
/turf/open/space/basic,
/area/space)
-"aaD" = (
-/obj/structure/platform{
- dir = 8
- },
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"aaE" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"aaF" = (
/obj/structure/stairs{
dir = 1;
@@ -214,46 +144,6 @@
icon_state = "plate"
},
/area/almayer/stair_clone/upper)
-"aaK" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/platform{
- dir = 8
- },
-/obj/structure/machinery/recharge_station{
- layer = 2.9
- },
-/obj/structure/sign/safety/high_voltage{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"aaL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
-"aaO" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"aaY" = (
/obj/structure/lattice,
/turf/open/space,
@@ -268,35 +158,10 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
-"abd" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/closet/secure_closet/engineering_welding{
- req_one_access_txt = "7;23;27"
- },
-/obj/structure/platform{
- dir = 4
- },
-/obj/structure/sign/safety/terminal{
- pixel_y = 32
- },
-/obj/structure/sign/safety/fire_haz{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"abf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"abg" = (
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"abh" = (
/turf/closed/wall/almayer/outer,
/area/almayer/lifeboat_pumps/north2)
@@ -304,10 +169,20 @@
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
/area/almayer/lifeboat_pumps/north2)
+"abj" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"abk" = (
/obj/structure/window/reinforced/toughened,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/cic)
+"abn" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"abs" = (
/turf/closed/wall/almayer/outer,
/area/almayer/lifeboat_pumps/north1)
@@ -315,9 +190,6 @@
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
/area/almayer/lifeboat_pumps/north1)
-"abx" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
"abB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -365,15 +237,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
-"abN" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"abQ" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -410,15 +273,6 @@
icon_state = "tcomms"
},
/area/almayer/shipboard/weapon_room)
-"aca" = (
-/obj/structure/surface/rack,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"acc" = (
/obj/structure/machinery/door/airlock/almayer/security{
access_modified = 1;
@@ -441,12 +295,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
-"ace" = (
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"acf" = (
/turf/closed/wall/almayer/outer,
/area/almayer/living/starboard_garden)
@@ -636,20 +484,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"acC" = (
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
-"acF" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
"acI" = (
/obj/structure/desertdam/decals/road_edge{
pixel_x = -12
@@ -717,6 +551,9 @@
icon_state = "red"
},
/area/almayer/shipboard/weapon_room)
+"acQ" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"acS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -737,17 +574,6 @@
icon_state = "plate"
},
/area/almayer/living/basketball)
-"acV" = (
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/aft_hallway)
"acW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -787,42 +613,15 @@
icon_state = "plate"
},
/area/almayer/living/offices/flight)
-"adb" = (
-/obj/structure/stairs{
- dir = 8;
- icon_state = "ramptop"
- },
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/aft_hallway)
-"adc" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/aft_hallway)
"add" = (
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
"ade" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/radio{
- pixel_x = -6;
- pixel_y = 3
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"adg" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"adj" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down1";
@@ -834,18 +633,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/stair_clone/upper)
-"adk" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/platform{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"ado" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -909,16 +696,6 @@
"adG" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/starboard_missiles)
-"adH" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"adO" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/starboard_atmos)
@@ -951,16 +728,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"aeb" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 4;
- id = "northcheckpoint";
- name = "\improper Checkpoint Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/hallways/starboard_hallway)
"aec" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
@@ -1010,11 +777,6 @@
"ael" = (
/turf/closed/wall/almayer,
/area/almayer/living/cafeteria_officer)
-"aem" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"aep" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/airmix)
@@ -1185,16 +947,6 @@
allow_construction = 0
},
/area/almayer/stair_clone/upper)
-"aeU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"aeW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
@@ -1247,32 +999,6 @@
icon_state = "redfull"
},
/area/almayer/shipboard/starboard_missiles)
-"afe" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
-/obj/structure/stairs/perspective{
- dir = 1;
- icon_state = "p_stair_full"
- },
-/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
-"aff" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/stairs/perspective{
- dir = 1;
- icon_state = "p_stair_full"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"afj" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
/turf/open/floor/engine,
@@ -1298,61 +1024,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/basketball)
-"afu" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/structure/stairs/perspective{
- dir = 1;
- icon_state = "p_stair_full"
- },
-/obj/structure/platform{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"afv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/aft_hallway)
-"afx" = (
-/obj/structure/machinery/door/airlock/almayer/generic{
- dir = 1;
- name = "\improper Workshop Vendors"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/repair_bay)
"afy" = (
/obj/structure/machinery/light{
dir = 8
},
/turf/open/floor/almayer,
/area/almayer/living/offices/flight)
-"afz" = (
-/turf/open/floor/almayer/empty,
-/area/almayer/hallways/vehiclehangar)
-"afA" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/stern)
"afB" = (
/obj/structure/machinery/light{
dir = 1
@@ -1362,16 +1039,6 @@
icon_state = "red"
},
/area/almayer/living/starboard_garden)
-"afC" = (
-/obj/docking_port/stationary/vehicle_elevator/almayer,
-/turf/open/floor/almayer/empty,
-/area/almayer/hallways/vehiclehangar)
-"afD" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"afE" = (
/obj/structure/machinery/vending/dinnerware,
/obj/structure/machinery/firealarm{
@@ -1504,17 +1171,6 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
-"aga" = (
-/obj/item/tool/wirecutters{
- pixel_y = -7
- },
-/obj/structure/sign/poster{
- desc = "You are becoming hysterical.";
- icon_state = "poster11";
- pixel_y = 30
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"agb" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/reagent_container/food/snacks/bloodsoup{
@@ -1540,18 +1196,6 @@
"agj" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/living/commandbunks)
-"agn" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
-"ago" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"agq" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -1580,19 +1224,27 @@
"agu" = (
/turf/open/floor/almayer,
/area/almayer/living/officer_study)
-"agw" = (
-/obj/structure/machinery/light{
- dir = 8
+"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/stairs/perspective{
- icon_state = "p_stair_full"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
-"agy" = (
-/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
"agA" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -1606,15 +1258,6 @@
icon_state = "red"
},
/area/almayer/living/starboard_garden)
-"agG" = (
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/obj/structure/platform{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"agH" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/disposalpipe/segment{
@@ -1638,12 +1281,6 @@
icon_state = "silver"
},
/area/almayer/living/officer_study)
-"agJ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
"agK" = (
/obj/structure/bed/chair{
dir = 1
@@ -1693,13 +1330,6 @@
icon_state = "plate"
},
/area/almayer/living/cafeteria_officer)
-"agX" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"agY" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -1742,12 +1372,6 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
-"ahj" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"ahl" = (
/turf/open/floor/almayer{
dir = 9;
@@ -1758,24 +1382,6 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/living/offices/flight)
-"ahq" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"ahr" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"ahy" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -1796,12 +1402,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"ahB" = (
-/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"ahG" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -1819,13 +1419,14 @@
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/engineering/starboard_atmos)
-"ahM" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "mono"
+"ahL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{
+ pixel_x = 7;
+ pixel_y = 4
},
-/area/almayer/hallways/aft_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"ahN" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
/turf/open/floor/grass,
@@ -1858,17 +1459,6 @@
icon_state = "silver"
},
/area/almayer/living/officer_study)
-"aib" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
- access_modified = 1;
- req_one_access = null;
- req_one_access_txt = "7;19"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/vehiclehangar)
"aic" = (
/turf/open/floor/almayer{
dir = 1;
@@ -1912,15 +1502,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/cafeteria_officer)
-"aii" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"aij" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -1934,18 +1515,6 @@
icon_state = "silver"
},
/area/almayer/living/cafeteria_officer)
-"aik" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"aim" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"ain" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -1954,18 +1523,6 @@
icon_state = "plate"
},
/area/almayer/living/cafeteria_officer)
-"aio" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"aiq" = (
/turf/open/floor/almayer,
/area/almayer/living/cafeteria_officer)
@@ -1981,31 +1538,9 @@
icon_state = "bluecorner"
},
/area/almayer/living/offices/flight)
-"ait" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/aft_hallway)
"aiw" = (
/turf/open/floor/almayer,
/area/almayer/engineering/starboard_atmos)
-"aiy" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 3
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"aiB" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"aiC" = (
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
"aiH" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -2062,16 +1597,6 @@
"aiX" = (
/turf/closed/wall/almayer,
/area/almayer/living/pilotbunks)
-"ajd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 2.5
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"aje" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -2100,38 +1625,6 @@
icon_state = "redfull"
},
/area/almayer/command/cic)
-"ajp" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/dropship_equipment/fuel/cooling_system{
- layer = 3.5
- },
-/obj/item/clothing/glasses/welding{
- layer = 3.6;
- pixel_x = 2;
- pixel_y = 7
- },
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/machinery/computer/working_joe{
- dir = 4;
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"ajq" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"ajr" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/aft_hallway)
"ajs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -2140,15 +1633,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"ajt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"aju" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -2161,53 +1645,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/north2)
-"ajx" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"ajy" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"ajz" = (
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"ajA" = (
/obj/structure/bed/chair/office/dark,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/living/offices/flight)
-"ajB" = (
-/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
- req_access = null;
- req_one_access = null;
- req_one_access_txt = "7;23;27;102"
- },
-/obj/item/reagent_container/food/drinks/coffee{
- pixel_x = -3;
- pixel_y = 18
- },
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"ajC" = (
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"ajD" = (
/obj/structure/surface/table/almayer,
/obj/structure/flora/pottedplant{
@@ -2222,24 +1665,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"ajF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
-"ajG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
"ajH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -2258,21 +1683,6 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/living/cafeteria_officer)
-"ajL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
- },
-/obj/structure/machinery/light,
-/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
- req_access = null;
- req_one_access = null;
- req_one_access_txt = "7;23;27;102"
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"ajM" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -2281,36 +1691,6 @@
},
/turf/open/floor/plating,
/area/almayer/living/offices/flight)
-"ajN" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"ajO" = (
-/obj/structure/stairs,
-/obj/effect/projector{
- name = "Almayer_Up1";
- vector_x = -19;
- vector_y = 98
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
-"ajP" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
-"ajR" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
"ajT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -2323,19 +1703,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/north1)
-"ajW" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
-"ajX" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
"ajY" = (
/turf/open/floor/almayer_hull{
dir = 10;
@@ -2372,6 +1739,18 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/weapon_room)
+"akn" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/vehicle/powerloader{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"ako" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2430,20 +1809,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"aky" = (
-/obj/structure/machinery/light,
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
- req_one_access = null;
- req_one_access_txt = "7;23;27;102"
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"akz" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
@@ -2473,52 +1838,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_two)
-"akH" = (
-/obj/structure/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"akI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"akJ" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/stern_hallway)
-"akK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"akL" = (
/obj/structure/machinery/light{
dir = 1
@@ -2535,17 +1854,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"akO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
"akQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2565,37 +1873,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
-"akT" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"akU" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"akV" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
"akW" = (
/turf/open/floor/almayer{
dir = 8;
@@ -2640,12 +1917,10 @@
},
/turf/open/floor/grass,
/area/almayer/living/starboard_garden)
-"ali" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/aft_hallway)
+"alh" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"alk" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
@@ -2658,31 +1933,6 @@
},
/turf/closed/wall/almayer/research/containment/wall/purple,
/area/almayer/medical/containment/cell)
-"all" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"alp" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
-"alq" = (
-/obj/structure/disposalpipe/junction,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"als" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/aft_hallway)
"alw" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
@@ -2692,22 +1942,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/pilotbunks)
-"alx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 4;
- id = "northcheckpoint";
- name = "\improper Checkpoint Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/hallways/starboard_hallway)
"aly" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/starboard_missiles)
@@ -2743,60 +1977,12 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/perma)
-"alG" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
-"alI" = (
-/obj/item/stack/cable_coil{
- pixel_x = 1;
- pixel_y = 10
- },
-/obj/item/trash/pistachios,
-/obj/item/tool/screwdriver,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
- },
-/area/almayer/hallways/repair_bay)
-"alJ" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
-"alK" = (
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
"alL" = (
/turf/closed/wall/almayer,
/area/almayer/command/telecomms)
"alO" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/upper_engineering)
-"alP" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/stern_hallway)
-"alQ" = (
-/obj/item/tool/wrench{
- pixel_x = -8;
- pixel_y = 10
- },
-/obj/effect/decal/cleanable/blood/oil,
-/obj/structure/prop/mech/hydralic_clamp,
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"alR" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -2821,12 +2007,6 @@
"alX" = (
/turf/open/floor/almayer,
/area/almayer/command/cic)
-"alY" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/mess)
"alZ" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -2846,6 +2026,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/pilotbunks)
+"amc" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"amd" = (
/obj/structure/machinery/vending/cola{
density = 0;
@@ -2863,12 +2051,6 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"amj" = (
-/obj/item/reagent_container/food/drinks/cans/souto,
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
- },
-/area/almayer/hallways/repair_bay)
"amk" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -2893,12 +2075,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"amp" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"ams" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert{
@@ -2908,6 +2084,14 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"amu" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/s_bow)
"amw" = (
/turf/open/floor/almayer{
dir = 9;
@@ -2927,17 +2111,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"amC" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"amD" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"amE" = (
/obj/item/clothing/suit/storage/marine/light/vest,
/obj/item/clothing/suit/storage/marine/light/vest,
@@ -2966,63 +2139,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"amK" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"amO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"amR" = (
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/obj/item/storage/belt/utility,
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
-"amS" = (
-/obj/structure/stairs{
- dir = 1
- },
-/obj/effect/projector{
- name = "Almayer_Up4";
- vector_x = -19;
- vector_y = 104
- },
-/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
-"amT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"amU" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
"amX" = (
/turf/open/floor/almayer{
dir = 1;
@@ -3052,12 +2168,6 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"anc" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/aft_hallway)
"and" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -3072,24 +2182,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/pilotbunks)
-"anf" = (
-/turf/open/floor/almayer{
- icon_state = "silvercorner"
+"ang" = (
+/obj/item/clothing/head/welding{
+ pixel_y = 6
},
-/area/almayer/hallways/aft_hallway)
-"anh" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "silver"
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
},
-/area/almayer/hallways/aft_hallway)
-"ani" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
+/area/almayer/maint/hull/upper/u_a_p)
"anm" = (
/obj/structure/stairs{
icon_state = "ramptop"
@@ -3178,73 +2283,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/hydroponics)
-"anB" = (
-/obj/structure/sign/safety/storage{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"anC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
-"anD" = (
-/obj/structure/platform_decoration{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
-"anG" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
-"anH" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"anJ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"anK" = (
-/obj/structure/platform{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
-"anL" = (
-/obj/structure/platform_decoration{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"anM" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
@@ -3264,18 +2302,18 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering)
-"anR" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
+"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"
},
-/area/almayer/hallways/stern_hallway)
-"anT" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silvercorner"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/repair_bay)
+/area/almayer/living/offices/flight)
"anV" = (
/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
@@ -3294,29 +2332,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/weapon_room)
-"aoc" = (
-/obj/structure/stairs{
- dir = 1
- },
-/obj/effect/projector{
- name = "Almayer_Up4";
- vector_x = -19;
- vector_y = 104
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
-"aod" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"aoe" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/morgue)
+"aog" = (
+/obj/structure/machinery/landinglight/ds2/delayone{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
"aoh" = (
/obj/structure/morgue/crematorium,
/turf/open/floor/almayer{
@@ -3371,11 +2395,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"aow" = (
-/turf/open/floor/almayer{
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/aft_hallway)
"aoy" = (
/obj/structure/sign/safety/fire_haz{
pixel_x = 8;
@@ -3395,68 +2414,12 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"aoB" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"aoC" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"aoD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
-"aoE" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"aoF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
-"aoG" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"aoH" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"aoI" = (
/turf/open/floor/almayer{
dir = 6;
@@ -3516,6 +2479,12 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/medical_science)
+"aoN" = (
+/obj/structure/machinery/landinglight/ds1/delayone{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/hangar)
"aoP" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
@@ -3523,59 +2492,11 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/telecomms)
-"aoQ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"aoR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/stern_hallway)
-"aoS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"aoT" = (
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"aoU" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
"aoV" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -3607,15 +2528,6 @@
icon_state = "plating"
},
/area/almayer/engineering/upper_engineering)
-"aoZ" = (
-/obj/structure/closet,
-/obj/item/clothing/under/marine,
-/obj/item/clothing/suit/storage/marine,
-/obj/item/clothing/head/helmet/marine,
-/obj/item/clothing/head/beret/cm,
-/obj/item/clothing/head/beret/cm,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"apa" = (
/obj/structure/surface/rack,
/obj/item/tool/screwdriver,
@@ -3623,20 +2535,6 @@
/obj/structure/machinery/light,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering)
-"apc" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
-"apd" = (
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
"ape" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3646,12 +2544,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"apf" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
"apg" = (
/turf/open/floor/almayer{
dir = 10;
@@ -3664,12 +2556,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"apj" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
"apk" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down1";
@@ -3678,20 +2564,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/stair_clone/upper)
-"apl" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"apm" = (
-/obj/structure/machinery/line_nexter{
- dir = 1;
- id = "MTline";
- pixel_y = 3
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"apo" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/machinery/disposal,
@@ -3699,13 +2571,6 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"app" = (
-/obj/structure/barricade/handrail{
- dir = 1;
- pixel_y = 2
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"apq" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
@@ -3746,19 +2611,6 @@
icon_state = "red"
},
/area/almayer/living/starboard_garden)
-"apv" = (
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"apx" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/p_bow)
"apz" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door_control{
@@ -3783,28 +2635,12 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/starboard)
-"apC" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"apE" = (
/turf/open/floor/almayer{
dir = 9;
icon_state = "orange"
},
/area/almayer/hallways/hangar)
-"apJ" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
-"apK" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"apL" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/cell_charger,
@@ -4029,19 +2865,6 @@
icon_state = "mono"
},
/area/almayer/living/pilotbunks)
-"aqx" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "laddernorthwest";
- name = "\improper North West Ladders Shutters"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
"aqy" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -4080,6 +2903,13 @@
icon_state = "plate"
},
/area/almayer/medical/medical_science)
+"aqH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"aqI" = (
/turf/open/floor/almayer{
dir = 8;
@@ -4098,17 +2928,19 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
-"aqM" = (
+"aqL" = (
+/obj/structure/stairs{
+ dir = 1
+ },
/obj/effect/projector{
- name = "Almayer_Up2";
- vector_x = -1;
- vector_y = 100
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
},
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/lower/port_midship_hallway)
"aqN" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -4162,18 +2994,12 @@
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/engineering/upper_engineering)
+"aqZ" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_stern)
"arb" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/morgue)
-"arf" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/aft_hallway)
"arg" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -4239,17 +3065,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"arn" = (
-/obj/effect/projector{
- name = "Almayer_Up1";
- vector_x = -19;
- vector_y = 98
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"arp" = (
/obj/structure/bed/chair{
dir = 4
@@ -4345,16 +3160,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"arO" = (
-/obj/effect/projector{
- name = "Almayer_Up2";
- vector_x = -1;
- vector_y = 100
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"arP" = (
/obj/structure/sign/safety/hazard{
pixel_y = 32
@@ -4417,34 +3222,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/pilotbunks)
-"asj" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
-"asl" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"asm" = (
/obj/structure/stairs{
dir = 4
@@ -4466,15 +3243,6 @@
/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
/turf/open/floor/plating,
/area/almayer/medical/upper_medical)
-"asp" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"asr" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 8
@@ -4520,6 +3288,12 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"asE" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"asF" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
access_modified = 1;
@@ -4590,33 +3364,6 @@
icon_state = "silver"
},
/area/almayer/command/cic)
-"asO" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "laddernorthwest";
- name = "\improper North West Ladders Shutters"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
-"asP" = (
-/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{
- dir = 4;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/starboard_hallway)
"asQ" = (
/obj/structure/surface/rack,
/obj/item/device/radio/marine,
@@ -4647,24 +3394,6 @@
icon_state = "plate"
},
/area/almayer/medical/morgue)
-"asV" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
-"asW" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"asX" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
/turf/open/floor/almayer{
@@ -4727,16 +3456,6 @@
/obj/structure/bed/sofa/vert/grey/top,
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"atj" = (
-/obj/effect/projector{
- name = "Almayer_Down3";
- vector_x = 1;
- vector_y = -102
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/aft_hallway)
"atk" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -4751,17 +3470,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/telecomms)
-"atl" = (
-/obj/effect/projector{
- name = "Almayer_Down3";
- vector_x = 1;
- vector_y = -102
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/aft_hallway)
"atm" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/telecomms)
@@ -4839,40 +3547,17 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
-"atC" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
+"atH" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
-"atI" = (
-/obj/structure/stairs{
- dir = 8;
- icon_state = "ramptop"
- },
-/obj/effect/projector{
- name = "Almayer_Down3";
- vector_x = 1;
- vector_y = -102
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"atK" = (
/turf/open/floor/almayer{
dir = 10;
icon_state = "red"
},
/area/almayer/command/lifeboat)
-"atL" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
"atM" = (
/turf/open/floor/almayer{
dir = 9;
@@ -4915,6 +3600,12 @@
icon_state = "test_floor4"
},
/area/almayer/command/cic)
+"atS" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"atT" = (
/obj/structure/toilet{
dir = 1
@@ -4929,26 +3620,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/pilotbunks)
-"atU" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"atV" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"aub" = (
/obj/structure/machinery/light{
dir = 1
@@ -4974,16 +3645,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"aue" = (
-/obj/effect/projector{
- name = "Almayer_Up3";
- vector_x = -1;
- vector_y = 102
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
"auf" = (
/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
/turf/closed/wall/almayer/white/hull,
@@ -5009,30 +3670,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"auk" = (
-/obj/effect/projector{
- name = "Almayer_Up3";
- vector_x = -1;
- vector_y = 102
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"aul" = (
-/obj/structure/stairs{
- dir = 4
- },
-/obj/effect/projector{
- name = "Almayer_Up3";
- vector_x = -1;
- vector_y = 102
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
"aum" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -5043,22 +3680,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
-"aun" = (
-/obj/structure/stairs{
- dir = 4
- },
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/effect/projector{
- name = "Almayer_Up3";
- vector_x = -1;
- vector_y = 102
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
"auu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5066,26 +3687,6 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering)
-"auv" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
-"aux" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/mess)
"auy" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -5105,16 +3706,6 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/upper_engineering)
-"auG" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"auH" = (
/obj/structure/machinery/door_control{
id = "tcomms_apc";
@@ -5239,26 +3830,20 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"avj" = (
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"avm" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"avn" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"avo" = (
/turf/closed/wall/almayer/outer,
/area/almayer/powered/agent)
+"avp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "s_umbilical";
+ name = "\improper Umbillical Airlock";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"avs" = (
/turf/closed/wall/biodome,
/area/almayer/powered/agent)
@@ -5300,10 +3885,6 @@
icon_state = "test_floor4"
},
/area/almayer/powered/agent)
-"avD" = (
-/obj/effect/landmark/crap_item,
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"avF" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -5479,15 +4060,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"avX" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"avY" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/cic)
@@ -5503,15 +4075,6 @@
icon_state = "rasputin15"
},
/area/almayer/powered/agent)
-"awb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"awd" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/living/pilotbunks)
@@ -5605,16 +4168,6 @@
icon_state = "plate"
},
/area/almayer/command/telecomms)
-"aww" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"awx" = (
/turf/open/floor/almayer{
dir = 4;
@@ -5665,6 +4218,9 @@
icon_state = "plate"
},
/area/almayer/command/cic)
+"awE" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"awF" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/living/numbertwobunks)
@@ -5837,19 +4393,6 @@
icon_state = "blue"
},
/area/almayer/command/cic)
-"axs" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
"axu" = (
/obj/structure/machinery/computer/telecomms/server,
/turf/open/floor/almayer{
@@ -5982,10 +4525,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"axT" = (
-/obj/docking_port/stationary/escape_pod/north,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_p)
"axV" = (
/obj/structure/machinery/telecomms/server/presets/command,
/turf/open/floor/almayer{
@@ -6011,6 +4550,17 @@
icon_state = "tcomms"
},
/area/almayer/command/telecomms)
+"axY" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddernorthwest";
+ name = "\improper North West Ladders Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"aya" = (
/turf/open/floor/almayer{
dir = 4;
@@ -6191,21 +4741,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"ayE" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "laddersouthwest";
- name = "\improper South West Ladders Shutters"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
"ayI" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical{
@@ -6267,21 +4802,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
-"ayT" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"ayU" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"ayV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -6326,16 +4846,19 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/medical_science)
-"azb" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"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{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"azc" = (
/obj/structure/machinery/computer/telecomms/traffic,
/turf/open/floor/almayer{
@@ -6360,6 +4883,12 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/upper_engineering)
+"azg" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"azh" = (
/obj/structure/pipes/vents/pump/on,
/turf/open/floor/almayer{
@@ -6477,19 +5006,6 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"azB" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "laddersouthwest";
- name = "\improper South West Ladders Shutters"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
"azC" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/flashlight/lamp/green,
@@ -6511,36 +5027,6 @@
allow_construction = 0
},
/area/almayer/stair_clone)
-"azE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/port_hallway)
-"azG" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "laddersouthwest";
- name = "\improper South West Ladders Shutters"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"azI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/port_hallway)
"azJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door_control{
@@ -6556,23 +5042,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/cichallway)
-"azS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 2.5
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/port_hallway)
-"azT" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"azU" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -6616,28 +5085,11 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"azY" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
"azZ" = (
/obj/structure/machinery/keycard_auth,
/obj/structure/surface/table/reinforced/black,
/turf/open/floor/almayer,
/area/almayer/command/cic)
-"aAa" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/sign/safety/stairs{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"aAd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -6719,17 +5171,6 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"aAv" = (
-/obj/effect/projector{
- name = "Almayer_Up4";
- vector_x = -19;
- vector_y = 104
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"aAy" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -6846,22 +5287,15 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
-"aAW" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+"aAU" = (
+/obj/structure/machinery/light{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
+ dir = 4;
+ icon_state = "orange"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"aAZ" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -7012,11 +5446,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering)
-"aBq" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
"aBr" = (
/obj/structure/ladder{
height = 2;
@@ -7078,14 +5507,6 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
-"aBC" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
"aBD" = (
/obj/structure/closet/basketball,
/obj/structure/sign/safety/maint{
@@ -7123,17 +5544,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/cic)
-"aBK" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/stern)
-"aBO" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
"aBP" = (
/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
access_modified = 1;
@@ -7144,6 +5554,15 @@
icon_state = "test_floor4"
},
/area/almayer/living/synthcloset)
+"aBQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"aBR" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/ashtray/glass,
@@ -7256,18 +5675,6 @@
icon_state = "silvercorner"
},
/area/almayer/command/cic)
-"aCl" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"aCo" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -7289,30 +5696,32 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"aCr" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"aCt" = (
/obj/structure/bed/sofa/south/white/right,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
/area/almayer/medical/medical_science)
+"aCu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"aCw" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/medical/morgue)
-"aCB" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/tool,
+"aCA" = (
+/obj/structure/largecrate/random/barrel/white,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/upper/p_bow)
"aCC" = (
/turf/open/floor/almayer{
icon_state = "sterile_green"
@@ -7349,6 +5758,14 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/containment)
+"aCX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"aCZ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -7411,15 +5828,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"aDk" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"aDm" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
@@ -7447,16 +5855,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"aDp" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/aft_hallway)
"aDr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7492,15 +5890,6 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"aDx" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"aDB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7555,17 +5944,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering)
-"aDG" = (
-/obj/structure/machinery/door_control{
- id = "panicroomback";
- name = "\improper Safe Room";
- pixel_x = 25;
- req_one_access_txt = "3"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"aDH" = (
/obj/structure/bed/chair/office/light{
dir = 4
@@ -7656,27 +6034,6 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"aDY" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/surface/rack,
-/obj/item/storage/belt/utility/full{
- pixel_y = 8
- },
-/obj/item/storage/belt/utility/full,
-/obj/item/clothing/suit/storage/hazardvest/black,
-/obj/item/tool/crowbar,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
-"aDZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
"aEe" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -7686,14 +6043,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/upper_medical)
-"aEf" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
"aEg" = (
/turf/open/floor/almayer{
icon_state = "redfull"
@@ -7729,12 +6078,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"aEp" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
+"aEr" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/lower/l_a_p)
"aEA" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -7765,14 +6117,6 @@
icon_state = "silver"
},
/area/almayer/command/cic)
-"aEE" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"aEG" = (
/obj/structure/bed/chair{
dir = 8
@@ -7785,24 +6129,6 @@
icon_state = "silver"
},
/area/almayer/command/cic)
-"aEI" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"aEK" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"aEM" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/emails,
@@ -7842,21 +6168,9 @@
"aET" = (
/turf/closed/wall/almayer,
/area/almayer/living/captain_mess)
-"aEV" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"aEW" = (
/turf/closed/wall/almayer,
/area/almayer/living/numbertwobunks)
-"aEX" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/aft_hallway)
"aEZ" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/gloves{
@@ -8004,20 +6318,6 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
-"aFx" = (
-/obj/structure/surface/table/almayer,
-/obj/item/stack/sheet/glass{
- amount = 20;
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/dart,
-/obj/item/weapon/dart,
-/obj/item/weapon/dart,
-/obj/item/weapon/dart/green,
-/obj/item/weapon/dart/green,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"aFy" = (
/obj/structure/bed/chair{
dir = 8
@@ -8058,21 +6358,15 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"aFE" = (
-/obj/structure/toilet{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
-"aFF" = (
-/obj/structure/machinery/light{
- dir = 4
+"aFG" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "vehicle1door";
+ name = "Vehicle Bay One"
},
/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/vehiclehangar)
"aFI" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -8095,23 +6389,13 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
-"aFV" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/stern_hallway)
-"aFW" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
+"aGa" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/upper/p_bow)
"aGb" = (
/obj/structure/ladder{
height = 2;
@@ -8125,22 +6409,6 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
-"aGc" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 2
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
-"aGd" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/aft_hallway)
"aGg" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8150,11 +6418,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_four)
-"aGh" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
"aGj" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 2;
@@ -8165,6 +6428,12 @@
icon_state = "test_floor4"
},
/area/almayer/command/cichallway)
+"aGm" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"aGn" = (
/obj/structure/barricade/handrail,
/turf/open/floor/almayer{
@@ -8234,19 +6503,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/starboard)
-"aGC" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
-"aGD" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
"aGH" = (
/obj/structure/machinery/computer/ordercomp,
/turf/open/floor/almayer{
@@ -8256,12 +6512,6 @@
"aGN" = (
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
-"aGO" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"aGP" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -8441,19 +6691,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering)
-"aHx" = (
-/obj/structure/ladder/fragile_almayer{
- height = 2;
- id = "kitchen"
- },
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = 24
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"aHK" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -8468,12 +6705,6 @@
icon_state = "silver"
},
/area/almayer/engineering/port_atmos)
-"aHQ" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
"aHR" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -8532,18 +6763,17 @@
"aId" = (
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"aIe" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
"aIf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/command/cic)
+"aIh" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/stern)
"aIl" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -8614,6 +6844,13 @@
/obj/structure/flora/bush/ausbushes/ppflowers,
/turf/open/floor/grass,
/area/almayer/living/starboard_garden)
+"aIy" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"aIB" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
/turf/open/floor/grass,
@@ -8674,20 +6911,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/numbertwobunks)
-"aIS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/sign/safety/autoopenclose{
- pixel_x = 7;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"aIT" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -8845,12 +7068,6 @@
icon_state = "kitchen"
},
/area/almayer/engineering/upper_engineering)
-"aJs" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"aJw" = (
/obj/structure/machinery/light{
dir = 4
@@ -8860,16 +7077,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"aJB" = (
-/obj/structure/machinery/computer/working_joe{
- dir = 4;
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
"aJG" = (
/obj/structure/bed/chair/office/dark{
dir = 8;
@@ -9166,18 +7373,42 @@
icon_state = "dark_sterile"
},
/area/almayer/living/numbertwobunks)
-"aLB" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/starboard_hallway)
+"aLx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/door_control{
+ id = "DeployWorkR";
+ name = "Workshop Shutters";
+ pixel_x = -7;
+ pixel_y = -26;
+ req_one_access_txt = "3;22;2;19;7"
+ },
+/obj/structure/surface/rack,
+/obj/item/rappel_harness{
+ pixel_y = 8
+ },
+/obj/item/rappel_harness,
+/obj/item/rappel_harness{
+ pixel_y = -6
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "silverfull"
+ },
+/area/almayer/hallways/lower/repair_bay)
"aLE" = (
/obj/docking_port/stationary/emergency_response/external/hangar_starboard{
dwidth = 8
},
/turf/open/space,
/area/space)
-"aLG" = (
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"aLJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -9242,6 +7473,11 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
+"aMf" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"aMg" = (
/obj/structure/sign/safety/intercom{
layer = 2.9;
@@ -9267,15 +7503,6 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"aMl" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"aMm" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/crowbar,
@@ -9388,12 +7615,10 @@
/obj/effect/landmark/late_join/delta,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/delta)
-"aMM" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/starboard_hallway)
+"aML" = (
+/obj/item/ammo_casing/bullet,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"aMO" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -9425,12 +7650,6 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
-"aMV" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/starboard_hallway)
"aMY" = (
/obj/effect/decal/cleanable/blood,
/turf/open/floor/almayer{
@@ -9458,14 +7677,6 @@
"aNm" = (
/turf/open/floor/wood/ship,
/area/almayer/living/chapel)
-"aNn" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"aNr" = (
/obj/effect/landmark/start/chef,
/turf/open/floor/plating/plating_catwalk,
@@ -9492,33 +7703,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha_bravo_shared)
-"aNz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"aNG" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/almayer/hallways/starboard_hallway)
"aNI" = (
/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/almayer/squads/alpha)
-"aNO" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"aNQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -9606,6 +7796,18 @@
icon_state = "cargo"
},
/area/almayer/command/telecomms)
+"aOw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"aOy" = (
/obj/structure/machinery/light{
dir = 1
@@ -9712,15 +7914,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
-"aOP" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"aOQ" = (
/obj/structure/closet/crate,
/obj/item/storage/briefcase/inflatable,
@@ -9735,12 +7928,6 @@
"aOR" = (
/turf/open/floor/almayer,
/area/almayer/living/chapel)
-"aOS" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
"aOU" = (
/obj/structure/platform{
dir = 4
@@ -9780,21 +7967,14 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"aPb" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
-"aPd" = (
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"aPe" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = -32
},
-/area/almayer/maint/hull/lower/l_f_p)
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"aPf" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer,
@@ -9823,12 +8003,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
-"aPm" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/aft_hallway)
"aPn" = (
/obj/structure/machinery/cm_vending/clothing/marine/bravo{
density = 0;
@@ -9867,9 +8041,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
-"aPy" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/hallways/starboard_umbilical)
"aPz" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
@@ -9880,6 +8051,15 @@
icon_state = "emerald"
},
/area/almayer/command/cic)
+"aPC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"aPD" = (
/obj/structure/machinery/photocopier,
/turf/open/floor/almayer{
@@ -9929,13 +8109,19 @@
/obj/structure/sign/nosmoking_1,
/turf/closed/wall/almayer,
/area/almayer/squads/alpha)
-"aPP" = (
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice12";
- pixel_y = 16
+"aPN" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "ForeStarboardMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = -17
},
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/upper/s_bow)
+"aPO" = (
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/maint/hull/upper/u_a_p)
"aPS" = (
/obj/structure/machinery/power/port_gen/pacman,
/turf/open/floor/almayer{
@@ -9954,17 +8140,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"aPY" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_umbilical)
-"aPZ" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_umbilical)
"aQb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9984,15 +8159,6 @@
icon_state = "emerald"
},
/area/almayer/command/cic)
-"aQo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
"aQp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -10024,13 +8190,6 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"aQt" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"aQv" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/starboard_umbilical)
"aQy" = (
/obj/structure/transmitter{
dir = 8;
@@ -10169,14 +8328,14 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering)
-"aRm" = (
-/obj/structure/machinery/light/small{
- dir = 4
+"aRl" = (
+/obj/structure/machinery/door_control/cl/office/door{
+ pixel_y = -20
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/hallways/upper/aft_hallway)
"aRo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -10201,6 +8360,15 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
+"aRr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"aRt" = (
/turf/open/floor/almayer{
dir = 8;
@@ -10307,6 +8475,22 @@
},
/turf/open/floor/plating/almayer,
/area/almayer/medical/upper_medical)
+"aRL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "southcheckpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"aRP" = (
/turf/open/floor/almayer{
dir = 1;
@@ -10375,6 +8559,18 @@
icon_state = "tcomms"
},
/area/almayer/engineering/lower/engine_core)
+"aSl" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
"aSn" = (
/obj/item/stack/sheet/mineral/plastic{
amount = 15
@@ -10431,24 +8627,6 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
-"aSr" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/obj/structure/sign/safety/one{
- pixel_x = 32;
- pixel_y = -8
- },
-/obj/structure/sign/safety/ammunition{
- pixel_x = 32;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/starboard_hallway)
"aSt" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/chem_dispenser/soda/beer,
@@ -10456,18 +8634,6 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
-"aSv" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"aSx" = (
/obj/structure/machinery/vending/dinnerware,
/obj/structure/sign/safety/maint{
@@ -10477,18 +8643,6 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
-"aSy" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"aSz" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
"aSA" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -10499,20 +8653,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
-"aSB" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"aSC" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"aSE" = (
/obj/structure/bed/chair{
dir = 4
@@ -10561,24 +8701,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/operating_room_two)
-"aSV" = (
-/obj/structure/sign/poster/blacklight{
- pixel_y = 35
- },
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/obj/structure/reagent_dispensers/beerkeg/alt_dark{
- anchored = 1;
- chemical = null;
- density = 0;
- pixel_x = -7;
- pixel_y = 10
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"aTa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/junction{
@@ -10639,16 +8761,6 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"aTq" = (
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
"aTr" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -10658,12 +8770,6 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"aTu" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"aTv" = (
/obj/structure/machinery/cm_vending/clothing/marine/bravo{
density = 0;
@@ -10748,35 +8854,6 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
-"aTL" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"aTQ" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
-"aTS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/stern_hallway)
"aTT" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal3";
@@ -11096,6 +9173,13 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
+"aVM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"aVR" = (
/obj/structure/ladder{
height = 2;
@@ -11149,12 +9233,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/bridgebunks)
-"aVY" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"aWb" = (
/obj/structure/machinery/computer/working_joe{
dir = 4;
@@ -11181,23 +9259,6 @@
icon_state = "silver"
},
/area/almayer/engineering/port_atmos)
-"aWd" = (
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/stern_hallway)
-"aWf" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"aWg" = (
/obj/structure/machinery/door_control{
id = "CMP Office Shutters";
@@ -11216,15 +9277,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"aWj" = (
-/obj/structure/machinery/door/airlock/almayer/generic{
- dir = 2;
- name = "\improper Officer's Bunk"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/living/bridgebunks)
"aWk" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -11233,15 +9285,6 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
-"aWl" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"aWm" = (
/obj/structure/machinery/light{
dir = 1
@@ -11343,23 +9386,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/offices)
-"aWH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"aWM" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"aWR" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"aWT" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -11383,14 +9409,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/bridgebunks)
-"aWY" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"aWZ" = (
/obj/structure/pipes/standard/simple/visible,
/obj/structure/window/framed/almayer,
@@ -11415,12 +9433,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
-"aXd" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"aXe" = (
/turf/open/floor/almayer{
dir = 1;
@@ -11467,69 +9479,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/port)
-"aXE" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
-"aXO" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper)
-"aXS" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"aXT" = (
-/obj/structure/pipes/standard/cap/hidden{
- dir = 4
- },
-/obj/structure/sign/safety/life_support{
- pixel_x = 8;
- pixel_y = -25
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/stern_hallway)
-"aXV" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- dir = 1;
- name = "\improper Brig";
- closeOtherId = "brigmaint_n"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/s_bow)
"aYd" = (
/obj/structure/dropship_equipment/medevac_system,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
-"aYf" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
-"aYj" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
-"aYn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/aft_hallway)
"aYq" = (
/turf/open/floor/almayer{
dir = 6;
@@ -11572,15 +9527,6 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/hangar)
-"aYD" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
"aYE" = (
/obj/structure/platform,
/obj/structure/platform{
@@ -11599,27 +9545,6 @@
/obj/structure/safe/cl_office,
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"aYI" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"aYN" = (
-/obj/structure/platform_decoration,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
-"aYO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"aYQ" = (
/obj/structure/machinery/bioprinter{
stored_metal = 125
@@ -11637,59 +9562,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_two)
-"aYT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"aYV" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"aYW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"aYX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"aYY" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
+"aYU" = (
+/obj/effect/landmark/yautja_teleport,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
-"aYZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/upper/u_a_s)
"aZe" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -11709,24 +9587,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
-"aZg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"aZi" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"aZr" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -11739,6 +9599,14 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/chapel)
+"aZv" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_m_p)
"aZy" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
@@ -11749,10 +9617,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south1)
-"aZB" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_umbilical)
"aZC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -11760,10 +9624,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"aZE" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
"aZF" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down4";
@@ -11774,27 +9634,12 @@
allow_construction = 0
},
/area/almayer/stair_clone/upper)
-"aZH" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
-"aZJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
+"aZI" = (
+/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/squads/req)
+/area/almayer/maint/hull/upper/p_stern)
"aZK" = (
/obj/structure/pipes/vents/pump{
dir = 4
@@ -11873,10 +9718,6 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/hangar)
-"bad" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"baf" = (
/obj/structure/barricade/handrail/medical,
/turf/open/floor/almayer{
@@ -11890,38 +9731,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_one)
-"bai" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"bal" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"baq" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"bar" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = -32
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"bat" = (
/obj/structure/machinery/door_control{
id = "ARES Mainframe Right";
@@ -11937,24 +9746,6 @@
"baw" = (
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"bax" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"baB" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"baG" = (
/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer,
@@ -12002,6 +9793,14 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"baW" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"baX" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
@@ -12013,6 +9812,17 @@
"baZ" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/lower_medical_lobby)
+"bba" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/reagent_dispensers/fueltank{
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"bbd" = (
/obj/structure/machinery/light{
dir = 4
@@ -12036,83 +9846,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"bbg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"bbh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"bbi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"bbj" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"bbk" = (
-/obj/structure/barricade/handrail{
- dir = 8
- },
-/obj/structure/barricade/handrail{
- dir = 1;
- pixel_y = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
- },
-/area/almayer/hallways/starboard_hallway)
-"bbl" = (
-/obj/structure/barricade/handrail{
- dir = 1;
- pixel_y = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
- },
-/area/almayer/hallways/starboard_hallway)
-"bbm" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
- },
-/area/almayer/hallways/starboard_hallway)
-"bbn" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
- },
-/obj/structure/sign/safety/airlock{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
"bbr" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -12150,43 +9883,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/starboard_point_defense)
-"bbB" = (
-/obj/effect/projector{
- name = "Almayer_Up1";
- vector_x = -19;
- vector_y = 98
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
-"bbC" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/effect/projector{
- name = "Almayer_Up1";
- vector_x = -19;
- vector_y = 98
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"bbL" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"bbO" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
"bbS" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/starboard_point_defense)
@@ -12384,19 +10080,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_two)
-"bcQ" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/device/radio{
- pixel_x = 8;
- pixel_y = 7
- },
-/obj/item/clothing/head/soft/ferret{
- pixel_x = -7
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"bcR" = (
/obj/structure/sink{
pixel_y = 32
@@ -12729,17 +10412,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/operating_room_one)
-"beA" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/lower/l_m_s)
-"beB" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"beE" = (
/obj/structure/platform{
dir = 1
@@ -12825,6 +10497,31 @@
},
/turf/open/floor/almayer,
/area/almayer/living/chapel)
+"bfb" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"bfd" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"bff" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"bfl" = (
/turf/open/floor/almayer{
dir = 5;
@@ -12849,6 +10546,9 @@
icon_state = "redcorner"
},
/area/almayer/living/cryo_cells)
+"bfs" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/hull/lower/l_f_s)
"bft" = (
/obj/structure/disposalpipe/junction{
dir = 4
@@ -12960,17 +10660,9 @@
},
/area/almayer/hallways/hangar)
"bfO" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/machinery/photocopier{
- anchored = 0
- },
-/obj/structure/sign/poster/art{
- pixel_y = 32
- },
-/turf/open/floor/wood/ship,
-/area/almayer/command/corporateliaison)
+/obj/structure/pipes/vents/pump/on,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"bfV" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
@@ -12992,11 +10684,12 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"bga" = (
+"bgh" = (
/turf/open/floor/almayer{
- icon_state = "redcorner"
+ dir = 9;
+ icon_state = "silver"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"bgj" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
@@ -13211,12 +10904,6 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
-"bhe" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
"bhf" = (
/obj/structure/machinery/light{
dir = 4
@@ -13238,16 +10925,6 @@
icon_state = "silver"
},
/area/almayer/living/cryo_cells)
-"bhh" = (
-/obj/structure/machinery/door/poddoor/almayer{
- id = "n_umbilical";
- name = "\improper Umbillical Airlock";
- unacidable = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
"bho" = (
/obj/structure/machinery/computer/med_data,
/turf/open/floor/almayer{
@@ -13271,6 +10948,14 @@
icon_state = "plate"
},
/area/almayer/living/chapel)
+"bhy" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"bhG" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -13314,24 +10999,35 @@
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
"bhV" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/ladder/fragile_almayer{
+ height = 2;
+ id = "kitchen"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 24
},
-/area/almayer/maint/hull/lower/l_a_s)
-"bib" = (
-/obj/structure/largecrate/random/case,
-/obj/structure/machinery/access_button/airlock_exterior,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"bic" = (
-/obj/structure/largecrate/machine/bodyscanner,
+/area/almayer/maint/hull/upper/u_m_p)
+"bhZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/frame/table,
+/obj/item/storage/toolbox/electrical,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
+"bij" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"biq" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/beaker/large,
@@ -13348,12 +11044,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/chemistry)
-"bit" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"biu" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass{
access_modified = 1;
@@ -13368,13 +11058,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/chemistry)
-"biv" = (
-/obj/structure/prop/holidays/string_lights{
- pixel_y = 27
- },
-/obj/item/frame/rack,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"biy" = (
/obj/structure/pipes/unary/freezer,
/obj/structure/machinery/power/apc/almayer{
@@ -13392,6 +11075,22 @@
"biA" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/operating_room_three)
+"biB" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"biC" = (
+/obj/structure/largecrate/random/case,
+/obj/structure/machinery/access_button/airlock_exterior,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"biF" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/roller/surgical,
@@ -13449,11 +11148,10 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/living/starboard_garden)
-"bjh" = (
-/obj/structure/machinery/light/small,
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
+"bjg" = (
+/obj/item/trash/chips,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"bjk" = (
/obj/structure/machinery/door_control{
id = "perma_lockdown_2";
@@ -13476,6 +11174,14 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"bjt" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"bju" = (
/turf/open/floor/almayer{
dir = 1;
@@ -13500,64 +11206,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/offices)
-"bjH" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"bjJ" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"bjL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_umbilical)
-"bjM" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_umbilical)
-"bjN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_umbilical)
-"bjO" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
- },
-/obj/structure/sign/safety/airlock{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
"bjQ" = (
/obj/structure/machinery/shower{
dir = 8
@@ -13577,6 +11225,12 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"bkb" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"bkd" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
@@ -13643,24 +11297,6 @@
"bkA" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/chemistry)
-"bkB" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/cell_charger,
-/obj/item/cell/apc,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"bkD" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "vehicle_elevator_railing"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/vehiclehangar)
"bkE" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -13699,18 +11335,17 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lockerroom)
-"bkQ" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bkS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
},
-/area/almayer/hallways/aft_hallway)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"bkT" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -13734,24 +11369,6 @@
icon_state = "silver"
},
/area/almayer/living/cryo_cells)
-"bkY" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
-"blb" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/stern_hallway)
"blf" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -13815,6 +11432,22 @@
icon_state = "plate"
},
/area/almayer/living/offices)
+"blq" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ access_modified = 1;
+ dir = 2;
+ name = "Firing Range";
+ req_access = null;
+ req_one_access_txt = "2;4;7;9;21"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/living/cryo_cells)
"bls" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
@@ -13855,9 +11488,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lockerroom)
-"bma" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/s_stern)
"bmb" = (
/turf/open/floor/almayer{
dir = 8;
@@ -13984,12 +11614,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"bmu" = (
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
"bmv" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
dir = 2;
@@ -14004,21 +11628,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
-"bmw" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_umbilical)
-"bmx" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_umbilical)
-"bmy" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_umbilical)
"bmz" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/kitchen/utensil/spoon{
@@ -14041,6 +11650,18 @@
icon_state = "plating_striped"
},
/area/almayer/squads/req)
+"bmC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-y"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
"bmD" = (
/turf/open/floor/almayer{
dir = 5;
@@ -14198,15 +11819,14 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/bravo)
-"bnD" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
+"bnF" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/turf/open/floor/almayer{
+ icon_state = "cargo"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
+/area/almayer/maint/hull/upper/u_m_p)
"bnH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -14300,32 +11920,25 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_four)
+"bom" = (
+/obj/structure/sign/safety/south{
+ pixel_x = -17;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"boq" = (
/obj/structure/bed/chair/comfy/alpha,
/turf/open/floor/almayer{
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"bot" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/effect/spawner/random/toolbox,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
-"bou" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/item/tank/emergency_oxygen/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
+"bos" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/lower/s_bow)
"boy" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
@@ -14368,6 +11981,11 @@
"boL" = (
/turf/open/floor/almayer,
/area/almayer/living/starboard_garden)
+"boU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldingtool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"boV" = (
/obj/structure/cargo_container/wy/left,
/obj/structure/prop/almayer/minigun_crate{
@@ -14545,26 +12163,30 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"bpU" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/firstaid/o2,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
"bpV" = (
/obj/effect/landmark/ert_spawns/distress_cryo,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/living/cryo_cells)
-"bpW" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/spawner/random/technology_scanner,
+"bqc" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"bqg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/starboard_umbilical)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"bqm" = (
/obj/structure/closet/boxinggloves,
/turf/open/floor/almayer{
@@ -14605,10 +12227,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"bqM" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
"bqN" = (
/obj/structure/bed/chair/office/light{
dir = 4
@@ -14709,6 +12327,12 @@
icon_state = "test_floor5"
},
/area/almayer/squads/req)
+"brm" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"brn" = (
/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart,
/turf/open/floor/almayer{
@@ -14719,6 +12343,11 @@
/obj/structure/supply_drop/bravo,
/turf/open/floor/plating,
/area/almayer/squads/req)
+"brq" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"brr" = (
/obj/structure/machinery/cm_vending/clothing/medic/bravo,
/turf/open/floor/almayer{
@@ -14764,17 +12393,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/bravo)
-"brD" = (
-/obj/structure/closet,
-/obj/item/clothing/suit/armor/riot/marine/vintage_riot,
-/obj/item/clothing/head/helmet/riot/vintage_riot,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"brH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -14786,31 +12404,6 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"brO" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_umbilical)
-"brP" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_umbilical)
-"brQ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_umbilical)
"brS" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
@@ -14837,18 +12430,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"bsk" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"bsp" = (
/obj/structure/sink{
dir = 4;
@@ -14984,15 +12565,6 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"bsT" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 1
- },
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"bsU" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -15009,12 +12581,6 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"bsX" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_hallway)
"btc" = (
/obj/structure/bed/chair{
dir = 8;
@@ -15038,12 +12604,22 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"btp" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
+"btn" = (
+/obj/item/device/camera{
+ pixel_x = 4;
+ pixel_y = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_umbilical)
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera_film{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/device/camera_film,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
"btr" = (
/obj/structure/closet/boxinggloves,
/obj/structure/machinery/light,
@@ -15085,9 +12661,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"btL" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/u_f_s)
"btM" = (
/obj/effect/spawner/random/toolbox,
/obj/structure/pipes/vents/scrubber{
@@ -15107,6 +12680,15 @@
"btO" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"btV" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"btX" = (
/obj/structure/machinery/light{
dir = 4
@@ -15214,17 +12796,6 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"buH" = (
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"buI" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"buJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"buM" = (
/obj/structure/machinery/cm_vending/clothing/smartgun/bravo,
/turf/open/floor/almayer{
@@ -15257,24 +12828,21 @@
},
/area/almayer/squads/bravo)
"buY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+/obj/structure/stairs{
+ dir = 1
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/obj/structure/machinery/light{
+ dir = 8
},
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
},
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/hallways/lower/port_midship_hallway)
"bvb" = (
/obj/structure/machinery/light{
dir = 8
@@ -15300,12 +12868,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"bvm" = (
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lower_medical_medbay)
"bvr" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/decal/warning_stripes{
@@ -15326,6 +12888,19 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_one)
+"bvD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"bvF" = (
/turf/open/floor/almayer{
dir = 8;
@@ -15343,23 +12918,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/general_equipment)
-"bvT" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_umbilical)
-"bvV" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_umbilical)
"bvX" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -15379,11 +12937,6 @@
icon_state = "test_floor5"
},
/area/almayer/squads/req)
-"bwd" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
"bwe" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/almayer{
@@ -15464,6 +13017,32 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
+"bwv" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
+"bww" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"bwG" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/l_m_s)
"bwH" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/crew/alt{
@@ -15474,12 +13053,21 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"bwM" = (
-/obj/structure/bed/sofa/south/grey/right,
+"bwN" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/upper/stern_hallway)
+"bwP" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"bwR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/med_data/laptop{
@@ -15505,18 +13093,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"bxd" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"bxf" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
@@ -15553,13 +13129,6 @@
icon_state = "mono"
},
/area/almayer/squads/req)
-"bxk" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"bxm" = (
/turf/open/floor/almayer{
dir = 4;
@@ -15572,18 +13141,14 @@
icon_state = "redfull"
},
/area/almayer/living/cryo_cells)
-"bxw" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"bxx" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"bxt" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"bxA" = (
/obj/structure/machinery/power/apc/almayer/hardened,
/obj/effect/decal/warning_stripes{
@@ -15622,26 +13187,35 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
-"bxD" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"bxN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower/workshop)
-"bxZ" = (
-/obj/structure/reagent_dispensers/fueltank,
+"bxV" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "blue"
},
-/area/almayer/maint/lower/s_bow)
+/area/almayer/hallways/upper/aft_hallway)
+"bxY" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 11
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"byb" = (
/obj/structure/barricade/handrail/medical,
/turf/open/floor/almayer{
@@ -15709,15 +13283,15 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"bys" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
+"byt" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/lower/l_m_s)
"byu" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -15745,41 +13319,15 @@
icon_state = "silver"
},
/area/almayer/living/cryo_cells)
-"byC" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"byD" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"byF" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
-"byI" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"byH" = (
+/obj/structure/bed/sofa/south/white/right{
+ pixel_y = 16
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "silver"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/upper/u_m_p)
"bzg" = (
/obj/structure/pipes/vents/pump{
dir = 8;
@@ -15795,9 +13343,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_four)
-"bzy" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/vehiclehangar)
"bzz" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -15805,11 +13350,6 @@
/obj/structure/machinery/disposal,
/turf/open/floor/almayer,
/area/almayer/shipboard/starboard_missiles)
-"bzA" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bzD" = (
/obj/structure/machinery/door/poddoor/almayer{
id = "tcomms"
@@ -15818,13 +13358,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/telecomms)
-"bzH" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bzI" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -15836,10 +13369,6 @@
icon_state = "silver"
},
/area/almayer/living/cryo_cells)
-"bzK" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"bzQ" = (
/obj/structure/largecrate/random/case,
/turf/open/floor/plating/plating_catwalk,
@@ -15858,34 +13387,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/chemistry)
-"bzV" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"bzW" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
-"bzY" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"bAa" = (
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_hallway)
"bAd" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15903,12 +13404,6 @@
dir = 1
},
/area/almayer/command/lifeboat)
-"bAg" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bAh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cargo_container/wy/mid,
@@ -15918,12 +13413,6 @@
/obj/structure/cargo_container/wy/right,
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"bAr" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bAs" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/weapon_room)
@@ -15939,6 +13428,13 @@
icon_state = "test_floor4"
},
/area/almayer/command/securestorage)
+"bAy" = (
+/obj/structure/closet/fireaxecabinet{
+ pixel_y = -32
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"bAH" = (
/obj/structure/largecrate/random/case,
/turf/open/floor/almayer{
@@ -16015,17 +13511,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"bAV" = (
-/turf/open/floor/almayer{
- icon_state = "greencorner"
- },
-/area/almayer/hallways/starboard_hallway)
-"bAX" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/starboard_hallway)
"bAY" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
@@ -16044,21 +13529,12 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
-"bBa" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_hallway)
-"bBb" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/closet/firecloset,
+"bBc" = (
+/obj/structure/surface/rack,
/turf/open/floor/almayer{
- icon_state = "greencorner"
+ icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/upper/u_m_p)
"bBd" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -16085,24 +13561,12 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha)
-"bBh" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
"bBl" = (
/obj/structure/machinery/light{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"bBp" = (
-/obj/effect/landmark/crap_item,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"bBu" = (
/obj/structure/surface/rack,
/turf/open/floor/almayer{
@@ -16150,9 +13614,6 @@
"bBA" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/weapon_room)
-"bBB" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/vehiclehangar)
"bBC" = (
/obj/structure/bed/chair{
dir = 4
@@ -16189,21 +13650,6 @@
/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"bBO" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/emails{
- dir = 1;
- pixel_x = 1;
- pixel_y = 4
- },
-/obj/item/tool/kitchen/utensil/fork{
- pixel_x = -9;
- pixel_y = 3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"bBQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door_control{
@@ -16215,6 +13661,18 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"bBR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"bBU" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"bBY" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/almayer{
@@ -16252,21 +13710,10 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/living/briefing)
-"bCi" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"bCj" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 4;
- id = "southcheckpoint";
- name = "\improper Checkpoint Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/hallways/port_hallway)
+"bCk" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"bCl" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -16290,17 +13737,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_three)
-"bCo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
"bCu" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 4
@@ -16309,6 +13745,18 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
+"bCv" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"bCx" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -16360,16 +13808,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/cryo_cells)
-"bCI" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "Saferoom Channel";
- pixel_x = 27
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"bCM" = (
/obj/structure/machinery/cryopod,
/turf/open/floor/almayer{
@@ -16391,6 +13829,12 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
+"bCR" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"bCS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -16399,15 +13843,6 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
-"bCW" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_hallway)
"bCY" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -16424,6 +13859,11 @@
icon_state = "plate"
},
/area/almayer/shipboard/weapon_room)
+"bDi" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"bDn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/closed/wall/almayer,
@@ -16439,22 +13879,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lockerroom)
-"bDx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 4;
- id = "southcheckpoint";
- name = "\improper Checkpoint Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/hallways/port_hallway)
"bDD" = (
/obj/structure/bed/chair{
dir = 8
@@ -16491,10 +13915,6 @@
icon_state = "plate"
},
/area/almayer/living/cryo_cells)
-"bDN" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
"bDO" = (
/turf/open/floor/almayer{
icon_state = "tcomms"
@@ -16654,14 +14074,16 @@
},
/turf/open/floor/plating,
/area/almayer/squads/req)
-"bEj" = (
-/obj/structure/bed/chair{
- dir = 4
+"bEk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 6;
+ icon_state = "green"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"bEl" = (
/obj/structure/machinery/computer/supply_drop_console/limited,
/turf/closed/wall/almayer,
@@ -16700,16 +14122,6 @@
icon_state = "cargo"
},
/area/almayer/squads/req)
-"bEt" = (
-/obj/structure/noticeboard{
- pixel_x = -10;
- pixel_y = 31
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/squads/req)
"bEv" = (
/turf/open/floor/almayer{
dir = 1;
@@ -16728,14 +14140,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/weapon_room)
-"bEz" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bEA" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -16794,16 +14198,6 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
-"bEH" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_hallway)
"bEK" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -16914,10 +14308,12 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"bEW" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+"bET" = (
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
"bFa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -16926,19 +14322,6 @@
icon_state = "red"
},
/area/almayer/shipboard/weapon_room)
-"bFf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"bFj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -16954,6 +14337,21 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/weapon_room)
+"bFl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/pizzabox/meat,
+/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"bFp" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -16988,10 +14386,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"bFu" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"bFA" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -17001,6 +14395,15 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"bFB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"bFC" = (
/obj/structure/machinery/light{
dir = 1
@@ -17023,6 +14426,14 @@
/obj/docking_port/stationary/marine_dropship/almayer_hangar_1,
/turf/open/floor/plating,
/area/almayer/hallways/hangar)
+"bFX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"bGa" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -17036,9 +14447,6 @@
icon_state = "mono"
},
/area/almayer/hallways/upper/starboard)
-"bGb" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/port_hallway)
"bGc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -17048,60 +14456,6 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
-"bGe" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"bGg" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"bGh" = (
-/obj/structure/barricade/handrail{
- dir = 8
- },
-/obj/structure/barricade/handrail,
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
- },
-/area/almayer/hallways/port_hallway)
-"bGi" = (
-/obj/structure/barricade/handrail,
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
- },
-/area/almayer/hallways/port_hallway)
-"bGj" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/obj/structure/barricade/handrail,
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
- },
-/area/almayer/hallways/port_hallway)
-"bGk" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/barricade/handrail,
-/turf/open/floor/almayer{
- icon_state = "test_floor5"
- },
-/area/almayer/hallways/port_hallway)
-"bGl" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
- },
-/area/almayer/hallways/port_hallway)
"bGn" = (
/obj/structure/barricade/plasteel/metal,
/turf/open/floor/almayer{
@@ -17118,17 +14472,6 @@
/obj/structure/window/framed/almayer/hull/hijack_bustable,
/turf/open/floor/plating,
/area/almayer/squads/req)
-"bGp" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/port_umbilical)
"bGq" = (
/obj/structure/machinery/light,
/obj/effect/decal/warning_stripes{
@@ -17283,37 +14626,17 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"bGT" = (
-/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{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
"bGU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
-"bHa" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"bHb" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"bHd" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+"bHg" = (
+/obj/structure/bed,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "sterile_green_side"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/almayer/medical/lower_medical_medbay)
"bHk" = (
/turf/open/floor/almayer/research/containment/floor2{
dir = 1
@@ -17352,32 +14675,12 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/navigation)
-"bHt" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"bHB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"bHC" = (
-/obj/structure/closet/secure_closet/personal/cabinet{
- req_access = null
- },
-/obj/item/clothing/suit/chef/classic,
-/obj/item/tool/kitchen/knife/butcher,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/s_bow)
"bHD" = (
/obj/structure/ship_ammo/rocket/banshee,
/turf/open/floor/almayer{
@@ -17392,20 +14695,6 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
-"bHH" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "hangarentrancesouth";
- name = "\improper South Hangar Podlock"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
"bHI" = (
/obj/structure/anti_air_cannon,
/obj/structure/surface/table/almayer,
@@ -17413,73 +14702,9 @@
/obj/item/tool/pen,
/turf/open/floor/plating/almayer,
/area/almayer/shipboard/weapon_room)
-"bHL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"bHP" = (
/turf/open/floor/plating/almayer,
/area/almayer/shipboard/weapon_room)
-"bHT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"bHV" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"bHW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"bHX" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"bHY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"bIb" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"bId" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -17498,6 +14723,11 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"bIj" = (
+/turf/open/floor/almayer{
+ icon_state = "emeraldcorner"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"bIn" = (
/obj/structure/machinery/computer/cameras/almayer_network,
/obj/structure/surface/table/almayer,
@@ -17578,16 +14808,6 @@
},
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/navigation)
-"bII" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"bIJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -17611,23 +14831,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/hydroponics)
-"bIR" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"bIS" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"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,
-/area/almayer/hallways/port_hallway)
-"bIT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/port_fore_hallway)
"bIU" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes{
@@ -17644,11 +14860,13 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
-"bJb" = (
-/obj/structure/disposalpipe/junction,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+"bIW" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"bJe" = (
/obj/structure/surface/table/reinforced/black,
/obj/item/explosive/grenade/high_explosive/training,
@@ -17673,21 +14891,6 @@
},
/turf/open/floor/plating,
/area/almayer/living/cryo_cells)
-"bJh" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/port_umbilical)
-"bJi" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/starboard_hallway)
"bJl" = (
/obj/structure/machinery/door/airlock/almayer/generic{
access_modified = 1;
@@ -17707,15 +14910,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/auxiliary_officer_office)
-"bJo" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/repair_bay)
-"bJr" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"bJt" = (
/turf/closed/wall/almayer,
/area/almayer/living/grunt_rnr)
@@ -17732,11 +14926,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"bJz" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"bJC" = (
/turf/closed/wall/almayer,
/area/almayer/squads/charlie)
@@ -17759,27 +14948,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
-"bJK" = (
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 13
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"bJO" = (
-/obj/structure/machinery/light/small,
-/obj/structure/sign/safety/nonpress_0g{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/press_area_ag{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
"bJS" = (
/obj/structure/surface/rack,
/obj/item/tool/wrench,
@@ -17816,12 +14984,6 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"bKa" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bKb" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -17838,12 +15000,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/weapon_room)
-"bKc" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = -30
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"bKd" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/hand_labeler,
@@ -17853,36 +15009,21 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"bKe" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"bKf" = (
/turf/open/floor/almayer{
dir = 5;
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"bKh" = (
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
-"bKj" = (
-/obj/structure/machinery/gear{
- id = "vehicle_elevator_gears"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
+"bKk" = (
+/obj/item/tool/wrench{
+ pixel_x = -8;
+ pixel_y = 10
},
-/area/almayer/hallways/vehiclehangar)
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/prop/mech/hydralic_clamp,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"bKm" = (
/obj/structure/closet/crate/freezer{
desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza."
@@ -17967,23 +15108,23 @@
icon_state = "cargo"
},
/area/almayer/living/cryo_cells)
-"bKE" = (
+"bKJ" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_hallway)
-"bKG" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out"
+ icon_state = "test_floor4"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/maint/lower/cryo_cells)
"bKM" = (
/obj/effect/landmark/start/marine/medic/charlie,
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
+"bKP" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/s_bow)
"bKQ" = (
/obj/structure/bed/chair{
dir = 8
@@ -17998,6 +15139,39 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
+"bLc" = (
+/obj/structure/surface/rack,
+/obj/item/roller,
+/obj/item/roller,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/clothing/glasses/disco_fever{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
+"bLf" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"bLg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"bLh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -18111,24 +15285,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/navigation)
-"bLt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
-"bLu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/vehiclehangar)
"bLv" = (
/obj/structure/machinery/door_control{
id = "ARES StairsLower";
@@ -18222,25 +15378,6 @@
/obj/item/tool/pen,
/turf/open/floor/almayer,
/area/almayer/living/offices/flight)
-"bLT" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/machinery/door_control{
- id = "hangarentrancesouth";
- name = "South Hangar Shutters";
- pixel_y = 30;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"bLX" = (
/obj/vehicle/powerloader,
/turf/open/floor/almayer{
@@ -18257,6 +15394,20 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"bMf" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"bMi" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"bMq" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
/obj/structure/machinery/light{
@@ -18266,12 +15417,6 @@
icon_state = "plate"
},
/area/almayer/squads/charlie_delta_shared)
-"bMt" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "emerald"
- },
-/area/almayer/hallways/port_hallway)
"bMu" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{
req_access = null;
@@ -18330,9 +15475,16 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"bMH" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/u_a_p)
+"bME" = (
+/obj/structure/surface/rack,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"bMJ" = (
/obj/structure/machinery/light,
/obj/structure/machinery/portable_atmospherics/canister/oxygen,
@@ -18405,6 +15557,22 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
+"bMV" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -8;
+ pixel_y = 28
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = 14;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"bNa" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black,
@@ -18419,6 +15587,12 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
+"bNc" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"bNe" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -18500,15 +15674,6 @@
/obj/structure/bed/chair/office/dark,
/turf/open/floor/almayer,
/area/almayer/shipboard/navigation)
-"bNp" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- id = "vehicle1door";
- name = "Vehicle Bay One"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bNq" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/wirecutters,
@@ -18518,6 +15683,14 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
+"bNr" = (
+/obj/structure/sign/safety/storage{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"bNs" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -18601,6 +15774,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
+"bNI" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"bNL" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -18643,37 +15826,15 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"bNW" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/vehiclehangar)
-"bOb" = (
-/obj/item/tool/wet_sign,
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"bOe" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/obj/structure/machinery/door_control/railings{
- pixel_y = 24
+"bNT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/hallways/vehiclehangar)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"bOq" = (
/obj/structure/prop/almayer/cannon_cables,
/turf/open/floor/almayer{
@@ -18689,29 +15850,21 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/weapon_room)
-"bOv" = (
+"bOw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "emeraldcorner"
+ icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/vehiclehangar)
"bOx" = (
/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/almayer/squads/charlie)
-"bOy" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/s_bow)
-"bOz" = (
-/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
"bOC" = (
/obj/structure/sign/safety/maint{
pixel_x = 8;
@@ -18833,11 +15986,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/sea_office)
-"bOX" = (
-/turf/open/floor/almayer{
- icon_state = "emeraldcorner"
- },
-/area/almayer/hallways/port_hallway)
"bOZ" = (
/obj/structure/machinery/light{
dir = 1
@@ -18881,15 +16029,6 @@
icon_state = "red"
},
/area/almayer/shipboard/weapon_room)
-"bPj" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"bPk" = (
/obj/item/roller,
/obj/item/roller,
@@ -19067,17 +16206,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
-"bQd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"bQt" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -19123,9 +16251,6 @@
icon_state = "red"
},
/area/almayer/shipboard/weapon_room)
-"bQF" = (
-/turf/closed/wall/almayer,
-/area/almayer/shipboard/panic)
"bQG" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black,
@@ -19230,56 +16355,20 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"bRs" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/sign/safety/bridge{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/west{
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
-"bRx" = (
-/obj/structure/machinery/door/poddoor/railing{
- id = "vehicle_elevator_railing_aux"
- },
-/obj/structure/machinery/light,
+"bRo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
-"bRz" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
-"bRA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
-"bRD" = (
-/obj/structure/largecrate/random/barrel/red,
+/area/almayer/hallways/lower/port_midship_hallway)
+"bRt" = (
/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/sign/safety/fire_haz{
- pixel_x = 8;
- pixel_y = -32
+ icon_state = "N";
+ pixel_y = 1
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "orangecorner"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/hallways/lower/starboard_umbilical)
"bRP" = (
/obj/structure/machinery/body_scanconsole,
/obj/structure/disposalpipe/segment{
@@ -19293,15 +16382,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"bRQ" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"bRR" = (
/obj/structure/machinery/door/window/eastleft{
req_one_access_txt = "2;21"
@@ -19318,14 +16398,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
-"bRU" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/vehiclehangar)
"bRV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -19358,13 +16430,6 @@
icon_state = "silver"
},
/area/almayer/living/cryo_cells)
-"bSd" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"bSe" = (
/turf/open/floor/almayer{
dir = 6;
@@ -19374,22 +16439,6 @@
"bSf" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/port_point_defense)
-"bSg" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/hallways/port_umbilical)
-"bSj" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/sign/safety/security{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"bSn" = (
/obj/structure/machinery/cm_vending/gear/tl{
density = 0;
@@ -19476,15 +16525,6 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"bSY" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"bSZ" = (
/obj/structure/machinery/vending/coffee{
density = 0;
@@ -19539,13 +16579,6 @@
},
/turf/open/floor/plating,
/area/almayer/powered)
-"bTr" = (
-/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"bTt" = (
/obj/structure/desertdam/decals/road_edge{
pixel_x = 2;
@@ -19576,6 +16609,14 @@
icon_state = "bluecorner"
},
/area/almayer/squads/delta)
+"bTz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"bTA" = (
/turf/open/floor/almayer,
/area/almayer/squads/delta)
@@ -19588,6 +16629,12 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
+"bTD" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"bTE" = (
/turf/open/floor/almayer{
dir = 4;
@@ -19618,12 +16665,6 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"bTL" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"bTM" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
density = 0;
@@ -19702,6 +16743,12 @@
icon_state = "plate"
},
/area/almayer/living/tankerbunks)
+"bTW" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/s_bow)
"bUa" = (
/obj/structure/closet,
/turf/open/floor/almayer{
@@ -19720,28 +16767,6 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"bUd" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/port_hallway)
-"bUe" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/machinery/door_control{
- id = "hangarentrancesouth";
- name = "South Hangar Shutters";
- pixel_y = 30;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"bUf" = (
/obj/structure/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -19837,31 +16862,18 @@
icon_state = "test_floor5"
},
/area/almayer/squads/req)
-"bUE" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
-"bUF" = (
-/turf/open/floor/almayer{
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/port_hallway)
-"bUJ" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Port Viewing Room"
+"bUH" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
},
-/area/almayer/maint/hull/upper/u_f_s)
-"bUM" = (
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
+ icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/hull/lower/l_m_p)
"bUN" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -19876,6 +16888,11 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
+"bUQ" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"bUT" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -19909,19 +16926,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/medical_science)
-"bVk" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "Saferoom Channel";
- pixel_y = -28
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"bVn" = (
/obj/structure/machinery/light{
dir = 8
@@ -19946,6 +16950,14 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
+"bVr" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"bVs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -20030,6 +17042,12 @@
icon_state = "plate"
},
/area/almayer/living/starboard_garden)
+"bWg" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"bWh" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
dir = 2;
@@ -20040,12 +17058,6 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
-"bWm" = (
-/obj/structure/largecrate/supply/floodlights,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"bWn" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -20100,18 +17112,6 @@
icon_state = "plate"
},
/area/almayer/squads/req)
-"bWP" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"bWT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -20125,18 +17125,6 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
-"bWV" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/obj/structure/sign/safety/rewire{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_hallway)
"bXe" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
@@ -20148,6 +17136,14 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"bXh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"bXo" = (
/obj/structure/ladder{
height = 1;
@@ -20161,12 +17157,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/navigation)
-"bXs" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"bXw" = (
/obj/structure/machinery/bioprinter{
stored_metal = 125
@@ -20188,12 +17178,6 @@
icon_state = "plate"
},
/area/almayer/squads/req)
-"bXX" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"bXY" = (
/obj/structure/ladder{
height = 1;
@@ -20207,10 +17191,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/navigation)
-"bXZ" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"bYa" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend,
/turf/open/floor/almayer{
@@ -20218,29 +17198,6 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"bYc" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"bYd" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"bYe" = (
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/aft_hallway)
-"bYh" = (
-/obj/structure/disposalpipe/junction,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
"bYn" = (
/turf/closed/wall/almayer/outer,
/area/almayer/engineering/upper_engineering/port)
@@ -20290,16 +17247,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"bYE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/port_hallway)
"bYF" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -20307,6 +17254,9 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower)
+"bYW" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/panic)
"bYY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -20348,6 +17298,18 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
+"bZf" = (
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = -16;
+ pixel_y = 17
+ },
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"bZi" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -20368,54 +17330,31 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"bZo" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"bZq" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"bZr" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "plating_striped"
},
/area/almayer/squads/req)
-"bZu" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"bZw" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/combat_correspondent)
-"bZz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"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)
-"bZK" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"bZL" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"bZO" = (
/obj/structure/machinery/light{
dir = 8
@@ -20437,6 +17376,13 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"bZS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"bZU" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -20517,12 +17463,19 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"can" = (
-/obj/structure/machinery/conveyor{
- id = "req_belt"
+"cap" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wirecutters,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/hull/upper/u_a_s)
+"caq" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"car" = (
/obj/structure/machinery/firealarm{
pixel_y = -28
@@ -20535,14 +17488,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"cat" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/vehiclehangar)
"cau" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/door/airlock/almayer/security/glass{
@@ -20559,61 +17504,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/cryo_cells)
-"cav" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/port_hallway)
-"cax" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
-"caC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
-"caD" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
-"caL" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/wirecutters,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"caM" = (
/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer{
@@ -20667,14 +17557,17 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_three)
-"caZ" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
+"cbc" = (
+/obj/structure/platform_decoration,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/upper/u_a_s)
"cbg" = (
/obj/structure/machinery/door/airlock/almayer/command{
dir = 2;
@@ -20713,12 +17606,6 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"cbr" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/aft_hallway)
"cbu" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
layer = 1.9
@@ -20733,122 +17620,25 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
-"cbv" = (
+"cbK" = (
+/obj/structure/machinery/light,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
+ icon_state = "red"
},
-/area/almayer/hallways/port_hallway)
-"cbw" = (
-/turf/open/floor/almayer{
+/area/almayer/hallways/upper/aft_hallway)
+"cbL" = (
+/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/port_hallway)
-"cbz" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"cbD" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"cbE" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ name = "ship-grade camera"
},
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"cbM" = (
/obj/structure/closet/crate,
/obj/item/clothing/glasses/welding,
/obj/item/circuitboard,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/north1)
-"cbQ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"cbR" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"cbS" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"cbU" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"cbV" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/sign/safety/maint{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/storage{
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 3
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"cbW" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"cbX" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"ccb" = (
/obj/structure/surface/table/reinforced/black,
/turf/open/floor/almayer{
@@ -20913,27 +17703,6 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"ccq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"ccr" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"ccs" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -20942,22 +17711,6 @@
icon_state = "plate"
},
/area/almayer/medical/morgue)
-"ccu" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"ccv" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"ccG" = (
/obj/structure/largecrate/random/secure,
/obj/effect/decal/warning_stripes{
@@ -20967,64 +17720,23 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"ccJ" = (
-/turf/open/floor/almayer{
- icon_state = "silvercorner"
+"ccL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
-/area/almayer/hallways/repair_bay)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_umbilical)
"ccN" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "redcorner"
},
/area/almayer/living/cryo_cells)
-"ccO" = (
-/obj/structure/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"ccQ" = (
/obj/effect/landmark/ert_spawns/distress_cryo,
/obj/effect/landmark/late_join,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/cryo_cells)
-"ccU" = (
-/obj/structure/pipes/vents/pump{
- dir = 8;
- id_tag = "mining_outpost_pump"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"cdb" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
-"cdc" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
-"cdd" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
"cdf" = (
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
@@ -21065,27 +17777,6 @@
},
/turf/open/floor/plating,
/area/almayer/living/cryo_cells)
-"cdw" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_umbilical)
-"cdx" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_umbilical)
-"cdy" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_umbilical)
-"cdz" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
"cdA" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -21097,37 +17788,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"cdE" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/drinks/cans/waterbottle{
- pixel_x = 9;
- pixel_y = 3
- },
-/obj/item/prop/helmetgarb/flair_io{
- pixel_x = -10;
- pixel_y = 6
- },
-/obj/item/prop/magazine/boots/n160{
- pixel_x = -6;
- pixel_y = -5
- },
-/obj/structure/transmitter/rotary{
- name = "Flight Deck Telephone";
- phone_category = "Almayer";
- phone_id = "Flight Deck";
- pixel_y = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
-"cdF" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"cdI" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -21184,54 +17844,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha)
-"cep" = (
-/obj/item/tool/wet_sign,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
-"ces" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
-"cet" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
"ceu" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "green"
},
/area/almayer/living/starboard_garden)
-"cev" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_umbilical)
-"cew" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/port_umbilical)
-"cex" = (
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
"ceC" = (
/obj/structure/prop/almayer/ship_memorial,
/turf/open/floor/plating/almayer,
@@ -21249,39 +17867,17 @@
"ceE" = (
/turf/closed/wall/almayer,
/area/almayer/command/cichallway)
-"ceI" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"ceK" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
-"ceQ" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/obj/structure/machinery/part_fabricator/dropship,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
-"ceR" = (
-/obj/structure/machinery/prop/almayer/computer{
- pixel_y = 20
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
-"ceU" = (
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+"ceY" = (
+/obj/structure/machinery/light/small{
+ dir = 8
},
-/area/almayer/hallways/repair_bay)
+/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{
@@ -21299,6 +17895,24 @@
icon_state = "red"
},
/area/almayer/shipboard/port_missiles)
+"cfm" = (
+/obj/structure/flora/pottedplant{
+ desc = "Life is underwhelming, especially when you're a potted plant.";
+ icon_state = "pottedplant_22";
+ name = "Jerry";
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/sunglasses/prescription{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"cfo" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
@@ -21327,128 +17941,18 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"cfx" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
-"cfy" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_umbilical)
-"cfz" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_umbilical)
-"cfA" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/effect/spawner/random/tool,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
"cfE" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
-"cfM" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "DeployWorkR";
- name = "\improper Workshop Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/repair_bay)
-"cfN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"cfT" = (
/turf/open/floor/almayer{
dir = 10;
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"cgd" = (
-/obj/item/clothing/under/blackskirt{
- desc = "A stylish skirt, in a business-black and red colour scheme.";
- name = "liaison's skirt"
- },
-/obj/item/clothing/under/suit_jacket/charcoal{
- desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike.";
- name = "liaison's black suit"
- },
-/obj/item/clothing/under/suit_jacket/navy{
- desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants.";
- name = "liaison's navy suit"
- },
-/obj/item/clothing/under/suit_jacket/trainee,
-/obj/item/clothing/under/liaison_suit/charcoal,
-/obj/item/clothing/under/liaison_suit/blazer,
-/obj/item/clothing/suit/storage/snow_suit/liaison,
-/obj/item/clothing/gloves/black,
-/obj/item/clothing/gloves/marine/dress,
-/obj/item/clothing/glasses/sunglasses/big,
-/obj/item/clothing/accessory/blue,
-/obj/item/clothing/accessory/red,
-/obj/structure/machinery/status_display{
- pixel_x = -32
- },
-/obj/item/clothing/accessory/black,
-/obj/item/clothing/accessory/green,
-/obj/item/clothing/accessory/gold,
-/obj/item/clothing/accessory/purple,
-/obj/item/clothing/under/liaison_suit/corporate_formal,
-/obj/item/clothing/under/liaison_suit/field,
-/obj/item/clothing/under/liaison_suit/ivy,
-/obj/item/clothing/under/liaison_suit/blue,
-/obj/item/clothing/under/liaison_suit/brown,
-/obj/item/clothing/under/liaison_suit/black,
-/obj/item/clothing/suit/storage/jacket/marine/vest,
-/obj/item/clothing/suit/storage/jacket/marine/vest/grey,
-/obj/item/clothing/suit/storage/jacket/marine/vest/tan,
-/obj/item/clothing/suit/storage/jacket/marine/bomber,
-/obj/item/clothing/suit/storage/jacket/marine/bomber/red,
-/obj/item/clothing/suit/storage/jacket/marine/bomber/grey,
-/obj/item/clothing/suit/storage/jacket/marine/corporate,
-/obj/item/clothing/suit/storage/jacket/marine/corporate/black,
-/obj/item/clothing/suit/storage/jacket/marine/corporate/blue,
-/obj/item/clothing/suit/storage/jacket/marine/corporate/brown,
-/obj/item/clothing/suit/storage/jacket/marine/corporate/formal,
-/obj/structure/closet/cabinet{
- storage_capacity = 35
- },
-/turf/open/floor/wood/ship,
-/area/almayer/command/corporateliaison)
"cgl" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{
@@ -21516,29 +18020,6 @@
"cgE" = (
/turf/open/floor/almayer,
/area/almayer/living/cryo_cells)
-"cgG" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tank/emergency_oxygen/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
-"cgH" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tank/oxygen/red,
-/obj/item/tool/screwdriver,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
-"cgJ" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
"cgO" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
@@ -21558,11 +18039,15 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
"cgU" = (
-/obj/structure/machinery/light/small{
- dir = 8
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/hull/lower/l_m_p)
"chb" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/sign/safety/maint{
@@ -21591,12 +18076,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie_delta_shared)
-"chi" = (
-/obj/structure/bed/stool,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"chk" = (
/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic,
/turf/open/floor/almayer{
@@ -21634,29 +18113,19 @@
icon_state = "plate"
},
/area/almayer/squads/charlie)
-"chu" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"chv" = (
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"chE" = (
-/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"
+"chC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "orange"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"chL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -21779,6 +18248,16 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha)
+"cif" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/item/tank/emergency_oxygen/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"cil" = (
/obj/structure/machinery/light,
/obj/structure/sign/safety/waterhazard{
@@ -21789,31 +18268,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"cim" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/port_umbilical)
-"cin" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_umbilical)
-"cio" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/port_umbilical)
"cir" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -21855,6 +18309,21 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
+"ciB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = 16;
+ pixel_y = -15
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"ciD" = (
/obj/structure/platform_decoration{
dir = 1
@@ -21863,31 +18332,21 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
+"ciI" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"ciN" = (
/turf/open/floor/almayer{
dir = 6;
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"ciO" = (
-/obj/structure/surface/table/almayer,
-/obj/item/clothing/head/hardhat{
- pixel_y = 15
- },
-/obj/item/clothing/head/hardhat/dblue{
- pixel_x = -7;
- pixel_y = 10
- },
-/obj/item/clothing/head/hardhat{
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/item/clothing/head/hardhat/orange{
- pixel_x = 7;
- pixel_y = -5
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"ciQ" = (
/obj/structure/sign/safety/fire_haz{
pixel_x = 8;
@@ -21895,31 +18354,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"ciT" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"ciU" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/obj/structure/sign/safety/four{
- pixel_x = 31;
- pixel_y = -8
- },
-/obj/structure/sign/safety/ammunition{
- pixel_x = 32;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/port_hallway)
"cjc" = (
/obj/effect/landmark/start/marine/alpha,
/obj/effect/landmark/late_join/alpha,
@@ -21967,59 +18401,11 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
-"cjl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/door/poddoor/almayer{
- id = "s_umbilical";
- name = "\improper Umbillical Airlock";
- unacidable = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
-"cjm" = (
-/obj/structure/machinery/door/poddoor/almayer{
- id = "s_umbilical";
- name = "\improper Umbillical Airlock";
- unacidable = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
-"cjo" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32;
- pixel_y = 6
- },
-/obj/structure/sign/safety/reduction{
- pixel_x = 32;
- pixel_y = -8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"cjt" = (
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"cjw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/hallways/port_hallway)
"cjA" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -22059,41 +18445,6 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"cjK" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
-"cjS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/port_hallway)
-"cjT" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/obj/structure/pipes/vents/scrubber{
- dir = 8
- },
-/obj/structure/sign/safety/escapepod{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/port_hallway)
"cjW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22136,36 +18487,34 @@
icon_state = "silver"
},
/area/almayer/engineering/port_atmos)
-"ckl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
+"cke" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 18
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
-"ckm" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/almayer/maint/hull/upper/u_a_p)
+"ckh" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
},
-/obj/structure/machinery/status_display{
- pixel_x = 32
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
+/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
},
-/area/almayer/hallways/port_hallway)
-"ckq" = (
-/obj/structure/sign/safety/terminal{
- pixel_x = 8;
- pixel_y = 32
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/upper/p_stern)
"ckr" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -22173,21 +18522,6 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
-"ckw" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/u_m_p)
-"ckI" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_x = -28
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"ckK" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -22246,29 +18580,15 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"cla" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/hallways/port_hallway)
-"clb" = (
+"ckZ" = (
/obj/structure/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+ dir = 8
},
+/obj/structure/machinery/power/reactor,
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/engineering/lower/engine_core)
"cle" = (
/turf/open/floor/almayer{
dir = 4;
@@ -22406,45 +18726,6 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"cly" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/safety/maint{
- pixel_x = -17;
- pixel_y = -8
- },
-/obj/structure/sign/safety/storage{
- pixel_x = -17;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/almayer/hallways/port_hallway)
-"clz" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/almayer/hallways/port_hallway)
-"clC" = (
-/obj/structure/stairs,
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/effect/projector{
- name = "Almayer_Up1";
- vector_x = -19;
- vector_y = 98
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"clE" = (
/obj/structure/machinery/door/airlock/almayer/marine/delta/medic,
/turf/open/floor/almayer{
@@ -22504,12 +18785,6 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
-"clR" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/port_hallway)
"clS" = (
/obj/structure/machinery/cm_vending/gear/spec,
/obj/structure/sign/safety/hazard{
@@ -22529,6 +18804,13 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
+"clV" = (
+/obj/structure/machinery/computer/arcade,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
"clW" = (
/obj/structure/machinery/cm_vending/clothing/smartgun/delta,
/turf/open/floor/almayer{
@@ -22560,46 +18842,17 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
-"cmb" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/upper/u_f_s)
-"cmd" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
-"cmg" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
-"cmh" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/disposalpipe/up/almayer{
- dir = 8;
- id = "almayerlink"
+"cme" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
},
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"cml" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -22640,6 +18893,9 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"cmr" = (
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"cmv" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_x = -30
@@ -22677,18 +18933,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
-"cmH" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
"cmI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22728,6 +18972,29 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
+"cmL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"cmN" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"cmV" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"cna" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -22763,18 +19030,6 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"cno" = (
-/obj/structure/stairs,
-/obj/effect/projector{
- name = "Almayer_Up1";
- vector_x = -19;
- vector_y = 98
- },
-/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"cnp" = (
/obj/structure/machinery/light{
dir = 4
@@ -22814,12 +19069,6 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"cnv" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/aft_hallway)
"cnE" = (
/obj/structure/machinery/prop/almayer/computer{
dir = 4;
@@ -22845,6 +19094,15 @@
icon_state = "test_floor4"
},
/area/almayer/command/computerlab)
+"cnI" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"cnM" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -22875,11 +19133,13 @@
},
/area/almayer/living/port_emb)
"cnP" = (
-/obj/structure/sign/safety/cryo{
- pixel_y = -26
+/obj/structure/platform_decoration{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer{
+ icon_state = "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{
@@ -22981,6 +19241,20 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
+"coo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"cop" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/tankerbunks)
@@ -23074,22 +19348,12 @@
},
/turf/open/floor/almayer,
/area/almayer/living/offices)
-"cpw" = (
+"cpz" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/aft_hallway)
-"cpG" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/lower/l_m_s)
"cpJ" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -23111,62 +19375,22 @@
/obj/structure/window/framed/almayer/hull/hijack_bustable,
/turf/open/floor/plating,
/area/almayer/squads/req)
-"cpU" = (
-/obj/structure/surface/rack{
- desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards."
- },
-/obj/structure/machinery/light/small{
- dir = 4;
- status = 3;
- icon_state = "bulb-burned"
- },
-/obj/effect/decal/cleanable/blood,
-/obj/item/prop{
- icon = 'icons/obj/items/bloodpack.dmi';
- icon_state = "bloodpack";
- name = "blood bag";
- desc = "A blood bag with a hole in it. The rats must have gotten to it first."
- },
-/obj/item/prop{
- icon = 'icons/obj/items/bloodpack.dmi';
- icon_state = "bloodpack";
- name = "blood bag";
- desc = "A blood bag with a hole in it. The rats must have gotten to it first."
- },
-/obj/item/prop{
- icon = 'icons/obj/items/bloodpack.dmi';
- icon_state = "bloodpack";
- name = "blood bag";
- desc = "A blood bag with a hole in it. The rats must have gotten to it first."
- },
-/obj/item/prop{
- icon = 'icons/obj/items/circuitboards.dmi';
- icon_state = "id_mod";
- name = "circuit board";
- desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged.";
- layer = 2.78;
- pixel_y = 10;
- pixel_x = 8
- },
-/obj/item/prop{
- icon = 'icons/obj/items/circuitboards.dmi';
- icon_state = "id_mod";
- name = "circuit board";
- desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged.";
- layer = 2.79;
- pixel_y = 7;
- pixel_x = 8
+"cpQ" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
},
-/turf/open/floor/almayer{
- icon_state = "sterile_green_corner"
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
+"cqd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/area/almayer/medical/lower_medical_medbay)
-"cqa" = (
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
+ dir = 1;
+ icon_state = "orangecorner"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/lower/starboard_umbilical)
"cqm" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/folder/white{
@@ -23180,11 +19404,23 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"cqp" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"cqz" = (
/obj/structure/surface/table/almayer,
/obj/item/facepaint/black,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/delta)
+"cqH" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/lower/l_m_s)
"cqJ" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -23216,15 +19452,19 @@
/obj/item/storage/fancy/cigar/tarbacktube,
/turf/open/floor/almayer,
/area/almayer/living/bridgebunks)
-"cre" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
+"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{
- dir = 4;
- icon_state = "green"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/port_midship_hallway)
"crh" = (
/obj/structure/machinery/light{
dir = 1
@@ -23234,6 +19474,15 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"cri" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"crp" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/secure_data{
@@ -23244,39 +19493,22 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"crr" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_a_p)
-"crG" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/effect/spawner/random/tool,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"csl" = (
-/obj/structure/pipes/vents/scrubber,
+"crD" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "greencorner"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/squads/req)
+"csd" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"csI" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"csT" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = -16
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
"csZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -23302,10 +19534,29 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/bravo)
+"cth" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
+"ctp" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = 16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"cts" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"ctw" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"ctx" = (
/obj/structure/bed{
icon_state = "abed"
@@ -23335,15 +19586,11 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"ctC" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
+"ctQ" = (
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
+ icon_state = "silver"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/hallways/lower/repair_bay)
"ctT" = (
/obj/structure/machinery/door/airlock/almayer/security/glass{
dir = 1;
@@ -23356,49 +19603,15 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cryo)
-"ctW" = (
-/obj/structure/surface/rack,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"ctX" = (
-/obj/structure/reagent_dispensers/fueltank/oxygentank{
- anchored = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/engineering/lower/workshop/hangar)
-"cua" = (
-/obj/structure/stairs{
- icon_state = "ramptop"
- },
-/obj/structure/platform{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"cuk" = (
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = 8;
- pixel_y = 18
- },
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = -8;
- pixel_y = 18
+"cui" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/upper/stern_hallway)
"cuq" = (
/obj/structure/machinery/computer/arcade,
/turf/open/floor/wood/ship,
@@ -23424,6 +19637,19 @@
"cuC" = (
/turf/closed/wall/almayer/outer,
/area/almayer/engineering/upper_engineering/starboard)
+"cuI" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"cuN" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -23444,12 +19670,39 @@
icon_state = "test_floor4"
},
/area/almayer/squads/alpha)
-"cvp" = (
-/obj/structure/girder,
+"cva" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Armourer's Workshop";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"cvb" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/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)
+"cvi" = (
+/obj/structure/machinery/vending/hydroseeds,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"cvx" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/lower/cryo_cells)
"cvH" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -23462,12 +19715,10 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"cvL" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/s_bow)
+"cvI" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"cvZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -23477,6 +19728,16 @@
icon_state = "silver"
},
/area/almayer/command/cic)
+"cwi" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"cwo" = (
/obj/structure/largecrate/random/mini/chest{
pixel_x = 4
@@ -23487,26 +19748,14 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/req)
-"cwJ" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"cwQ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 8;
- id = "laddersoutheast";
- name = "\improper South East Ladders Shutters"
+"cwL" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "orange"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"cwS" = (
/obj/structure/blocker/invisible_wall,
/turf/open/floor/almayer/no_build{
@@ -23532,10 +19781,6 @@
icon_state = "tcomms"
},
/area/almayer/command/airoom)
-"cxi" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"cxk" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
@@ -23546,6 +19791,15 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/main_office)
+"cxF" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"cyo" = (
/obj/structure/machinery/vending/cigarette,
/turf/open/floor/almayer{
@@ -23553,13 +19807,39 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"cyG" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
+"cyp" = (
+/obj/structure/machinery/conveyor{
+ id = "lower_garbage"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"cyv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"cyL" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/toolbox,
+/obj/item/storage/firstaid/o2,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/upper/mess)
+"cyR" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"cyU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -23574,13 +19854,38 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"czM" = (
+"czJ" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 15;
+ pixel_y = 32
+ },
/obj/structure/sign/safety/intercom{
- pixel_x = 8;
pixel_y = 32
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"czN" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/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)
"cAm" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -23598,6 +19903,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
+"cAz" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/item/stack/sheet/metal,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"cAF" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -23642,14 +19956,6 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/port)
-"cBl" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"cBm" = (
/obj/effect/projector{
name = "Almayer_AresUp";
@@ -23684,74 +19990,27 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/general_equipment)
-"cBz" = (
+"cBC" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 2
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"cBA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"cBE" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/stack/sheet/mineral/phoron/medium_stack,
-/obj/item/stack/sheet/mineral/phoron/medium_stack{
- pixel_y = 10
- },
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"cBI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/machinery/door_control{
- id = "hangarentrancenorth";
- name = "North Hangar Podlocks";
- pixel_y = -26;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"cBQ" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
-"cBR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+ dir = 5;
+ icon_state = "green"
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/area/almayer/hallways/lower/port_aft_hallway)
+"cBV" = (
+/obj/structure/closet/firecloset,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
},
-/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "greencorner"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/hallways/lower/port_fore_hallway)
"cBZ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door_control{
@@ -23811,9 +20070,22 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"cCG" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
+"cCL" = (
+/obj/effect/landmark/crap_item,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"cDb" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
+ },
+/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"cDn" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/glass{
@@ -23841,6 +20113,15 @@
icon_state = "cargo"
},
/area/almayer/squads/charlie)
+"cDx" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"cDC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23894,6 +20175,21 @@
icon_state = "plating"
},
/area/almayer/command/cic)
+"cEA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"cEC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23916,25 +20212,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie)
-"cER" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
-"cES" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
-"cET" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
-"cFb" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
"cFh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -23963,6 +20240,18 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
+"cFH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"cFP" = (
/obj/structure/sign/safety/outpatient{
pixel_x = -17;
@@ -23972,37 +20261,42 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"cGr" = (
+"cGd" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/u_m_s)
+"cGp" = (
+/obj/structure/machinery/cm_vending/clothing/senior_officer{
+ pixel_y = 0
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
-/area/almayer/hallways/aft_hallway)
-"cGC" = (
+/area/almayer/medical/upper_medical)
+"cGA" = (
/obj/structure/sign/poster{
- pixel_y = 32
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
-"cGP" = (
-/obj/item/toy/deck{
- pixel_y = 12
- },
-/obj/structure/sign/safety/storage{
- pixel_x = 32
+ pixel_y = -32
},
-/obj/structure/surface/table/woodentable/poor,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"cGB" = (
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/l_m_s)
+"cGR" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"cGV" = (
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha_bravo_shared)
+"cGY" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"cHc" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/sign/safety/ladder{
@@ -24025,6 +20319,12 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"cHn" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"cHu" = (
/turf/closed/wall/almayer/research/containment/wall/south,
/area/almayer/medical/containment/cell/cl)
@@ -24055,26 +20355,14 @@
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"cIl" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/card{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
-"cIq" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/item/toy/deck,
+"cIm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
+ dir = 1;
+ icon_state = "greencorner"
},
-/area/almayer/living/offices/flight)
+/area/almayer/hallways/lower/port_fore_hallway)
"cIr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24096,6 +20384,11 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
+"cIO" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"cIW" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
name = "\improper Engineering Engine Monitoring"
@@ -24104,17 +20397,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
-"cIZ" = (
-/obj/structure/closet/crate/freezer{
- desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top."
- },
-/obj/item/reagent_container/food/snacks/mre_pack/xmas2,
-/obj/item/reagent_container/food/snacks/mre_pack/xmas1,
-/obj/item/reagent_container/food/snacks/mre_pack/xmas3,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_stern)
"cJh" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -24124,6 +20406,20 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/brig/cells)
+"cJm" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
+"cJs" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"cJu" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -24136,17 +20432,19 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"cJz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/mess)
"cJE" = (
/obj/structure/sign/prop2,
/turf/closed/wall/almayer,
/area/almayer/shipboard/sea_office)
+"cJK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"cJM" = (
/obj/structure/machinery/door_display/research_cell{
dir = 8;
@@ -24189,24 +20487,46 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
+"cJV" = (
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"cKm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = -8
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_y = 12
+ },
+/obj/item/clothing/head/militia/bucket{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = 8;
+ pixel_y = -1
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"cKL" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "orangecorner"
},
/area/almayer/engineering/upper_engineering/port)
-"cKY" = (
-/obj/structure/machinery/light,
+"cKW" = (
/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
-"cLk" = (
-/obj/structure/largecrate/random/case,
-/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "blue"
},
-/area/almayer/maint/lower/s_bow)
+/area/almayer/hallways/upper/aft_hallway)
"cLl" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -24237,23 +20557,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/stern_point_defense)
-"cLt" = (
-/obj/structure/machinery/optable,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
-"cLx" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"cLA" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -24289,15 +20592,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"cMk" = (
-/obj/structure/machinery/vending/snack{
- density = 0;
- pixel_y = 18
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"cMl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24343,17 +20637,12 @@
icon_state = "orange"
},
/area/almayer/living/briefing)
-"cNn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/m41a{
- pixel_y = 6
- },
-/obj/item/weapon/gun/rifle/m41a,
+"cNm" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/hallways/lower/port_aft_hallway)
"cNH" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/containment{
id = "Containment Cell 4";
@@ -24369,12 +20658,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/containment/cell/cl)
-"cNJ" = (
-/obj/structure/largecrate/random/case,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"cNK" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -24407,10 +20690,26 @@
},
/turf/open/floor/almayer,
/area/almayer/living/grunt_rnr)
-"cOy" = (
-/obj/item/trash/chips,
+"cOh" = (
+/obj/item/stool{
+ pixel_x = 15;
+ pixel_y = 6
+ },
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
+"cOo" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/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)
"cOK" = (
/obj/structure/prop/invuln{
desc = "An inflated membrane. This one is puncture proof. Wow!";
@@ -24424,13 +20723,57 @@
icon_state = "outerhull_dir"
},
/area/almayer/engineering/upper_engineering/starboard)
-"cOM" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = -32
+"cOY" = (
+/obj/item/clothing/under/blackskirt{
+ desc = "A stylish skirt, in a business-black and red colour scheme.";
+ name = "liaison's skirt"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/obj/item/clothing/under/suit_jacket/charcoal{
+ desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike.";
+ name = "liaison's black suit"
+ },
+/obj/item/clothing/under/suit_jacket/navy{
+ desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants.";
+ name = "liaison's navy suit"
+ },
+/obj/item/clothing/under/suit_jacket/trainee,
+/obj/item/clothing/under/liaison_suit/charcoal,
+/obj/item/clothing/under/liaison_suit/blazer,
+/obj/item/clothing/suit/storage/snow_suit/liaison,
+/obj/item/clothing/gloves/black,
+/obj/item/clothing/gloves/marine/dress,
+/obj/item/clothing/glasses/sunglasses/big,
+/obj/item/clothing/accessory/blue,
+/obj/item/clothing/accessory/red,
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/item/clothing/accessory/black,
+/obj/item/clothing/accessory/green,
+/obj/item/clothing/accessory/gold,
+/obj/item/clothing/accessory/purple,
+/obj/item/clothing/under/liaison_suit/corporate_formal,
+/obj/item/clothing/under/liaison_suit/field,
+/obj/item/clothing/under/liaison_suit/ivy,
+/obj/item/clothing/under/liaison_suit/blue,
+/obj/item/clothing/under/liaison_suit/brown,
+/obj/item/clothing/under/liaison_suit/black,
+/obj/item/clothing/suit/storage/jacket/marine/vest,
+/obj/item/clothing/suit/storage/jacket/marine/vest/grey,
+/obj/item/clothing/suit/storage/jacket/marine/vest/tan,
+/obj/item/clothing/suit/storage/jacket/marine/bomber,
+/obj/item/clothing/suit/storage/jacket/marine/bomber/red,
+/obj/item/clothing/suit/storage/jacket/marine/bomber/grey,
+/obj/item/clothing/suit/storage/jacket/marine/corporate,
+/obj/item/clothing/suit/storage/jacket/marine/corporate/black,
+/obj/item/clothing/suit/storage/jacket/marine/corporate/blue,
+/obj/item/clothing/suit/storage/jacket/marine/corporate/brown,
+/obj/item/clothing/suit/storage/jacket/marine/corporate/formal,
+/obj/structure/closet/cabinet{
+ storage_capacity = 35
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliaison)
"cPg" = (
/obj/structure/sign/safety/north{
pixel_x = 32;
@@ -24445,14 +20788,10 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"cPy" = (
-/obj/item/tool/minihoe{
- pixel_x = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
+"cPj" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/p_bow)
"cPK" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -24465,6 +20804,23 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
+"cPP" = (
+/obj/structure/sign/poster/pinup{
+ pixel_x = -30
+ },
+/obj/structure/sign/poster/hunk{
+ pixel_x = -25;
+ pixel_y = 10
+ },
+/obj/item/trash/buritto,
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"cQc" = (
/turf/open/floor/almayer{
dir = 1;
@@ -24559,15 +20915,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"cSi" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"cSk" = (
/obj/structure/machinery/door/window/southleft,
/turf/open/floor/almayer{
@@ -24575,18 +20922,6 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
-"cSl" = (
-/obj/structure/surface/table/almayer,
-/obj/item/stack/rods/plasteel{
- amount = 36
- },
-/obj/item/stack/catwalk{
- amount = 60;
- pixel_x = 5;
- pixel_y = 4
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"cSm" = (
/obj/structure/sign/safety/ladder{
pixel_x = 8;
@@ -24608,6 +20943,30 @@
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
+"cSH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
+"cSM" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"cSP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"cSQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24625,18 +20984,6 @@
icon_state = "plate"
},
/area/almayer/living/captain_mess)
-"cTb" = (
-/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
-"cTc" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"cTf" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -24653,24 +21000,59 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"cUf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"cTM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/light/small{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/mess)
+"cTX" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/cryo_cells)
+"cUl" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"cVb" = (
/obj/structure/machinery/sentry_holder/almayer,
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
+"cVf" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"cVq" = (
/obj/structure/machinery/power/apc/almayer/hardened{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/command/corporateliaison)
+"cVt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"cVw" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -24691,12 +21073,47 @@
icon_state = "plate"
},
/area/almayer/living/gym)
+"cVT" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"cVZ" = (
-/obj/structure/largecrate/random/barrel/yellow,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
+"cWb" = (
+/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/lower/stern)
+"cWm" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/adv/empty,
+/obj/item/storage/firstaid/adv/empty,
+/obj/item/storage/firstaid/adv/empty,
+/obj/structure/sign/safety/med_life_support{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"cWo" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"cWr" = (
/obj/structure/machinery/photocopier{
density = 0;
@@ -24749,16 +21166,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"cWt" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- id = "InnerShutter";
- name = "\improper Saferoom Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/panic)
"cWv" = (
/turf/open/floor/almayer{
dir = 8;
@@ -24784,78 +21191,17 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"cWF" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- dir = 1;
- req_one_access = null;
- req_one_access_txt = "2;7"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"cWP" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/crate,
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
+"cXd" = (
+/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/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
-"cXh" = (
-/obj/structure/prop/almayer/computers/sensor_computer3,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/upper/u_m_s)
"cXi" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -24871,12 +21217,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"cXy" = (
-/obj/structure/closet/emcloset,
+"cXm" = (
+/obj/structure/largecrate/supply/supplies/mre,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/lower/l_m_s)
"cXC" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -24915,12 +21261,27 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
+"cXX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"cXY" = (
/obj/item/stack/catwalk,
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"cYo" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"cYu" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -24953,6 +21314,9 @@
icon_state = "test_floor4"
},
/area/almayer/lifeboat_pumps/south1)
+"cZe" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/u_f_s)
"cZh" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -24977,16 +21341,35 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"cZm" = (
-/obj/structure/machinery/light{
- dir = 1
+"cZp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"cZw" = (
-/obj/item/tool/wet_sign,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/lower/l_a_p)
+"cZB" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
+"cZI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"cZO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"cZV" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/storage/fancy/cigarettes/wypacket,
@@ -25022,30 +21405,15 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"dac" = (
-/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"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
-"dan" = (
-/obj/structure/ladder{
- height = 2;
- id = "cicladder4"
- },
-/turf/open/floor/plating/almayer,
-/area/almayer/medical/medical_science)
"daz" = (
/turf/closed/wall/almayer/white/hull,
/area/almayer/command/airoom)
+"daF" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"dbc" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -25069,13 +21437,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"dbj" = (
-/obj/structure/largecrate/supply/supplies/tables_racks,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"dbn" = (
/obj/structure/surface/table/almayer,
/obj/item/spacecash/c200{
@@ -25135,6 +21496,12 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
+"dbX" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
"dcd" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -25162,12 +21529,28 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
+"dcx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_umbilical)
"dcy" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "red"
},
/area/almayer/shipboard/brig/perma)
+"dcT" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"dcZ" = (
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
"ddf" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
/turf/open/floor/almayer{
@@ -25180,6 +21563,12 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
+"ddp" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"ddw" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/structure/sign/safety/terminal{
@@ -25189,31 +21578,39 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop/hangar)
+"ddx" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"ddz" = (
/obj/structure/sign/safety/maint{
pixel_x = 32
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/weapon_room)
-"ddC" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"ddF" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
},
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_a_p)
+"ddL" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"ddM" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"ddN" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1;
- name = "\improper Tool Closet"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"deg" = (
/obj/structure/platform_decoration{
dir = 1
@@ -25222,26 +21619,23 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
-"dej" = (
-/obj/structure/machinery/door_control{
- id = "OuterShutter";
- name = "Outer Shutter";
- pixel_x = 5;
- pixel_y = -2;
- req_one_access_txt = "1;3"
+"deq" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/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"
+/area/almayer/maint/hull/lower/l_m_s)
+"deA" = (
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = -17
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/shipboard/panic)
+/area/almayer/maint/upper/u_m_s)
"deD" = (
/obj/structure/machinery/prop/almayer/CICmap{
pixel_x = -5
@@ -25249,14 +21643,10 @@
/obj/structure/surface/table/reinforced/black,
/turf/open/floor/almayer,
/area/almayer/command/cic)
-"deH" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = -28
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+"deF" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"deT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -25273,19 +21663,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/morgue)
-"dfc" = (
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/obj/structure/sign/safety/airlock{
- pixel_y = -32
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_umbilical)
"dfg" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -25309,38 +21686,12 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
-"dfv" = (
-/obj/structure/closet/crate/freezer{
- desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza."
- },
-/obj/item/storage/beer_pack,
-/obj/item/reagent_container/food/drinks/cans/beer,
-/obj/item/reagent_container/food/drinks/cans/beer,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_stern)
"dfC" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"dfE" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_10";
- pixel_y = 14
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/medical/upper_medical)
"dfO" = (
/obj/structure/machinery/medical_pod/bodyscanner{
dir = 8
@@ -25383,6 +21734,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
+"dgP" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"dha" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -25400,11 +21757,6 @@
icon_state = "plating_striped"
},
/area/almayer/shipboard/brig/execution)
-"dhe" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"dho" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -25418,6 +21770,19 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
+"dhp" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"dhQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_umbilical)
"dhR" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
dir = 4;
@@ -25428,30 +21793,19 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"dhU" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/port_hallway)
-"dhZ" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
+"div" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/sign/safety/airlock{
- pixel_x = 15;
- pixel_y = 32
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddernortheast";
+ name = "\improper North East Ladders Shutters"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/starboard_umbilical)
-"diy" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/s_stern)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"diz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
id_tag = "Boat1-D4";
@@ -25487,6 +21841,13 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/lobby)
+"djd" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"djQ" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -25506,23 +21867,21 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
-"djW" = (
-/obj/structure/window/framed/almayer,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 4;
- id = "OfficeSafeRoom";
- name = "\improper Office Safe Room"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"dka" = (
/obj/structure/machinery/optable,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_four)
+"dkj" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio/intercom/alamo{
+ layer = 2.9
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/living/offices/flight)
"dkq" = (
/obj/structure/machinery/door_control{
id = "hangarentrancenorth";
@@ -25540,10 +21899,36 @@
icon_state = "red"
},
/area/almayer/living/briefing)
-"dkv" = (
-/obj/structure/largecrate/supply/supplies/tables_racks,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+"dkt" = (
+/obj/structure/surface/rack,
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = 5;
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = 5;
+ pixel_y = -3
+ },
+/obj/structure/noticeboard{
+ desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'";
+ pixel_y = 29
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"dkO" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down2";
@@ -25560,16 +21945,12 @@
allow_construction = 0
},
/area/almayer/stair_clone/upper)
-"dkR" = (
-/obj/structure/surface/rack,
-/obj/structure/ob_ammo/ob_fuel,
-/obj/structure/ob_ammo/ob_fuel,
-/obj/structure/ob_ammo/ob_fuel,
-/obj/structure/ob_ammo/ob_fuel,
+"dkP" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "orangecorner"
},
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"dkX" = (
/obj/structure/bed/chair/comfy/delta,
/obj/effect/decal/cleanable/dirt,
@@ -25577,31 +21958,18 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
-"dle" = (
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"dll" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"dlt" = (
-/obj/structure/sign/safety/autoopenclose{
- pixel_x = 7;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
-"dlW" = (
-/obj/structure/bed/sofa/south/grey{
- pixel_y = 12
+"dlT" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/upper/aft_hallway)
"dmg" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/sign/safety/coffee{
@@ -25630,6 +21998,17 @@
icon_state = "cargo"
},
/area/almayer/squads/req)
+"dmF" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
"dmR" = (
/obj/effect/glowshroom,
/obj/effect/glowshroom{
@@ -25667,6 +22046,13 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
+"dni" = (
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"dnm" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer,
/obj/structure/machinery/light{
@@ -25700,6 +22086,13 @@
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/starboard)
+"dnP" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"dnS" = (
/obj/structure/safe,
/turf/open/floor/almayer{
@@ -25707,13 +22100,19 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
-"dnW" = (
-/obj/item/reagent_container/food/snacks/wrapped/barcardine,
-/obj/structure/surface/rack,
+"dnZ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "plating_striped"
},
-/area/almayer/maint/hull/upper/p_stern)
+/area/almayer/maint/hull/lower/l_a_p)
"dod" = (
/obj/structure/closet/crate/trashcart,
/turf/open/floor/almayer,
@@ -25747,12 +22146,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"doM" = (
-/obj/structure/sign/safety/water{
- pixel_x = -17
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
"doP" = (
/obj/structure/disposaloutlet{
density = 0;
@@ -25774,12 +22167,6 @@
/obj/structure/surface/rack,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"doX" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"dpo" = (
/obj/structure/machinery/light{
dir = 1
@@ -25795,20 +22182,27 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
-"dpD" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"dpM" = (
-/obj/structure/sign/safety/autoopenclose{
- pixel_y = 32
+"dpA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/sign/safety/water{
- pixel_x = 15;
- pixel_y = 32
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"dpN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"dpO" = (
/obj/structure/machinery/cm_vending/clothing/marine/delta{
density = 0;
@@ -25819,6 +22213,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/delta)
+"dpS" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"dqb" = (
/obj/structure/sign/safety/security{
pixel_x = -16
@@ -25863,13 +22263,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/offices)
-"dqN" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"dqZ" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/chief_mp_office)
@@ -25893,18 +22286,16 @@
icon_state = "silver"
},
/area/almayer/engineering/port_atmos)
-"drQ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"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{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/lower/l_m_s)
"drT" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -25925,26 +22316,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/hydroponics)
-"dsk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"dsp" = (
-/obj/structure/sign/safety/bathunisex{
- pixel_x = -18
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
"dsA" = (
/obj/effect/decal/cleanable/blood,
/turf/open/floor/almayer{
@@ -25952,18 +22323,17 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/execution)
+"dsY" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"dtH" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"dtM" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"dtZ" = (
/obj/structure/platform_decoration{
dir = 4
@@ -26046,18 +22416,14 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"duP" = (
-/obj/structure/surface/table/almayer,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
+"duR" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
},
-/area/almayer/engineering/lower/engine_core)
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"duT" = (
/obj/structure/bed,
/obj/structure/machinery/flasher{
@@ -26078,20 +22444,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
-"duX" = (
-/obj/structure/bed/chair/office/dark,
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/shipboard/panic)
"dvg" = (
/obj/structure/reagent_dispensers/fueltank/custom,
/obj/structure/sign/safety/chem_lab{
@@ -26102,14 +22454,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/chemistry)
-"dvi" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/powercell,
-/obj/effect/spawner/random/powercell,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
"dvl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -26129,46 +22473,31 @@
icon_state = "cargo"
},
/area/almayer/living/cryo_cells)
-"dvx" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
+"dvD" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_p)
-"dvD" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+/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{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_m_p)
-"dvN" = (
-/obj/structure/machinery/vending/coffee,
-/obj/item/toy/bikehorn/rubberducky{
- desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!";
- name = "Quackers";
- pixel_x = 5;
- pixel_y = 17
+/area/almayer/maint/upper/mess)
+"dwj" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/light{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"dwl" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"dwn" = (
-/obj/structure/window/reinforced{
- dir = 8;
- health = 80
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"dwr" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/centrifuge{
@@ -26196,20 +22525,15 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
-"dwU" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"dwJ" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
},
-/area/almayer/maint/hull/lower/l_m_s)
-"dwX" = (
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 6;
+ icon_state = "red"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/hallways/upper/stern_hallway)
"dxu" = (
/obj/structure/sink{
dir = 1;
@@ -26235,6 +22559,17 @@
allow_construction = 0
},
/area/almayer/stair_clone/upper)
+"dxJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"dxK" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -26303,6 +22638,15 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"dyq" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"dyx" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 2;
@@ -26320,6 +22664,11 @@
icon_state = "plating"
},
/area/almayer/squads/req)
+"dyJ" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"dyK" = (
/obj/structure/machinery/light{
dir = 8
@@ -26332,61 +22681,26 @@
"dzp" = (
/turf/open/floor/almayer,
/area/almayer/command/corporateliaison)
-"dzF" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 8;
- id = "laddernortheast";
- name = "\improper North East Ladders Shutters"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
"dzG" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 26
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/general_equipment)
-"dzS" = (
-/obj/structure/surface/rack,
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = -6;
- pixel_y = 7
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = -6;
- pixel_y = -3
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = 5;
- pixel_y = 9
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = 5;
- pixel_y = -3
- },
-/obj/structure/noticeboard{
- desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'";
- pixel_y = 29
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"dzX" = (
+/obj/structure/sign/safety/water{
+ pixel_x = -17
},
-/area/almayer/maint/hull/upper/u_m_s)
-"dzU" = (
-/obj/structure/machinery/light/small{
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
+"dAm" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"dAq" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/disposalpipe/segment{
@@ -26399,6 +22713,24 @@
icon_state = "test_floor4"
},
/area/almayer/squads/bravo)
+"dAr" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 14;
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"dAA" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"dAQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
@@ -26421,6 +22753,20 @@
icon_state = "plate"
},
/area/almayer/command/cic)
+"dBg" = (
+/obj/structure/stairs{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
+ },
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"dBj" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -26492,6 +22838,21 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/chief_mp_office)
+"dBR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/light,
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "7;23;27;102"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"dBS" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -26503,14 +22864,24 @@
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/execution)
"dCb" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/cameras/almayer{
- dir = 1
+/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{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "silver"
},
-/area/almayer/shipboard/panic)
+/area/almayer/hallways/upper/aft_hallway)
"dCe" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -26548,6 +22919,13 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
+"dCz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wrench{
+ pixel_y = 2
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"dCD" = (
/obj/structure/sign/nosmoking_2{
pixel_x = 32
@@ -26565,17 +22943,29 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/cichallway)
-"dDd" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"dDo" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/obj/effect/step_trigger/clone_cleaner,
+"dCM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/hallways/lower/port_aft_hallway)
+"dDc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"dDp" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -26599,6 +22989,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
+"dDJ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/stern)
"dDL" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/research/main_terminal{
@@ -26625,24 +23021,12 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
-"dDQ" = (
-/obj/structure/surface/rack,
-/obj/item/tool/wirecutters,
-/obj/item/tool/shovel/snow,
+"dDT" = (
+/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
-"dDR" = (
-/obj/structure/surface/table/almayer,
-/obj/item/paper_bin{
- pixel_x = -6;
- pixel_y = 7
- },
-/obj/item/tool/pen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/maint/hull/lower/stern)
"dEm" = (
/obj/structure/machinery/power/apc/almayer,
/obj/effect/decal/warning_stripes{
@@ -26664,6 +23048,16 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
+"dEo" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"dEp" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/cryo_cells)
"dEt" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -26674,16 +23068,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/port)
-"dEC" = (
-/obj/structure/sign/safety/escapepod{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/starboard_hallway)
"dEG" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -26700,6 +23084,23 @@
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/north2)
+"dEK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
+"dEL" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"dEQ" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/tabasco,
@@ -26717,6 +23118,11 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
+"dFd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"dFk" = (
/turf/open/floor/almayer{
dir = 8;
@@ -26729,15 +23135,23 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/sea_office)
-"dFH" = (
+"dFL" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"dFM" = (
/obj/structure/machinery/light{
dir = 8
},
-/obj/structure/bed/chair/bolted,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/shipboard/brig/perma)
+/area/almayer/hallways/lower/vehiclehangar)
"dFR" = (
/turf/open/floor/almayer{
dir = 9;
@@ -26751,18 +23165,21 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/main_office)
"dFW" = (
-/obj/structure/machinery/light/small{
- dir = 8
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/cell_charger,
+/obj/item/cell/apc,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -12;
- pixel_y = 13
+/area/almayer/maint/hull/lower/l_f_p)
+"dGg" = (
+/obj/structure/bed/chair{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/upper/u_m_s)
"dGl" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_AresUp";
@@ -26800,6 +23217,19 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"dGP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "3;22;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"dGU" = (
/obj/structure/sign/poster/propaganda{
pixel_x = -27
@@ -26906,19 +23336,42 @@
icon_state = "test_floor4"
},
/area/almayer/squads/alpha)
-"dJm" = (
-/obj/structure/largecrate/random/barrel/blue,
+"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{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/maint/hull/upper/u_a_p)
+"dJy" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"dJF" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"dJG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"dJI" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 4
@@ -26931,38 +23384,17 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"dKm" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- layer = 3.33;
- pixel_x = 2
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- layer = 3.33;
- pixel_y = 2
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/hallways/stern_hallway)
"dKp" = (
/turf/open/floor/almayer/research/containment/corner{
dir = 4
},
/area/almayer/medical/containment/cell/cl)
+"dKD" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"dKK" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -26976,6 +23408,27 @@
"dKL" = (
/turf/closed/wall/almayer/outer,
/area/almayer/engineering/airmix)
+"dKO" = (
+/obj/structure/machinery/door_control{
+ id = "panicroomback";
+ name = "\improper Safe Room";
+ pixel_x = 25;
+ req_one_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
+"dKS" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"dLc" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -27006,38 +23459,12 @@
icon_state = "plating_striped"
},
/area/almayer/shipboard/sea_office)
-"dLx" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
- },
-/obj/structure/sign/safety/bathunisex{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"dLz" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/south1)
-"dLE" = (
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"dMf" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/photo_album{
@@ -27088,12 +23515,6 @@
},
/turf/open/floor/plating,
/area/almayer/living/cryo_cells)
-"dNy" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"dNM" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
@@ -27104,6 +23525,13 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
+"dNW" = (
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"dNZ" = (
/obj/structure/machinery/light{
dir = 1
@@ -27135,37 +23563,53 @@
icon_state = "plate"
},
/area/almayer/living/captain_mess)
-"dOr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/largecrate/random/case/double,
+"dOG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"dOX" = (
-/obj/structure/bed/chair/comfy/beige{
- dir = 4
+/area/almayer/hallways/lower/port_midship_hallway)
+"dON" = (
+/obj/item/stack/cable_coil{
+ pixel_x = 1;
+ pixel_y = 10
+ },
+/obj/item/trash/pistachios,
+/obj/item/tool/screwdriver,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"dOW" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"dPd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 5;
+ pixel_y = 10
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"dPf" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass{
- access_modified = 1;
- dir = 2;
- name = "Firing Range";
- req_access = null;
- req_one_access_txt = "2;4;7;9;21"
+/area/almayer/maint/hull/upper/u_f_p)
+"dPk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 8
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/disposalpipe/segment,
+/area/almayer/hallways/lower/starboard_umbilical)
+"dPl" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 4;
+ icon_state = "red"
},
-/area/almayer/living/cryo_cells)
+/area/almayer/maint/hull/upper/u_a_p)
"dPm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -27174,6 +23618,14 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"dPq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/sheet/cardboard{
+ amount = 50;
+ pixel_x = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"dPC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -27189,6 +23641,12 @@
icon_state = "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)
"dPQ" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/pen,
@@ -27242,15 +23700,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
-"dQs" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"dQv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -27268,13 +23717,12 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/lower)
-"dRf" = (
-/obj/structure/largecrate/random/case/double,
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"dQV" = (
+/obj/structure/machinery/light{
+ dir = 1
},
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"dRh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -27285,6 +23733,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/hydroponics)
+"dRo" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/bridge{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"dRs" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
@@ -27300,18 +23761,6 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
-"dRw" = (
-/obj/structure/surface/rack,
-/obj/item/tool/crowbar,
-/obj/item/tool/weldingtool,
-/obj/item/tool/wrench,
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"dRD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/almayer/security{
@@ -27324,29 +23773,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/offices/flight)
-"dRE" = (
-/obj/structure/largecrate/random,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"dRG" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/starboard_hallway)
-"dRN" = (
-/obj/structure/machinery/light/small,
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
"dRP" = (
/obj/structure/bed/chair/comfy/orange,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27364,6 +23790,18 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
+"dSm" = (
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"dSp" = (
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
@@ -27374,19 +23812,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"dSC" = (
-/obj/structure/largecrate/random/secure,
-/obj/item/weapon/baseballbat/metal{
- pixel_x = -2;
- pixel_y = 8
- },
-/obj/item/clothing/glasses/sunglasses{
- pixel_y = 5
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"dSJ" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -27409,6 +23834,16 @@
icon_state = "rasputin3"
},
/area/almayer/powered/agent)
+"dTd" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddernortheast";
+ name = "\improper North East Ladders Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"dTn" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -27439,22 +23874,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"dUf" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"dUA" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/tool,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"dUE" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -27520,6 +23939,21 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"dVH" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"dVO" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
@@ -27529,6 +23963,23 @@
icon_state = "plate"
},
/area/almayer/living/offices)
+"dVR" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "AftPortMaint"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/upper/u_a_p)
+"dWc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"dWg" = (
/obj/effect/landmark/start/cargo,
/obj/structure/machinery/light,
@@ -27540,6 +23991,31 @@
icon_state = "bluecorner"
},
/area/almayer/living/basketball)
+"dWA" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
+"dWJ" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"dWX" = (
/obj/structure/machinery/light{
dir = 8
@@ -27548,18 +24024,12 @@
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/starboard)
-"dXc" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
- },
-/obj/item/clipboard,
-/obj/item/paper,
-/obj/item/tool/pen,
+"dXb" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/lower/cryo_cells)
"dXd" = (
/obj/item/storage/fancy/cigarettes/kpack,
/obj/structure/surface/rack,
@@ -27570,10 +24040,6 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
-"dXm" = (
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"dXo" = (
/obj/structure/surface/table/almayer,
/obj/item/device/taperecorder,
@@ -27599,6 +24065,14 @@
icon_state = "plate"
},
/area/almayer/squads/req)
+"dXH" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/camera_film{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
"dXI" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
name = "\improper Exterior Airlock";
@@ -27608,17 +24082,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/stern_point_defense)
-"dXU" = (
-/obj/item/tool/warning_cone{
- pixel_x = -20;
- pixel_y = 18
- },
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice12";
- pixel_y = -16
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"dXV" = (
/obj/structure/desertdam/decals/road_edge{
pixel_x = 16
@@ -27638,6 +24101,19 @@
icon_state = "blue"
},
/area/almayer/living/pilotbunks)
+"dYb" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"dYc" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"dYu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -27655,13 +24131,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"dYM" = (
-/obj/effect/decal/cleanable/blood/oil/streak,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"dYR" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/reagentgrinder{
@@ -27669,6 +24138,30 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
+"dYU" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/cobweb{
+ dir = 8;
+ plane = -6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_container/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner"
+ },
+/obj/item/reagent_container/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner"
+ },
+/obj/item/reagent_container/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
"dYX" = (
/obj/structure/machinery/door/airlock/almayer/marine/bravo{
dir = 1
@@ -27681,12 +24174,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
-"dZd" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"dZr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27705,16 +24192,28 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"dZT" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
+"dZP" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
},
-/obj/structure/disposalpipe/segment,
+/area/almayer/hallways/upper/aft_hallway)
+"dZR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/upper/stern_hallway)
+"dZZ" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"eaf" = (
/obj/structure/machinery/cm_vending/clothing/military_police{
density = 0;
@@ -27745,6 +24244,12 @@
dir = 4
},
/area/almayer/medical/containment/cell)
+"ear" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"eas" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27761,10 +24266,33 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
+"eaz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"ebd" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
+"ebf" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza."
+ },
+/obj/item/storage/beer_pack,
+/obj/item/reagent_container/food/drinks/cans/beer,
+/obj/item/reagent_container/food/drinks/cans/beer,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
"ebn" = (
/obj/structure/sign/safety/airlock{
pixel_x = 15;
@@ -27799,30 +24327,35 @@
icon_state = "sterile_green_side"
},
/area/almayer/shipboard/brig/surgery)
-"ebz" = (
-/obj/structure/closet/emcloset,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
-"ebL" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_container/food/snacks/tomatomeat,
-/obj/item/reagent_container/food/snacks/tomatomeat,
-/obj/item/reagent_container/food/snacks/tomatomeat,
+"ebI" = (
+/obj/item/clothing/shoes/red,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/upper/u_m_p)
"ebN" = (
/turf/closed/wall/almayer/white/reinforced,
/area/almayer/command/airoom)
-"ecf" = (
-/obj/structure/largecrate/random/case/small,
+"ebV" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
+"ecb" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
+"ecj" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/lower/l_m_p)
"eco" = (
/obj/structure/sign/safety/restrictedarea{
pixel_x = -17;
@@ -27836,19 +24369,24 @@
"ecr" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/living/captain_mess)
-"ecR" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"ecz" = (
+/obj/structure/machinery/light{
+ dir = 8
},
-/obj/structure/pipes/vents/pump{
- dir = 1
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"ecS" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/maint/hull/lower/s_bow)
"ecZ" = (
/obj/structure/ladder{
height = 1;
@@ -27859,14 +24397,11 @@
},
/area/almayer/shipboard/navigation)
"edn" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/structure/sign/poster/ad{
- pixel_x = 30
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/wood/ship,
-/area/almayer/command/corporateliaison)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"edo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -27879,15 +24414,16 @@
icon_state = "sterile_green"
},
/area/almayer/medical/medical_science)
-"edx" = (
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = 8;
- pixel_y = 32
- },
+"edG" = (
+/obj/structure/largecrate/random/barrel/yellow,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/maint/hull/upper/u_m_p)
+"edV" = (
+/obj/structure/machinery/power/terminal,
+/turf/open/floor/almayer,
+/area/almayer/maint/upper/mess)
"eed" = (
/turf/open/floor/almayer{
icon_state = "mono"
@@ -27949,30 +24485,44 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"eeL" = (
-/obj/structure/flora/pottedplant{
- desc = "Life is underwhelming, especially when you're a potted plant.";
- icon_state = "pottedplant_22";
- name = "Jerry";
- pixel_y = 8
- },
-/obj/item/clothing/glasses/sunglasses/prescription{
- pixel_x = -3;
- pixel_y = -3
+"eeA" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/machinery/light/small{
- dir = 4
+/area/almayer/maint/hull/upper/s_bow)
+"eeC" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/stern)
+"eeR" = (
+/obj/structure/surface/rack,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"efj" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"efk" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "s_umbilical";
+ name = "\improper Umbillical Airlock";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"efC" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -27982,6 +24532,11 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
+"efJ" = (
+/obj/item/tool/wet_sign,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"efK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27993,6 +24548,20 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
+"efP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck{
+ pixel_y = 14
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ layer = 3.7;
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"efT" = (
/obj/structure/machinery/atm{
pixel_y = 32
@@ -28026,12 +24595,6 @@
/obj/structure/platform_decoration,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"egq" = (
-/obj/structure/sign/safety/ladder{
- pixel_x = -16
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"egt" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Chapel"
@@ -28046,17 +24609,34 @@
icon_state = "test_floor4"
},
/area/almayer/living/chapel)
-"egM" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"egW" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
+"egD" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"egQ" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/upper/u_m_p)
"ehc" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
@@ -28089,14 +24669,6 @@
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/alpha)
-"ehH" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 2;
- pixel_y = 3
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"ehL" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/sign/safety/maint{
@@ -28115,6 +24687,14 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/starboard)
+"ehM" = (
+/obj/structure/surface/rack,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"ehR" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -28211,16 +24791,15 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"eje" = (
-/obj/structure/closet,
-/obj/item/reagent_container/food/drinks/bottle/sake,
-/obj/item/newspaper,
-/obj/item/clothing/gloves/yellow,
-/obj/item/stack/tile/carpet{
- amount = 20
+"ejj" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/tool/wrench{
+ pixel_x = -2;
+ pixel_y = -1
},
-/obj/structure/machinery/light/small{
- dir = 8
+/obj/item/tool/wrench{
+ pixel_x = 2;
+ pixel_y = 7
},
/turf/open/floor/almayer{
icon_state = "plate"
@@ -28239,12 +24818,6 @@
icon_state = "plate"
},
/area/almayer/squads/charlie)
-"ejp" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/aft_hallway)
"ejt" = (
/turf/open/floor/almayer/uscm/directional{
dir = 4
@@ -28254,6 +24827,17 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/living/grunt_rnr)
+"ejV" = (
+/obj/structure/closet,
+/obj/item/device/flashlight/pen,
+/obj/item/attachable/reddot,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"ejY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -28264,7 +24848,7 @@
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
"ekz" = (
-/obj/structure/platform,
+/obj/structure/girder/displaced,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -28278,6 +24862,22 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"ekM" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
+"ekR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"ekY" = (
/obj/structure/machinery/door/airlock/almayer/generic/glass{
name = "\improper Memorial Room"
@@ -28309,12 +24909,6 @@
"elx" = (
/turf/open/floor/almayer,
/area/almayer/engineering/lower)
-"elA" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"elE" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -28327,23 +24921,26 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_one)
-"elF" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- dir = 1;
- name = "\improper Starboard Viewing Room"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_f_s)
"elR" = (
/turf/closed/wall/almayer/research/containment/wall/corner{
dir = 1
},
/area/almayer/medical/containment/cell)
+"elY" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"eme" = (
/obj/structure/pipes/vents/pump{
dir = 4
@@ -28352,6 +24949,14 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/upper_medical)
+"eml" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"emn" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
@@ -28371,6 +24976,19 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/briefing)
+"emw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
+"emA" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/l_a_s)
+"emC" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/l_f_p)
"emK" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
@@ -28378,20 +24996,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"emX" = (
-/obj/structure/largecrate/random,
-/obj/item/reagent_container/food/snacks/cheesecakeslice{
- pixel_y = 8
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"ene" = (
/turf/open/floor/almayer{
dir = 4;
@@ -28406,31 +25010,72 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"enq" = (
-/obj/structure/largecrate/random/barrel/red,
+"enz" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/sign/safety/bridge{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"enF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
+"enK" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"enQ" = (
+/obj/structure/surface/rack,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/frame/table,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_s)
-"enx" = (
-/obj/structure/pipes/vents/pump,
-/obj/structure/machinery/status_display{
- pixel_y = 30
+/area/almayer/maint/hull/lower/l_m_p)
+"enY" = (
+/obj/item/storage/firstaid,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
+"eob" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/starboard_hallway)
-"enA" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+/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{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/hallways/lower/port_midship_hallway)
+"eoE" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"eoG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -28438,25 +25083,19 @@
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/port)
-"epp" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/wirecutters/clippers,
-/obj/item/handcuffs/zip,
+"eoK" = (
+/obj/structure/machinery/optable,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
-"epq" = (
-/obj/structure/surface/rack,
-/obj/item/clothing/head/headband/red{
- pixel_x = 4;
- pixel_y = 8
- },
-/obj/item/clothing/glasses/regular/hipster,
+/area/almayer/maint/hull/upper/p_stern)
+"epk" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tank/emergency_oxygen/double,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/hallways/lower/port_umbilical)
"epu" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -28477,13 +25116,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"epW" = (
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lockerroom)
"eqb" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/stamp/denied{
@@ -28510,12 +25142,27 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
-"eqh" = (
-/obj/structure/sign/poster{
- pixel_y = 32
+"eqd" = (
+/obj/item/stack/folding_barricade/three,
+/obj/item/stack/folding_barricade/three,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/shipboard/panic)
+"eqm" = (
+/obj/structure/prop/almayer/computers/sensor_computer2,
+/obj/structure/machinery/door_control{
+ id = "Secretroom";
+ indestructible = 1;
+ layer = 2.5;
+ name = "Shutters";
+ use_power = 0
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"eqB" = (
/obj/item/bedsheet/brown{
layer = 3.2
@@ -28569,12 +25216,6 @@
icon_state = "test_floor5"
},
/area/almayer/squads/req)
-"era" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"erd" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -28584,6 +25225,12 @@
dir = 1
},
/area/almayer/medical/containment/cell/cl)
+"ere" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"erh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -28611,6 +25258,14 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
+"erE" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/stern)
"erF" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/toxin{
@@ -28631,6 +25286,25 @@
/obj/effect/landmark/late_join/delta,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/delta)
+"erL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/crushed_cup,
+/obj/item/reagent_container/food/drinks/cup{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/item/spacecash/c10{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/item/ashtray/plastic{
+ pixel_x = 5;
+ pixel_y = -10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"erN" = (
/obj/structure/machinery/light{
dir = 8
@@ -28642,48 +25316,24 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"erR" = (
-/obj/structure/machinery/light/small{
+"esd" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
-"erS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_umbilical)
-"esi" = (
-/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
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
-"esl" = (
-/obj/structure/reagent_dispensers/water_cooler/stacks{
- density = 0;
- pixel_y = 17
+ icon_state = "test_floor4"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
+/area/almayer/hallways/lower/port_midship_hallway)
+"esm" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"esC" = (
/obj/structure/toilet{
pixel_y = 13
@@ -28728,11 +25378,6 @@
dir = 9
},
/area/almayer/command/lifeboat)
-"esV" = (
-/obj/effect/landmark/start/researcher,
-/obj/effect/landmark/late_join/researcher,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/offices)
"etf" = (
/turf/open/floor/almayer{
dir = 1;
@@ -28775,11 +25420,11 @@
},
/area/almayer/engineering/upper_engineering)
"ety" = (
+/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- dir = 6;
- icon_state = "silver"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/maint/hull/lower/l_m_s)
"etE" = (
/obj/structure/prop/almayer/name_stencil,
/turf/open/floor/almayer_hull{
@@ -28794,6 +25439,10 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
+"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{
@@ -28808,16 +25457,18 @@
icon_state = "test_floor4"
},
/area/almayer/living/officer_study)
-"euu" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/u_m_s)
-"euw" = (
-/obj/structure/machinery/portable_atmospherics/hydroponics,
+"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{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/upper/u_f_s)
"euN" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
@@ -28889,24 +25540,6 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/starboard)
-"evF" = (
-/obj/structure/surface/rack,
-/obj/item/roller,
-/obj/item/roller,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
-"evQ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/sign/safety/cryo{
- pixel_x = 36
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/cryo_cells)
"evR" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/mechanical/green{
@@ -28921,16 +25554,13 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/north1)
-"ewo" = (
-/obj/structure/sign/safety/escapepod{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
+"ewc" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/light{
+ dir = 4
},
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
"ewr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -28971,20 +25601,30 @@
icon_state = "silvercorner"
},
/area/almayer/command/cichallway)
+"exb" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"exc" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"exi" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"exx" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/flashlight/lamp{
- pixel_x = 5;
- pixel_y = 10
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
+"exl" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"exy" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
@@ -28996,27 +25636,30 @@
icon_state = "tcomms"
},
/area/almayer/engineering/upper_engineering/starboard)
-"exX" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
+"exQ" = (
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
-"eyp" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ icon_state = "greencorner"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"eyG" = (
/obj/structure/platform,
/turf/open/floor/almayer{
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
+"eyI" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/open/shower{
+ name = "hypersleep curtain"
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_m_p)
+"eyM" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"eyQ" = (
/obj/structure/machinery/light{
dir = 1
@@ -29067,19 +25710,10 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"ezR" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/hull/lower/l_f_s)
"ezX" = (
/obj/structure/bed/chair/wood/normal,
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
-"eAa" = (
-/obj/structure/sign/poster{
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"eAg" = (
/obj/structure/flora/pottedplant{
desc = "It is made of Fiberbush(tm). It contains asbestos.";
@@ -29092,6 +25726,12 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
+"eAm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_umbilical)
"eAC" = (
/obj/structure/machinery/light{
dir = 4
@@ -29109,21 +25749,21 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"eAG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/regular,
+/obj/item/clipboard,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
"eAI" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "orangecorner"
},
/area/almayer/engineering/lower/engine_core)
-"eAK" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = -25
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"eAL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -29134,24 +25774,6 @@
"eAN" = (
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"eAP" = (
-/obj/structure/largecrate/random/barrel/red,
-/obj/structure/sign/safety/fire_haz{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"eAT" = (
-/obj/structure/machinery/door_control/cl/office/door{
- pixel_y = -20
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/aft_hallway)
"eAU" = (
/obj/structure/bed/chair{
dir = 8
@@ -29185,27 +25807,24 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"eBj" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_hallway)
-"eBC" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_umbilical)
"eBE" = (
/obj/structure/machinery/photocopier{
anchored = 0
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"eBG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"eBO" = (
/obj/structure/bed,
/turf/open/floor/almayer{
@@ -29290,20 +25909,13 @@
icon_state = "plating"
},
/area/almayer/shipboard/brig/execution)
-"eCZ" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice2";
- pixel_x = 16;
- pixel_y = 16
- },
-/obj/structure/largecrate/supply/supplies/flares,
+"eDk" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/upper/u_a_p)
"eDo" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -29314,6 +25926,12 @@
icon_state = "plating"
},
/area/almayer/medical/upper_medical)
+"eDq" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"eDt" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/almayer_network{
@@ -29330,34 +25948,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/bridgebunks)
-"eDF" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/tool,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
-"eDG" = (
-/obj/structure/barricade/handrail{
- dir = 1;
- pixel_y = 2
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/fire_haz{
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"eDN" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
"eEc" = (
/obj/structure/machinery/light,
/obj/effect/decal/warning_stripes{
@@ -29382,37 +25972,27 @@
/obj/structure/filingcabinet,
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
-"eEq" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
-"eEv" = (
-/obj/structure/platform{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"eEw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
-"eFg" = (
+"eEF" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/area/almayer/maint/upper/mess)
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
+"eFa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"eFj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -29442,11 +26022,16 @@
},
/area/almayer/medical/chemistry)
"eFI" = (
-/obj/effect/landmark/yautja_teleport,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "blue"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/hallways/upper/aft_hallway)
"eFK" = (
/obj/structure/bed{
icon_state = "abed"
@@ -29531,13 +26116,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"eGg" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 8;
- id = "vehicle_elevator_railing_aux"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"eGh" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/surgery/scalpel{
@@ -29547,22 +26125,13 @@
/obj/item/stack/cable_coil,
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
-"eGl" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_x = -8;
- pixel_y = 28
- },
-/obj/structure/sign/safety/intercom{
- pixel_x = 14;
- pixel_y = 32
- },
+"eGq" = (
+/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
dir = 4;
- icon_state = "bluecorner"
+ icon_state = "green"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/port_midship_hallway)
"eGr" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
dir = 1;
@@ -29608,12 +26177,22 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
-"eHJ" = (
-/obj/structure/machinery/vending/hydronutrients,
+"eHy" = (
+/obj/structure/machinery/conveyor{
+ id = "lower_garbage"
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "plating_striped"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/lower/l_a_p)
+"eHz" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"eHY" = (
/obj/structure/surface/rack,
/obj/item/device/taperecorder,
@@ -29621,6 +26200,45 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
+"eIN" = (
+/obj/item/tool/kitchen/utensil/pfork,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
+"eIO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/machinery/door_control{
+ id = "hangarentrancenorth";
+ name = "North Hangar Podlocks";
+ pixel_y = -26;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"eJg" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"eJj" = (
+/obj/structure/closet/crate,
+/obj/item/ammo_box/magazine/l42a,
+/obj/item/ammo_box/magazine/l42a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"eJQ" = (
/obj/structure/prop/invuln{
desc = "An inflated membrane. This one is puncture proof. Wow!";
@@ -29637,6 +26255,10 @@
"eJX" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/ce_room)
+"eJZ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"eKa" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
dir = 2;
@@ -29648,17 +26270,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/processing)
-"eKi" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
-"eKk" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/weldingtool,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
"eKy" = (
/obj/structure/pipes/standard/simple/visible{
dir = 6
@@ -29670,12 +26281,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"eKE" = (
-/obj/item/trash/cigbutt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"eKH" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
@@ -29720,20 +26325,67 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"eLq" = (
-/obj/structure/machinery/light/small,
+"eKZ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Port Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"eLp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/computer/supplycomp/vehicle,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_p)
-"eLz" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- 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{
- icon_state = "silver"
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"eLC" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/tray,
+/obj/item/tool/kitchen/tray{
+ pixel_y = 6
+ },
+/obj/item/reagent_container/food/snacks/sliceable/bread{
+ pixel_y = 8
+ },
+/obj/item/tool/kitchen/knife{
+ pixel_x = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
+"eLH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/beer_pack,
+/obj/structure/sign/poster{
+ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
+ icon_state = "poster11";
+ name = "YOU ALWAYS KNOW A WORKING JOE.";
+ pixel_x = -27;
+ serial_number = 11
},
-/area/almayer/hallways/repair_bay)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"eMh" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Laundry Room"
@@ -29742,12 +26394,18 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/laundry)
-"eMt" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"eMx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_a_p)
+"eMI" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"eMJ" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -29774,38 +26432,20 @@
icon_state = "test_floor4"
},
/area/almayer/command/cichallway)
-"eNf" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"eMZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"eNi" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/ce_room)
-"eNq" = (
-/obj/structure/largecrate/random/barrel/white,
-/obj/structure/sign/safety/storage{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"eNv" = (
/obj/structure/largecrate/random,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/port)
-"eNw" = (
-/obj/structure/surface/table/almayer,
-/obj/item/spacecash/c1000/counterfeit,
-/obj/item/storage/box/drinkingglasses,
-/obj/item/storage/fancy/cigar,
-/obj/structure/machinery/atm{
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/command/corporateliaison)
"eNI" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
@@ -29816,12 +26456,12 @@
icon_state = "test_floor4"
},
/area/almayer/medical/containment)
-"eNO" = (
-/obj/effect/landmark/yautja_teleport,
+"eNL" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "green"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"eNR" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -29829,6 +26469,14 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/brig/processing)
+"eOx" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"eOM" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
dir = 2;
@@ -29849,27 +26497,15 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"eOY" = (
-/obj/structure/surface/rack,
-/obj/item/facepaint/sniper,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"ePc" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
-"ePA" = (
-/obj/structure/machinery/light{
- dir = 1
+"ePq" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 8;
+ icon_state = "orange"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/lower/starboard_umbilical)
"ePM" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_x = 32
@@ -29911,12 +26547,55 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/workshop/hangar)
-"eQa" = (
-/obj/structure/largecrate/random/barrel/red,
+"eQd" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/smg/m39{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/smg/m39{
+ pixel_y = -6
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/upper/u_m_s)
+"eQh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"eQm" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
+"eQz" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"eQJ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/sign/poster/ad{
+ pixel_x = 30
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliaison)
+"eQR" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/s_bow)
"eRi" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/folder/black{
@@ -29929,21 +26608,6 @@
},
/turf/open/floor/carpet,
/area/almayer/living/commandbunks)
-"eRm" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/obj/item/storage/firstaid{
- pixel_x = -13;
- pixel_y = 13
- },
-/obj/item/clipboard,
-/obj/item/paper,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"eRu" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -29972,6 +26636,14 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
+"eRG" = (
+/obj/structure/closet,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"eRL" = (
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/main_office)
@@ -30016,15 +26688,11 @@
},
/area/almayer/medical/medical_science)
"eSp" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/sign/safety/ladder{
+ pixel_x = -16
},
-/area/almayer/maint/hull/upper/u_m_p)
-"eSH" = (
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"eSU" = (
/obj/structure/prop/almayer/name_stencil{
icon_state = "almayer1"
@@ -30033,12 +26701,9 @@
icon_state = "outerhull_dir"
},
/area/space)
-"eSZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
+"eTb" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/stern)
"eTd" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/boonie{
@@ -30049,35 +26714,36 @@
/obj/effect/landmark/crap_item,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"eTJ" = (
-/obj/structure/curtain/red,
+"eTx" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "green"
},
-/area/almayer/maint/hull/lower/l_a_s)
-"eTO" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
+/area/almayer/hallways/lower/port_aft_hallway)
+"eTD" = (
+/obj/structure/bed/chair{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/lower/l_a_s)
"eUe" = (
-/obj/structure/surface/rack,
-/obj/item/device/radio{
- pixel_x = 5;
- pixel_y = 4
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
},
-/obj/item/device/radio,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
+"eUf" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/s_bow)
-"eUf" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/stern)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"eUh" = (
/obj/structure/window/reinforced{
dir = 8
@@ -30157,16 +26823,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"eVP" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/extinguisher,
-/obj/item/tool/extinguisher,
-/obj/item/tool/crowbar,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
"eVQ" = (
/obj/structure/machinery/light{
dir = 4
@@ -30204,18 +26860,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"eVY" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/screwdriver{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/item/stack/cable_coil{
- pixel_x = 8;
- pixel_y = -4
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"eWp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/bed/chair/comfy/charlie{
@@ -30225,6 +26869,20 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
+"eWs" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/l_f_s)
+"eWv" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"eWx" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
"eWF" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -30233,15 +26891,12 @@
icon_state = "test_floor4"
},
/area/almayer/living/basketball)
-"eWV" = (
-/obj/structure/machinery/light/small,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
+"eWN" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "blue"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/hallways/upper/aft_hallway)
"eXb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30270,6 +26925,17 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/living/offices)
+"eXD" = (
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"eYj" = (
/obj/structure/machinery/light{
dir = 8
@@ -30285,6 +26951,15 @@
/obj/structure/filingcabinet/security,
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"eYp" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ name = "\improper Tool Closet"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"eYr" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -30312,14 +26987,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"eYw" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/item/tool/crowbar{
- pixel_x = 6;
- pixel_y = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
"eYz" = (
/obj/structure/machinery/camera/autoname/almayer/containment/ares{
dir = 1
@@ -30332,18 +26999,6 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"eYC" = (
-/obj/structure/machinery/door/airlock/almayer/engineering{
- name = "\improper Disposals"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"eYD" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -30373,12 +27028,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
-"eYN" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/s_bow)
"eYQ" = (
/obj/structure/closet/fireaxecabinet{
pixel_x = -32
@@ -30395,16 +27044,9 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/upper_engineering/port)
-"eZi" = (
-/obj/effect/projector{
- name = "Almayer_Up4";
- vector_x = -19;
- vector_y = 104
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
+"eZm" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/p_stern)
"eZo" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -30432,24 +27074,26 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"eZC" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"eZH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"eZK" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"eZR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/maint/lower/s_bow)
-"fad" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- icon_state = "green"
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
-/area/almayer/hallways/aft_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"fag" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -30458,34 +27102,15 @@
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/execution)
"far" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = 6
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/item/weapon/gun/rifle/l42a,
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"fau" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"faC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
+ icon_state = "orangecorner"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/hallways/lower/port_aft_hallway)
"faE" = (
/obj/structure/bookcase{
icon_state = "book-5";
@@ -30509,6 +27134,18 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
+"faR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = -16;
+ pixel_y = 17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"faX" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
@@ -30541,6 +27178,15 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
+"fbe" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"fbo" = (
/obj/structure/machinery/door_control{
id = "kitchen2";
@@ -30580,6 +27226,13 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/upper_medical)
+"fbC" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"fbR" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -30593,27 +27246,41 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
+"fbU" = (
+/obj/item/stool,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"fca" = (
+/obj/structure/disposalpipe/segment{
+ layer = 5.1;
+ name = "water pipe"
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"fcf" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"fcl" = (
-/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
-"fcx" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+"fco" = (
+/obj/structure/surface/rack,
+/obj/item/device/radio{
+ pixel_x = 5;
+ pixel_y = 4
},
+/obj/item/device/radio,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/upper/s_bow)
"fcy" = (
/obj/structure/machinery/light{
dir = 8
@@ -30635,14 +27302,6 @@
icon_state = "bluecorner"
},
/area/almayer/living/basketball)
-"fcK" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -14;
- pixel_y = 13
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"fcM" = (
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
@@ -30666,9 +27325,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"fcW" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/u_a_p)
"fcX" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/machinery/light{
@@ -30682,6 +27338,12 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
+"fdf" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"fdx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -30691,15 +27353,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"fdD" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/spawner/random/toolbox,
-/obj/item/storage/firstaid/o2,
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
"fdE" = (
/obj/item/clothing/mask/rebreather/scarf,
/obj/structure/closet/secure_closet/personal/cabinet{
@@ -30721,9 +27374,31 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lockerroom)
+"fea" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"feb" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/brig/execution)
+"feo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"feq" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30746,6 +27421,10 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"feG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"feI" = (
/obj/item/trash/cigbutt,
/turf/open/floor/almayer,
@@ -30770,32 +27449,55 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_two)
-"feZ" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/stern)
"ffg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/perma)
+"ffq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/hardhat{
+ pixel_y = 15
+ },
+/obj/item/clothing/head/hardhat/dblue{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/obj/item/clothing/head/hardhat{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/hardhat/orange{
+ pixel_x = 7;
+ pixel_y = -5
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"ffx" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/item/clothing/head/helmet/marine/tech/tanker,
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"ffE" = (
/turf/open/floor/almayer/no_build{
icon_state = "plating"
},
/area/almayer/command/airoom)
-"ffL" = (
+"ffN" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
/obj/structure/sign/safety/water{
pixel_x = 8;
pixel_y = -32
},
+/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
-"ffX" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/maint/hull/lower/s_bow)
"fgh" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -30822,26 +27524,6 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"fgv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"fgA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/nonpress_ag{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/west{
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"fgE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -30880,13 +27562,14 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/brig/cells)
-"fhb" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/structure/sign/safety/water{
- pixel_x = -17
+"fgU" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"fhf" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical,
@@ -30898,24 +27581,25 @@
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/starboard)
-"fhT" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"fic" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"fie" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
-"fiz" = (
-/obj/structure/machinery/vending/snack,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"fix" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
},
-/area/almayer/shipboard/panic)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"fiE" = (
/obj/structure/machinery/computer/cameras/containment/hidden{
dir = 4;
@@ -30926,6 +27610,15 @@
/obj/item/device/camera_film,
/turf/open/floor/almayer,
/area/almayer/command/corporateliaison)
+"fiH" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"fiN" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"fiQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -30934,28 +27627,36 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"fkF" = (
-/obj/structure/closet/emcloset,
+"fjz" = (
+/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"fkK" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
-/area/almayer/maint/hull/lower/l_m_p)
-"fkO" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/hull/upper/u_m_s)
"fkX" = (
/turf/closed/wall/almayer/research/containment/wall/corner{
dir = 8
},
/area/almayer/medical/containment/cell/cl)
-"flK" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+"flr" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"flW" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/light{
@@ -30967,15 +27668,18 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"flY" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+"fml" = (
+/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{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "greencorner"
},
-/area/almayer/maint/hull/lower/stern)
+/area/almayer/hallways/lower/port_fore_hallway)
"fmv" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -30997,15 +27701,20 @@
icon_state = "bluecorner"
},
/area/almayer/living/pilotbunks)
-"fmY" = (
+"fmZ" = (
/turf/open/floor/almayer{
- icon_state = "orangecorner"
+ dir = 8;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"fmZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/hallways/lower/starboard_umbilical)
+"fnc" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"fnv" = (
/obj/structure/machinery/light{
dir = 4
@@ -31059,19 +27768,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
-"foa" = (
-/obj/structure/prop/holidays/string_lights{
- pixel_y = 27
- },
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/obj/structure/surface/table/almayer,
-/obj/item/storage/box/drinkingglasses,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"foC" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/disposalpipe/segment{
@@ -31118,21 +27814,26 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/medical_science)
-"foU" = (
-/obj/item/tool/screwdriver,
-/obj/structure/platform_decoration{
- dir = 8
+"foS" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"fpj" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
+/area/almayer/maint/hull/lower/l_a_p)
+"fpi" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/maint/hull/lower/stern)
"fpA" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -31145,10 +27846,21 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"fpO" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+"fpI" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"fpM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"fpR" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
@@ -31176,6 +27888,21 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
+"fqb" = (
+/obj/item/paper/prison_station/interrogation_log{
+ pixel_x = 10;
+ pixel_y = 7
+ },
+/obj/structure/largecrate/random/barrel/green,
+/obj/item/limb/hand/l_hand{
+ pixel_x = -5;
+ pixel_y = 14
+ },
+/obj/effect/spawner/random/balaclavas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"fqc" = (
/obj/structure/machinery/vending/cigarette,
/obj/structure/machinery/light,
@@ -31183,17 +27910,38 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
-"fqh" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
+"fqw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
},
-/area/almayer/maint/lower/cryo_cells)
+/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{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"fqC" = (
/obj/structure/machinery/vending/cigarette,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"fqJ" = (
+/obj/structure/machinery/door_control{
+ id = "safe_armory";
+ name = "Hangar Armory Lockdown";
+ pixel_y = 24;
+ req_access_txt = "4"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/panic)
"fqO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -31201,12 +27949,16 @@
/obj/structure/surface/table/reinforced/black,
/turf/open/floor/carpet,
/area/almayer/command/cichallway)
-"fqP" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"fqU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 2.5
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+/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{
@@ -31224,14 +27976,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"fra" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"frb" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -31255,11 +27999,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"frq" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_stern)
"frz" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
name = "\improper Exterior Airlock";
@@ -31277,6 +28016,13 @@
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
+"frI" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"frM" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
@@ -31290,6 +28036,12 @@
icon_state = "tcomms"
},
/area/almayer/command/airoom)
+"frV" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"frX" = (
/obj/structure/machinery/optable,
/obj/structure/sign/safety/medical{
@@ -31301,15 +28053,16 @@
icon_state = "sterile_green_corner"
},
/area/almayer/shipboard/brig/surgery)
-"fsd" = (
+"fsf" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "N";
+ pixel_y = 1
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "orangecorner"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/hallways/lower/port_umbilical)
"fsp" = (
/obj/structure/barricade/handrail{
dir = 1;
@@ -31320,15 +28073,18 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"fsH" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
+"fsu" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"fsR" = (
/obj/structure/pipes/vents/pump{
dir = 8;
@@ -31351,52 +28107,33 @@
icon_state = "plating_striped"
},
/area/almayer/living/cryo_cells)
-"fti" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "vehicle_elevator_railing"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"ftb" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/vehiclehangar)
-"ftr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+ dir = 5;
+ icon_state = "blue"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"ftA" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/almayer/hallways/upper/aft_hallway)
+"ftG" = (
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
},
-/area/almayer/maint/hull/lower/p_bow)
-"ftE" = (
-/obj/item/storage/firstaid/regular,
-/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
-"ful" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"fut" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+"ftZ" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ dir = 4;
+ icon_state = "green"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/hallways/upper/aft_hallway)
"fuz" = (
/obj/structure/machinery/cm_vending/clothing/pilot_officer,
/turf/open/floor/almayer{
@@ -31423,6 +28160,13 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
+"fuU" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"fva" = (
/obj/structure/machinery/light{
dir = 1
@@ -31451,11 +28195,36 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"fvs" = (
+"fvj" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"fvo" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/clothing/glasses/welding{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/item/tool/weldingtool{
+ pixel_x = -11;
+ pixel_y = 5
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/maint/hull/upper/u_a_p)
"fvA" = (
/obj/structure/closet/secure_closet/brig,
/turf/open/floor/almayer,
@@ -31466,13 +28235,19 @@
icon_state = "redfull"
},
/area/almayer/command/cic)
-"fvK" = (
-/obj/structure/sign/safety/galley{
- pixel_x = 8;
- pixel_y = 32
+"fvE" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/upper/aft_hallway)
+"fvJ" = (
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
"fvN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31483,6 +28258,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/port_point_defense)
+"fvV" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"fwD" = (
/obj/item/reagent_container/food/snacks/grown/poppy{
pixel_x = 4;
@@ -31493,6 +28281,9 @@
icon_state = "plate"
},
/area/almayer/living/starboard_garden)
+"fwK" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hallways/lower/starboard_umbilical)
"fwM" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
@@ -31504,22 +28295,13 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"fwQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
-"fwT" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+"fwP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light/small{
dir = 4
},
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- dir = 1;
- name = "\improper Starboard Viewing Room"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_f_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"fwY" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31577,10 +28359,6 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cryo)
-"fyq" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"fyD" = (
/obj/structure/machinery/light,
/obj/structure/ladder{
@@ -31589,6 +28367,35 @@
},
/turf/open/floor/plating/almayer,
/area/almayer/living/briefing)
+"fyT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 2;
+ id = "CIC Lockdown";
+ layer = 2.2;
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{
+ dir = 1;
+ name = "\improper Command Power Substation"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/mess)
+"fzc" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"fzm" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"fzq" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -31601,6 +28408,18 @@
icon_state = "test_floor4"
},
/area/almayer/squads/charlie)
+"fzx" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"fzP" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -31617,6 +28436,30 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/ce_room)
+"fzT" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wirecutters,
+/obj/item/tool/shovel/snow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"fAa" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/ammo_magazine/pistol{
+ current_rounds = 0
+ },
+/obj/item/weapon/gun/pistol/m4a3{
+ current_mag = null
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
"fAr" = (
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun,
/turf/open/floor/plating/plating_catwalk,
@@ -31627,32 +28470,41 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/main_office)
-"fAH" = (
-/obj/structure/largecrate/supply,
+"fAW" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
+"fBi" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"fBo" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/p_stern)
-"fBD" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+/area/almayer/maint/hull/lower/l_a_s)
+"fBA" = (
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = -32
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/hallways/vehiclehangar)
-"fBL" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ icon_state = "blue"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"fBO" = (
/obj/structure/machinery/chem_master{
vial_maker = 1
@@ -31665,6 +28517,21 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
+"fCg" = (
+/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)
+"fCi" = (
+/obj/structure/surface/table/almayer,
+/obj/item/organ/lungs/prosthetic,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"fCp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -31672,32 +28539,32 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/lifeboat)
"fCG" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/bed/chair/office/dark{
+ dir = 8
},
-/area/almayer/maint/lower/s_bow)
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"fCL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"fCZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"fCP" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
},
+/area/almayer/hallways/upper/aft_hallway)
+"fCT" = (
/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,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/engineering/lower/engine_core)
"fDh" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -31720,27 +28587,14 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
-"fDm" = (
-/obj/structure/surface/table/almayer,
-/obj/item/stack/nanopaste{
- pixel_x = -3;
- pixel_y = 14
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
-"fDC" = (
-/obj/structure/machinery/cryopod{
- pixel_y = 6
- },
-/obj/structure/sign/safety/cryo{
- pixel_x = -17
+"fDk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "orangecorner"
},
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/hallways/upper/stern_hallway)
"fDG" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/machinery/light{
@@ -31763,12 +28617,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"fDT" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
"fDU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -31812,6 +28660,12 @@
icon_state = "plate"
},
/area/almayer/medical/morgue)
+"fEF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"fEN" = (
/obj/structure/machinery/camera/autoname/almayer/containment/ares{
dir = 4
@@ -31865,10 +28719,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
-"fFN" = (
-/obj/item/tool/weldingtool,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
"fFO" = (
/obj/structure/machinery/light{
dir = 4
@@ -31880,6 +28730,23 @@
icon_state = "plate"
},
/area/almayer/medical/morgue)
+"fFQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/spray/cleaner{
+ pixel_x = 7;
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
+"fFU" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"fGa" = (
/obj/structure/surface/rack,
/obj/effect/decal/warning_stripes{
@@ -31890,10 +28757,26 @@
icon_state = "dark_sterile"
},
/area/almayer/living/numbertwobunks)
+"fGd" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "vehicle_elevator_railing"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"fGg" = (
/obj/effect/decal/cleanable/blood/oil/streak,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"fGi" = (
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"fGu" = (
/obj/structure/machinery/door_control{
dir = 1;
@@ -31921,15 +28804,24 @@
},
/area/almayer/medical/medical_science)
"fGB" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
-"fGG" = (
+/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
-/area/almayer/shipboard/panic)
+/area/almayer/maint/hull/lower/l_a_s)
+"fGD" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"fHb" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"fHh" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -31952,16 +28844,10 @@
icon_state = "greenfull"
},
/area/almayer/living/offices)
-"fHY" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = -16
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
-"fII" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+"fHM" = (
+/obj/docking_port/stationary/escape_pod/cl,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_m_p)
"fIM" = (
/obj/effect/landmark/start/marine/tl/bravo,
/obj/effect/landmark/late_join/bravo,
@@ -31999,6 +28885,25 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
+"fJp" = (
+/obj/structure/girder,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"fJt" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"fJu" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
"fJy" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/toy/deck{
@@ -32007,16 +28912,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/pilotbunks)
-"fJA" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/tool,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"fJO" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -32074,16 +28969,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"fKj" = (
-/obj/structure/largecrate/random/barrel/green,
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"fKt" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/structure/prop/dam/crane{
@@ -32100,13 +28985,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"fKv" = (
-/obj/structure/surface/rack,
-/obj/item/stack/folding_barricade/three,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"fKw" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1
@@ -32126,20 +29004,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
-"fKC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
-"fKL" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"fKT" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/sign/safety/coffee{
@@ -32169,6 +29033,13 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"fLf" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"fLg" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/reagent_container/food/snacks/wrapped/barcardine{
@@ -32179,10 +29050,26 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"fLi" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"fLl" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/s_stern)
+"fLt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"fLu" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -32212,18 +29099,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/perma)
-"fLI" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/beer_pack,
-/obj/structure/sign/poster{
- desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE.";
- icon_state = "poster11";
- name = "YOU ALWAYS KNOW A WORKING JOE.";
- pixel_x = -27;
- serial_number = 11
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"fMe" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp{
@@ -32251,12 +29126,6 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
-"fMn" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
"fMt" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "ARES Interior";
@@ -32285,36 +29154,28 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"fMA" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/sign/safety/stairs{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
+"fMU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/hallways/aft_hallway)
-"fMK" = (
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_22"
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = 32
},
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
+/obj/structure/sign/safety/coffee{
+ pixel_y = 32
},
-/area/almayer/squads/req)
-"fMZ" = (
-/obj/structure/machinery/light/small{
- dir = 8
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
+"fNd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/pipes/vents/pump/on,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"fNi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -32330,31 +29191,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"fNv" = (
-/obj/structure/platform_decoration{
- dir = 8
- },
+"fNH" = (
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"fNC" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"fNY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
+ dir = 8;
+ icon_state = "cargo_arrow"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"fOk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -32386,6 +29228,15 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/upper_engineering)
+"fOK" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/camera,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"fOL" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -32395,12 +29246,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"fOO" = (
-/obj/item/ammo_box/magazine/misc/mre,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
"fPn" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -32457,6 +29302,26 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"fPF" = (
+/obj/structure/closet/crate/trashcart,
+/obj/item/clothing/gloves/yellow,
+/obj/item/device/multitool,
+/obj/item/tool/screwdriver{
+ icon_state = "screwdriver7"
+ },
+/obj/item/tool/crowbar/red,
+/obj/item/book/manual/engineering_hacking,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"fQl" = (
+/obj/structure/largecrate/supply/supplies/flares,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"fQn" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -32478,6 +29343,14 @@
},
/turf/open/floor/plating,
/area/almayer/medical/upper_medical)
+"fQy" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"fQS" = (
/obj/structure/bed/chair/comfy/orange,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -32488,6 +29361,25 @@
},
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
+"fQU" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"fRg" = (
+/obj/structure/closet/emcloset,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"fRr" = (
/obj/structure/machinery/light{
dir = 1
@@ -32503,12 +29395,13 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"fRD" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"fRL" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
},
-/area/almayer/maint/lower/cryo_cells)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"fRS" = (
/obj/effect/landmark/start/warden,
/obj/effect/decal/warning_stripes{
@@ -32517,12 +29410,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cryo)
-"fSj" = (
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"fSl" = (
/obj/structure/machinery/line_nexter{
id = "line2";
@@ -32549,13 +29436,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"fSK" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"fTj" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -32567,6 +29447,9 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
+"fTl" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/u_a_s)
"fTm" = (
/obj/structure/bed/chair/office/dark,
/turf/open/floor/almayer,
@@ -32587,19 +29470,17 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/laundry)
-"fTU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/machinery/light{
- dir = 1
+"fUz" = (
+/obj/structure/surface/rack,
+/obj/item/storage/box/cups{
+ pixel_x = 4;
+ pixel_y = 9
},
+/obj/item/storage/box/cups,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/lower/s_bow)
"fUA" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/briefing)
@@ -32618,24 +29499,22 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"fUF" = (
-/obj/structure/largecrate/random/barrel/white,
+"fUZ" = (
+/obj/structure/largecrate/random/barrel/green,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_stern)
-"fUL" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/almayer/maint/hull/lower/l_f_p)
+"fVa" = (
+/obj/item/stack/catwalk,
+/obj/structure/platform_decoration{
+ dir = 4
},
-/area/almayer/squads/req)
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_a_p)
+"fVe" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/u_a_p)
"fVo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -32672,6 +29551,14 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/chemistry)
+"fWg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"fWi" = (
/obj/structure/toilet{
dir = 1
@@ -32684,22 +29571,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"fWj" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
+"fXf" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"fWP" = (
-/obj/structure/machinery/light{
- dir = 1
+ dir = 1;
+ icon_state = "blue"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/hallways/upper/aft_hallway)
"fXg" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -32714,16 +29594,6 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"fXy" = (
-/obj/structure/largecrate/supply/supplies/mre,
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"fXz" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -32732,11 +29602,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
-"fXB" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"fXE" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
@@ -32750,17 +29615,6 @@
icon_state = "plate"
},
/area/almayer/command/combat_correspondent)
-"fXG" = (
-/obj/structure/stairs{
- icon_state = "ramptop"
- },
-/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"fXN" = (
/obj/effect/landmark/start/marine/delta,
/obj/effect/landmark/late_join/delta,
@@ -32795,13 +29649,17 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/cichallway)
-"fYV" = (
-/obj/structure/bed,
-/obj/item/bedsheet/green,
+"fYr" = (
+/obj/structure/surface/rack,
+/obj/item/device/radio{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/device/radio,
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "plate"
},
-/area/almayer/medical/upper_medical)
+/area/almayer/maint/hull/upper/u_f_s)
"fYZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -32832,24 +29690,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
-"fZu" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"fZx" = (
-/obj/structure/sign/safety/security{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = 32
+"fZy" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"fZA" = (
/obj/structure/pipes/standard/simple/visible{
dir = 9
@@ -32863,6 +29712,9 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/lower)
+"fZE" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"fZG" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -32871,6 +29723,22 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"fZI" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"fZR" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"fZX" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -32894,6 +29762,12 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
+"gar" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"gax" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -32920,15 +29794,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"gaW" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"gba" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/faxmachine/uscm/command{
@@ -32991,16 +29856,16 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"gbz" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"gck" = (
-/obj/structure/sign/safety/storage{
+"gbR" = (
+/obj/structure/sign/safety/maint{
pixel_x = 8;
- pixel_y = -32
+ pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"gcm" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -33024,22 +29889,6 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/starboard)
-"gcu" = (
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
-"gcz" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"gcN" = (
/obj/structure/machinery/door/airlock/almayer/command{
access_modified = 1;
@@ -33076,15 +29925,6 @@
icon_state = "red"
},
/area/almayer/hallways/hangar)
-"gds" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/repair_bay)
"gdJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -33121,6 +29961,20 @@
"gel" = (
/turf/closed/wall/almayer/research/containment/wall/west,
/area/almayer/medical/containment/cell/cl)
+"gen" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/flashlight/lamp{
+ layer = 3.1;
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/obj/item/paper_bin/uscm,
+/obj/item/tool/pen,
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"ger" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/wy{
@@ -33140,19 +29994,15 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/medical_science)
-"gew" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
-"geH" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
+"geu" = (
+/obj/structure/machinery/light,
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
},
-/area/almayer/hallways/stern_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"gfo" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
@@ -33166,6 +30016,15 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"gft" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"gfu" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -33179,6 +30038,9 @@
icon_state = "tcomms"
},
/area/almayer/command/airoom)
+"gfv" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"gfE" = (
/obj/structure/machinery/recharge_station,
/turf/open/floor/plating,
@@ -33218,41 +30080,30 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
+"ggo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"ggt" = (
/turf/open/floor/almayer{
dir = 5;
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"ggx" = (
-/obj/structure/surface/table/almayer,
-/obj/item/folder/yellow,
-/obj/structure/machinery/keycard_auth{
- pixel_x = -8;
- pixel_y = 25
- },
-/obj/structure/sign/safety/high_rad{
- pixel_x = 32;
- pixel_y = -8
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 32;
- pixel_y = 7
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = 14;
- pixel_y = 26
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/engineering/lower/workshop)
"ggz" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_four)
+"ggD" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"ggJ" = (
/obj/structure/machinery/door_control{
dir = 1;
@@ -33270,31 +30121,33 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/engineering/airmix)
-"ght" = (
-/obj/item/stack/tile/carpet{
- amount = 20
+"ggS" = (
+/obj/structure/machinery/light{
+ dir = 8
},
-/obj/structure/surface/rack,
+/obj/structure/bed/chair/bolted,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"ghD" = (
-/obj/structure/sign/safety/autoopenclose{
- pixel_x = 7;
- pixel_y = 32
+/area/almayer/shipboard/brig/perma)
+"ghA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"gib" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
+/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{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/maint/hull/lower/l_f_s)
+"ghF" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"gio" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/safety/restrictedarea{
@@ -33316,15 +30169,6 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
-"giB" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"giR" = (
/obj/structure/machinery/status_display{
pixel_y = -30
@@ -33338,6 +30182,20 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"gjg" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"gjm" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -33350,10 +30208,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"gjn" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"gjq" = (
/obj/structure/platform{
dir = 8
@@ -33414,6 +30268,20 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
+"gkr" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
+"gkE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/mess)
"gkK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/surface/table/reinforced/almayer_B,
@@ -33424,16 +30292,21 @@
icon_state = "plate"
},
/area/almayer/command/cic)
+"glc" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"gll" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
-"glm" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
"gls" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/item/clipboard,
@@ -33446,17 +30319,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"glz" = (
-/obj/structure/largecrate/supply/generator,
-/obj/item/reagent_container/food/drinks/bottle/whiskey{
- layer = 2.9;
- pixel_x = -10;
- pixel_y = 3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"glB" = (
/obj/structure/sign/safety/chem_lab{
pixel_x = 5;
@@ -33467,12 +30329,6 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"glC" = (
-/obj/structure/largecrate/random/case,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"glH" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -33513,10 +30369,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"gnh" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+"gmZ" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"gnu" = (
/obj/structure/surface/table/almayer,
/obj/item/facepaint/green,
@@ -33528,16 +30386,21 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"gnI" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/bag/trash{
- pixel_x = -3
+"gnB" = (
+/obj/structure/platform_decoration{
+ dir = 8
},
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
+"gnM" = (
+/obj/structure/surface/rack,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/area/almayer/maint/hull/lower/l_f_p)
"gob" = (
/obj/structure/closet/fireaxecabinet{
pixel_y = 32
@@ -33547,16 +30410,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"gog" = (
-/obj/structure/bed/chair/comfy/beige,
-/obj/item/reagent_container/glass/bucket{
- pixel_x = 12;
- pixel_y = -5
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"gof" = (
+/obj/structure/platform_decoration{
+ dir = 1
},
-/area/almayer/maint/hull/upper/u_a_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"goj" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 2;
@@ -33578,6 +30437,19 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/weapon_room)
+"goo" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddersoutheast";
+ name = "\improper South East Ladders Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"goy" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/disposalpipe/segment{
@@ -33596,22 +30468,23 @@
icon_state = "test_floor4"
},
/area/almayer/living/port_emb)
-"goF" = (
-/obj/structure/sign/safety/rad_haz{
- pixel_x = 8;
- pixel_y = -32
- },
-/obj/structure/machinery/power/reactor,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/engineering/lower/engine_core)
"goL" = (
/turf/open/floor/almayer{
dir = 10;
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"goM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"goY" = (
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/panic)
"gpc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/almayer/engineering{
@@ -33636,21 +30509,28 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"gpO" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/s_bow)
"gpY" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/lifeboat_pumps/north1)
-"gqy" = (
-/obj/structure/machinery/door_control{
- id = "safe_armory";
- name = "Hangar Armory Lockdown";
- pixel_y = 24;
- req_access_txt = "4"
+"gqf" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
+"gqt" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
},
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
+"gqv" = (
/turf/open/floor/almayer{
dir = 5;
- icon_state = "plating"
+ icon_state = "silver"
},
-/area/almayer/shipboard/panic)
+/area/almayer/hallways/upper/aft_hallway)
"gqP" = (
/obj/structure/largecrate/random/case,
/obj/structure/machinery/camera/autoname/almayer{
@@ -33661,11 +30541,33 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
-"grf" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
+"gqQ" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21"
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17
+ },
+/obj/structure/sign/poster/hero/voteno{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliaison)
+"grd" = (
+/obj/structure/platform_decoration{
+ dir = 8
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
+/area/almayer/maint/hull/upper/u_a_p)
+"grv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/s_bow)
"grF" = (
/obj/structure/pipes/vents/scrubber,
@@ -33686,6 +30588,22 @@
icon_state = "orangecorner"
},
/area/almayer/living/briefing)
+"grT" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/tool/wet_sign{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"gsd" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/hand_labeler{
@@ -33742,14 +30660,28 @@
/obj/effect/landmark/late_join,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/cryo_cells)
-"gsA" = (
+"gsp" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
+"gsy" = (
/obj/structure/surface/rack,
-/obj/item/storage/toolbox/mechanical,
-/obj/effect/spawner/random/tool,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/ob_ammo/ob_fuel,
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = 32
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/maint/hull/lower/p_bow)
"gsC" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
@@ -33786,28 +30718,25 @@
icon_state = "silvercorner"
},
/area/almayer/command/cichallway)
-"gtA" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/structure/transmitter{
- dir = 8;
- name = "Medical Telephone";
- phone_category = "Almayer";
- phone_id = "Medical Lower";
- pixel_x = 16
+"gtD" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"gtH" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/item/device/helmet_visor/medical/advanced,
-/obj/item/device/helmet_visor/medical/advanced,
-/obj/item/device/helmet_visor/medical/advanced,
-/obj/item/device/helmet_visor/medical/advanced,
/turf/open/floor/almayer{
- icon_state = "sterile_green"
+ icon_state = "test_floor4"
},
-/area/almayer/medical/lockerroom)
-"gtF" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"gtQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
-/area/almayer/maint/hull/lower/l_f_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"gtU" = (
/obj/structure/machinery/power/apc/almayer{
dir = 8
@@ -33821,14 +30750,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/perma)
-"guc" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"guo" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -33838,13 +30759,24 @@
icon_state = "redfull"
},
/area/almayer/lifeboat_pumps/south2)
-"guv" = (
-/obj/item/reagent_container/glass/bucket/janibucket{
- pixel_x = -1;
- pixel_y = 13
+"gur" = (
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 24
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/obj/item/reagent_container/glass/bucket,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
+"guK" = (
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
"guS" = (
/obj/structure/reagent_dispensers/fueltank/custom,
/turf/open/floor/almayer{
@@ -33871,21 +30803,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
-"gvj" = (
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = -8;
- pixel_y = 18
- },
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = 8;
- pixel_y = 18
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"gvq" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = -25
@@ -33894,12 +30811,10 @@
icon_state = "silver"
},
/area/almayer/command/cic)
-"gvt" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/stern)
+"gvK" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"gvU" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -33939,15 +30854,6 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"gwD" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/firstaid/regular,
-/obj/item/clipboard,
-/obj/item/tool/pen,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/squads/req)
"gwM" = (
/obj/structure/pipes/vents/pump,
/obj/structure/mirror{
@@ -33995,12 +30901,18 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
+"gxm" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/stairs)
"gxn" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
+"gxI" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/hull/upper/s_bow)
"gxO" = (
/turf/open/floor/almayer{
dir = 10;
@@ -34016,51 +30928,59 @@
dir = 8
},
/area/almayer/medical/containment/cell)
-"gxS" = (
+"gxR" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
+"gxU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/toy/deck,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "silver"
},
-/area/almayer/maint/upper/u_m_p)
-"gxW" = (
-/obj/item/stack/catwalk,
-/obj/structure/platform_decoration{
- dir = 4
+/area/almayer/shipboard/brig/cic_hallway)
+"gyb" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
},
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_a_p)
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"gyn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"gyv" = (
/obj/structure/platform_decoration{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"gyy" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
+"gyw" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
+/area/almayer/hallways/lower/port_aft_hallway)
+"gyE" = (
/turf/open/floor/almayer{
- dir = 4;
+ dir = 1;
icon_state = "green"
},
-/area/almayer/hallways/aft_hallway)
-"gyC" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/obj/structure/sign/safety/two{
- pixel_x = 32;
- pixel_y = -8
- },
-/obj/structure/sign/safety/ammunition{
- pixel_x = 32;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
+/area/almayer/hallways/lower/port_aft_hallway)
+"gyH" = (
+/obj/item/tool/warning_cone{
+ pixel_x = -12;
+ pixel_y = 16
},
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"gyN" = (
/obj/structure/machinery/prop{
desc = "It's a server box...";
@@ -34080,13 +31000,6 @@
icon_state = "orange"
},
/area/almayer/engineering/ce_room)
-"gyT" = (
-/obj/structure/largecrate/supply/floodlights,
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"gyU" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -34129,16 +31042,6 @@
/obj/item/reagent_container/hypospray/autoinjector/skillless,
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"gzx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"gzE" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/s_bow)
"gzI" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -34157,6 +31060,23 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/morgue)
+"gzM" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"gzN" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"gzV" = (
/obj/structure/sink{
dir = 1;
@@ -34232,21 +31152,40 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"gBd" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"gBg" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"gBo" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"gBO" = (
+"gBs" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
/turf/open/floor/almayer{
- icon_state = "orange"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"gBP" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/maint/hull/upper/u_m_p)
+"gBU" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/bag/trash{
+ pixel_x = -3
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"gBW" = (
/obj/structure/machinery/floodlight/landing{
name = "bolted floodlight"
@@ -34255,21 +31194,27 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"gBZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"gCf" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
-"gCl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"gCu" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = 16
},
-/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/maint/hull/lower/l_a_s)
"gCw" = (
/obj/item/reagent_container/food/drinks/cans/beer{
pixel_x = 10
@@ -34297,6 +31242,12 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
+"gCQ" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"gDp" = (
/obj/structure/machinery/light{
dir = 4
@@ -34326,6 +31277,11 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
+"gDQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"gDW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -34338,16 +31294,19 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"gDX" = (
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
"gEg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/offices/flight)
-"gEk" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
+"gEh" = (
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/lower/l_a_p)
"gEo" = (
/obj/structure/machinery/cryopod/right,
/obj/structure/machinery/light{
@@ -34371,47 +31330,12 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"gEM" = (
-/obj/structure/surface/table/almayer,
-/obj/item/pizzabox/meat,
-/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{
- pixel_x = -4;
- pixel_y = -3
- },
-/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
-"gER" = (
-/obj/structure/surface/table/almayer,
-/obj/item/toy/deck{
- pixel_y = 14
- },
-/obj/item/trash/cigbutt/ucigbutt{
- layer = 3.7;
- pixel_x = 5;
- pixel_y = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"gFa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/shipboard/starboard_point_defense)
-"gFc" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"gFd" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/atmospipes{
@@ -34421,6 +31345,24 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"gFL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
+"gFN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"gFP" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/stern_point_defense)
@@ -34431,6 +31373,14 @@
icon_state = "cargo"
},
/area/almayer/living/commandbunks)
+"gGb" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"gGf" = (
/obj/structure/machinery/light{
dir = 1
@@ -34488,6 +31438,14 @@
},
/turf/open/floor/plating,
/area/almayer/hallways/hangar)
+"gGw" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"gGx" = (
/obj/structure/filingcabinet/chestdrawer{
density = 0;
@@ -34518,9 +31476,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"gGX" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
"gHh" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -34528,6 +31483,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/port)
+"gHi" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"gHj" = (
/obj/structure/machinery/light,
/obj/structure/closet/secure_closet/fridge/groceries/stock,
@@ -34541,12 +31502,6 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"gHm" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"gHo" = (
/obj/structure/machinery/door/airlock/almayer/marine/delta/tl,
/turf/open/floor/almayer{
@@ -34560,20 +31515,17 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"gHx" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/bed/chair{
- dir = 1
+"gHX" = (
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
},
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = -32
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/hallways/upper/aft_hallway)
"gHZ" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
@@ -34591,6 +31543,12 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/ce_room)
+"gIm" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"gII" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -34602,6 +31560,13 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/port)
+"gIN" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"gIU" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/tapes{
@@ -34620,6 +31585,24 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/evidence_storage)
+"gJf" = (
+/obj/structure/bed/sofa/south/grey/left{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"gJp" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"gJF" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/s_stern)
"gJO" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/door/window/southleft{
@@ -34639,6 +31622,20 @@
icon_state = "green"
},
/area/almayer/living/offices)
+"gJY" = (
+/obj/structure/surface/table/almayer,
+/obj/item/circuitboard{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/obj/item/tool/crowbar{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"gKd" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -34649,12 +31646,25 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"gKl" = (
-/obj/structure/largecrate/random/case/small,
+"gKo" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_umbilical)
+"gKv" = (
+/obj/effect/landmark/yautja_teleport,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/p_bow)
+"gKw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"gKB" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/machinery/firealarm{
@@ -34674,6 +31684,11 @@
icon_state = "redfull"
},
/area/almayer/shipboard/port_missiles)
+"gKK" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/lower/repair_bay)
"gKR" = (
/obj/structure/closet/emcloset,
/obj/structure/machinery/light{
@@ -34707,10 +31722,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/hydroponics)
-"gLo" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
+"gLm" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"gLz" = (
/obj/structure/machinery/cryopod{
layer = 3.1;
@@ -34776,18 +31793,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/port_emb)
-"gMa" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = -32
- },
-/obj/structure/sign/safety/east{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"gMd" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
@@ -34797,13 +31802,17 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"gMj" = (
-/obj/item/tool/weldingtool,
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- icon_state = "red"
+"gMk" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
},
-/area/almayer/maint/hull/upper/u_a_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"gMJ" = (
+/obj/structure/largecrate/supply/weapons/pistols,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"gMN" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -34837,6 +31846,18 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"gMS" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"gMU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -34845,19 +31866,18 @@
dir = 4
},
/area/almayer/living/briefing)
-"gMX" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
+"gNg" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
},
+/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
-"gNj" = (
-/obj/structure/machinery/vending/cola,
+/area/almayer/maint/hull/upper/s_bow)
+"gNo" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_stern)
+/area/almayer/maint/upper/u_m_p)
"gNp" = (
/turf/open/floor/almayer{
dir = 9;
@@ -34875,6 +31895,22 @@
icon_state = "plate"
},
/area/almayer/squads/charlie_delta_shared)
+"gNy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"gNN" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"gNO" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -34884,13 +31920,22 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"gOf" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"gNQ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
+"gNZ" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
+"gOk" = (
+/obj/structure/largecrate/guns/merc{
+ name = "\improper dodgy crate"
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"gOs" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -34918,15 +31963,6 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
-"gOu" = (
-/obj/structure/sign/safety/security{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"gOC" = (
/obj/structure/machinery/recharge_station,
/turf/open/floor/almayer{
@@ -34941,6 +31977,12 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"gOS" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"gPc" = (
/obj/structure/machinery/power/terminal{
dir = 1
@@ -34967,19 +32009,25 @@
dir = 4
},
/area/almayer/command/airoom)
-"gPs" = (
-/obj/structure/sign/safety/storage{
- pixel_x = -17
+"gPS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
-"gPF" = (
-/obj/structure/machinery/light,
/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/lower/l_a_s)
+"gPU" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"gQk" = (
/obj/structure/surface/table/almayer,
/obj/structure/sign/safety/terminal{
@@ -34988,12 +32036,16 @@
/obj/structure/machinery/faxmachine/corporate/liaison,
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"gQz" = (
-/obj/structure/largecrate/random/secure,
+"gQu" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/item/storage/firstaid/rad,
+/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/maint/hull/upper/u_a_s)
"gQF" = (
/obj/structure/bed/chair/comfy{
buckling_y = 2;
@@ -35010,6 +32062,18 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"gQQ" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
+"gRc" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"gRd" = (
/obj/structure/platform,
/obj/structure/target{
@@ -35018,42 +32082,17 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"gRq" = (
-/obj/structure/closet/emcloset,
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/upper/u_f_s)
-"gRt" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"gRz" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- req_one_access = null;
- req_one_access_txt = "2;30;34"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"gRJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/mess)
-"gRB" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
+ dir = 8;
+ icon_state = "orangecorner"
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/lower/port_umbilical)
"gRP" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -35094,30 +32133,36 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"gSq" = (
-/obj/structure/bed/sofa/south/grey/right{
- pixel_y = 12
+"gSy" = (
+/obj/item/frame/rack{
+ layer = 3.1;
+ pixel_y = 19
+ },
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack{
+ pixel_x = 5
+ },
+/obj/item/tool/weldpack{
+ pixel_x = -2
},
/turf/open/floor/almayer,
/area/almayer/maint/hull/upper/u_f_s)
-"gTi" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/glass/bucket/mopbucket{
- pixel_x = -8
- },
-/obj/item/reagent_container/glass/bucket/mopbucket{
- pixel_y = 12
+"gSH" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/item/clothing/head/militia/bucket{
- pixel_x = 5;
- pixel_y = -5
+/area/almayer/maint/hull/lower/l_m_s)
+"gTk" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 4
},
-/obj/item/reagent_container/spray/cleaner{
- pixel_x = 8;
- pixel_y = -1
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/area/almayer/hallways/lower/port_umbilical)
"gTH" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/skills{
@@ -35135,16 +32180,28 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"gTK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"gTV" = (
-/obj/structure/sign/safety/rad_haz{
- pixel_x = 8;
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
pixel_y = 32
},
-/obj/structure/machinery/power/reactor,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "silver"
},
-/area/almayer/engineering/lower/engine_core)
+/area/almayer/hallways/upper/aft_hallway)
"gUf" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/turf/open/floor/almayer{
@@ -35160,12 +32217,38 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/general_equipment)
-"gUo" = (
+"gUi" = (
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/s_bow)
+"gUk" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
+"gUn" = (
/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"gUu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"gUG" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/upper/u_a_s)
"gUL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -35251,19 +32334,30 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south1)
-"gVP" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/maint/hull/lower/l_m_s)
-"gWj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light/small{
+"gWm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/hallways/lower/starboard_umbilical)
+"gWt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/pipe{
+ dir = 9
+ },
+/obj/item/tool/screwdriver{
+ layer = 3.6;
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/item/tool/crowbar/red{
+ pixel_x = 17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"gWu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -35282,16 +32376,6 @@
},
/turf/open/floor/plating,
/area/almayer/medical/upper_medical)
-"gWL" = (
-/obj/structure/ladder{
- height = 2;
- id = "ForePortMaint"
- },
-/obj/structure/sign/safety/ladder{
- pixel_x = -17
- },
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/upper/p_bow)
"gXl" = (
/obj/structure/closet/secure_closet/personal/cabinet{
req_access_txt = "5"
@@ -35339,6 +32423,34 @@
icon_state = "plating"
},
/area/almayer/shipboard/sea_office)
+"gYg" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/almayer/flight_recorder{
+ pixel_x = 9
+ },
+/obj/item/tool/weldingtool{
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"gYj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"gYl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -35358,12 +32470,23 @@
icon_state = "redfull"
},
/area/almayer/living/offices/flight)
-"gYL" = (
-/obj/structure/bed/chair{
+"gYI" = (
+/obj/structure/platform{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"gYU" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"gZw" = (
/obj/structure/bed/sofa/vert/grey/bot,
/turf/open/floor/almayer,
@@ -35381,6 +32504,16 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
+"gZW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"had" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -35439,6 +32572,11 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
+"haO" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
"haQ" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -35452,12 +32590,30 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"haT" = (
-/obj/structure/machinery/light,
+"haR" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
/turf/open/floor/almayer{
- icon_state = "green"
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/s_bow)
+"hbl" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
},
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_m_s)
+"hbp" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"hbs" = (
/obj/structure/surface/table/almayer,
/obj/item/frame/fire_alarm,
@@ -35475,6 +32631,26 @@
icon_state = "silver"
},
/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)
+"hbE" = (
+/obj/structure/largecrate/random,
+/obj/item/reagent_container/food/snacks/cheesecakeslice{
+ pixel_y = 8
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"hbI" = (
/obj/structure/sign/safety/ammunition{
pixel_x = 32;
@@ -35516,15 +32692,6 @@
icon_state = "silver"
},
/area/almayer/engineering/port_atmos)
-"hcs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"hcw" = (
/obj/structure/surface/table/reinforced/black,
/obj/item/explosive/grenade/high_explosive/training,
@@ -35540,16 +32707,6 @@
icon_state = "plate"
},
/area/almayer/living/cryo_cells)
-"hcx" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "plating_striped"
- },
-/area/almayer/squads/req)
"hcI" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -35558,27 +32715,21 @@
icon_state = "cargo"
},
/area/almayer/squads/delta)
-"hdd" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
+"hcX" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
},
-/area/almayer/shipboard/starboard_missiles)
-"hdf" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/machinery/power/reactor,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_m_p)
-"hdh" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
+/area/almayer/engineering/lower/engine_core)
+"hdd" = (
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ dir = 9;
+ icon_state = "red"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/shipboard/starboard_missiles)
"hds" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -35588,40 +32739,38 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/offices)
+"hdy" = (
+/obj/item/storage/firstaid/fire,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "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{
- icon_state = "green"
- },
-/area/almayer/squads/req)
-"hdO" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
-"heb" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+/turf/open/floor/almayer{
+ icon_state = "green"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/almayer/squads/req)
+"hdV" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"hec" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"hee" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"heo" = (
/obj/structure/machinery/power/apc/almayer{
cell_type = /obj/item/cell/hyper;
@@ -35643,14 +32792,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/armory)
-"heI" = (
-/obj/structure/largecrate/random/case{
- layer = 2.98
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"heK" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1;
@@ -35660,6 +32801,10 @@
icon_state = "test_floor4"
},
/area/almayer/living/port_emb)
+"heO" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"heS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -35696,16 +32841,36 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
-"hfs" = (
-/obj/item/tool/kitchen/utensil/pfork,
+"hfc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"hfv" = (
+/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/p_stern)
-"hfx" = (
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/maint/lower/s_bow)
+"hfO" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/surface/rack,
+/obj/item/storage/belt/utility/full{
+ pixel_y = 8
+ },
+/obj/item/storage/belt/utility/full,
+/obj/item/clothing/suit/storage/hazardvest/black,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"hfQ" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/almayer{
@@ -35721,6 +32886,12 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
+"hgk" = (
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"hgo" = (
/obj/structure/machinery/light{
dir = 8
@@ -35730,6 +32901,37 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"hgp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"hgs" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"hgA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"hgB" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/intel,
@@ -35763,15 +32965,17 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"hgR" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
+"hgO" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/item/tool/stamp/approved{
+ pixel_y = -11;
+ pixel_x = -3
},
-/area/almayer/maint/hull/lower/l_a_p)
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
"hgZ" = (
/obj/structure/machinery/door_control{
dir = 1;
@@ -35784,17 +32988,31 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_three)
-"hhe" = (
-/obj/structure/sign/safety/nonpress_0g{
- pixel_y = 32
+"hhd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/hardhat/orange{
+ pixel_x = -9;
+ pixel_y = 16
},
-/obj/structure/sign/safety/press_area_ag{
- pixel_y = -32
+/obj/item/clothing/suit/storage/hazardvest/blue{
+ pixel_x = -7;
+ pixel_y = -4
+ },
+/obj/item/clothing/head/hardhat{
+ pixel_x = 10;
+ pixel_y = 1
},
+/obj/item/clothing/suit/storage/hazardvest{
+ pixel_x = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"hhg" = (
+/obj/structure/surface/rack,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/hallways/starboard_umbilical)
+/area/almayer/maint/hull/lower/l_f_p)
"hhn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -35834,6 +33052,16 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"hiu" = (
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice13";
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"hiy" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -35849,18 +33077,22 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
-"hiU" = (
-/obj/structure/bed/chair{
- dir = 8
+"hiP" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = 32
},
-/obj/effect/decal/cleanable/blood,
-/obj/structure/machinery/light/small{
- dir = 4
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
},
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"hja" = (
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/u_a_s)
"hji" = (
/obj/structure/bed/chair{
dir = 4
@@ -35914,21 +33146,36 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/processing)
+"hjQ" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"hjT" = (
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/obj/structure/largecrate,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"hki" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"hko" = (
-/obj/structure/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+"hkz" = (
+/obj/structure/machinery/light/small{
dir = 8
},
/turf/open/floor/almayer{
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/living/cryo_cells)
+/area/almayer/maint/hull/upper/p_stern)
"hkB" = (
/obj/structure/sign/safety/rewire{
pixel_x = 8;
@@ -35936,22 +33183,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/port_point_defense)
-"hkE" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/port_hallway)
-"hkF" = (
-/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = 6
- },
-/obj/item/weapon/gun/rifle/l42a,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"hkC" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
},
-/area/almayer/maint/hull/upper/u_m_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"hkG" = (
/obj/structure/sign/safety/ammunition{
pixel_y = -32
@@ -35988,14 +33225,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"hkN" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"hkX" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/device/flashlight/lamp/green{
@@ -36015,17 +33244,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"hlm" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/reagent_dispensers/fueltank{
- anchored = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"hlH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -36074,20 +33292,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south2)
-"hmc" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "laddernorthwest";
- name = "\improper North West Ladders Shutters"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
"hme" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -36110,6 +33314,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/starboard)
+"hmv" = (
+/obj/structure/machinery/power/reactor,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/engineering/lower/engine_core)
"hmw" = (
/obj/structure/platform{
dir = 1
@@ -36131,6 +33341,19 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"hmA" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/hull/upper/p_bow)
+"hmB" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/south{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"hmC" = (
/obj/structure/machinery/cm_vending/sorted/marine_food{
density = 0;
@@ -36169,18 +33392,36 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/main_office)
-"hmM" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"hmS" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
icon_state = "blue"
},
/area/almayer/command/cichallway)
+"hmV" = (
+/obj/structure/bookcase{
+ icon_state = "book-5";
+ name = "medical manuals bookcase";
+ opacity = 0
+ },
+/obj/item/book/manual/surgery,
+/obj/item/book/manual/medical_diagnostics_manual,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/living/commandbunks)
+"hmZ" = (
+/obj/structure/largecrate/random/barrel/white,
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"hng" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/accessory/storage/black_vest/acid_harness,
@@ -36196,6 +33437,18 @@
icon_state = "sterile_green"
},
/area/almayer/medical/hydroponics)
+"hnt" = (
+/obj/item/toy/deck{
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 32
+ },
+/obj/structure/surface/table/woodentable/poor,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"hnI" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -36209,54 +33462,46 @@
icon_state = "test_floor4"
},
/area/almayer/living/pilotbunks)
-"hnK" = (
-/obj/structure/coatrack,
-/obj/structure/sign/poster/clf{
- pixel_x = -28
+"hnP" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
},
-/obj/structure/sign/nosmoking_1{
- pixel_y = 30
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
},
-/obj/structure/machinery/light/small{
- dir = 8
+/obj/structure/sign/safety/fire_haz{
+ pixel_y = -32
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
+"hoc" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "vehicle_elevator_railing"
},
-/area/almayer/maint/hull/lower/l_m_s)
-"hon" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = 32
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "mono"
},
-/area/almayer/hallways/aft_hallway)
-"hop" = (
+/area/almayer/hallways/lower/vehiclehangar)
+"hog" = (
+/obj/structure/machinery/light/small,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"hoC" = (
-/obj/item/storage/firstaid/fire,
-/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"hpa" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/obj/structure/machinery/light{
- dir = 1
+/area/almayer/maint/hull/upper/u_a_p)
+"hoT" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/upper/u_m_s)
"hpk" = (
/obj/structure/sign/safety/fire_haz{
pixel_x = 8;
@@ -36273,19 +33518,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"hpO" = (
-/obj/structure/prop/almayer/computers/sensor_computer2,
-/obj/structure/machinery/door_control{
- id = "Secretroom";
- indestructible = 1;
- layer = 2.5;
- name = "Shutters";
- use_power = 0
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"hpS" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "crate_room3";
@@ -36305,6 +33537,10 @@
},
/turf/open/floor/almayer,
/area/almayer/living/chapel)
+"hqb" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/u_m_s)
"hqc" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -36323,18 +33559,34 @@
/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
/turf/open/floor/almayer/research/containment/entrance,
/area/almayer/medical/containment/cell)
-"hqJ" = (
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_21"
+"hqm" = (
+/obj/structure/machinery/light/small{
+ dir = 4
},
-/obj/structure/sign/safety/escapepod{
- pixel_x = -17
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/sign/poster/hero/voteno{
- pixel_y = 32
+/area/almayer/maint/hull/upper/u_m_s)
+"hqp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
+"hqu" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/wood/ship,
-/area/almayer/command/corporateliaison)
+/area/almayer/maint/hull/upper/u_a_p)
+"hqx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
"hqU" = (
/obj/structure/bed/chair{
dir = 8;
@@ -36382,6 +33634,15 @@
icon_state = "test_floor4"
},
/area/almayer/medical/medical_science)
+"hro" = (
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"hrF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -36391,6 +33652,19 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/starboard_point_defense)
+"hrI" = (
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"hrJ" = (
+/obj/structure/sign/safety/autodoc{
+ pixel_x = 20;
+ pixel_y = -32
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"hrO" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36400,9 +33674,18 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/main_office)
-"hsf" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+"hsc" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"hsg" = (
/obj/structure/pipes/vents/pump{
dir = 4
@@ -36413,6 +33696,21 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
+"hsh" = (
+/obj/structure/coatrack,
+/obj/structure/sign/poster/clf{
+ pixel_x = -28
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 30
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"hsj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -36430,9 +33728,19 @@
icon_state = "test_floor4"
},
/area/almayer/squads/delta)
+"hsu" = (
+/obj/structure/bed/sofa/south/grey{
+ pixel_y = 12
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"hsy" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/engineering/lower/engine_core)
+"hsK" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"hsW" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -36449,33 +33757,55 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
-"htn" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
+"hte" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hallways/lower/starboard_umbilical)
+"htg" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
},
+/obj/structure/largecrate/supply/supplies/flares,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/p_bow)
-"hts" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+/area/almayer/maint/hull/lower/l_m_s)
+"htk" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 8
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/turf/open/floor/almayer{
+ icon_state = "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)
+"htq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/stern)
-"htB" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+/area/almayer/maint/hull/lower/l_f_p)
+"htF" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
+/obj/structure/sign/safety/north{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"htG" = (
/obj/item/tool/soap,
/obj/structure/machinery/light/small{
@@ -36504,9 +33834,25 @@
icon_state = "greenfull"
},
/area/almayer/living/offices)
+"hux" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"huD" = (
-/obj/structure/window/framed/almayer/hull,
-/turf/open/floor/plating,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_f_s)
"huK" = (
/turf/open/floor/almayer{
@@ -36523,6 +33869,12 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
+"huP" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"huU" = (
/obj/structure/machinery/door/airlock/almayer/security{
access_modified = 1;
@@ -36538,11 +33890,15 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
-"hvp" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+"hvq" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"hvv" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -36572,13 +33928,26 @@
/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{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
+"hvz" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"hvH" = (
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"hvP" = (
-/obj/item/trash/barcardine,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"hwC" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -36588,13 +33957,19 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
-"hwQ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+"hwH" = (
+/obj/structure/stairs{
dir = 4
},
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"hxe" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36641,43 +34016,17 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"hyc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"hyj" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/machinery/light{
- dir = 4
+"hyb" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/lower/l_a_s)
"hyk" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/squads/charlie_delta_shared)
-"hys" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/obj/effect/landmark/start/nurse,
-/obj/effect/landmark/late_join/nurse,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/offices)
-"hyt" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 2
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
"hyw" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -36702,17 +34051,17 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"hyL" = (
-/obj/structure/closet/firecloset,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
"hyQ" = (
/turf/closed/wall/almayer,
/area/almayer/living/synthcloset)
+"hza" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"hzb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4;
@@ -36727,6 +34076,16 @@
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
+"hzl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/snacks/mre_pack/meal5,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"hzs" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
@@ -36762,6 +34121,10 @@
icon_state = "test_floor4"
},
/area/almayer/command/cic)
+"hzN" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"hAc" = (
/obj/structure/surface/rack,
/obj/item/mortar_shell/flare,
@@ -36770,13 +34133,9 @@
icon_state = "cargo"
},
/area/almayer/squads/req)
-"hAd" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/hull/upper/u_f_s)
-"hAu" = (
-/obj/structure/machinery/light,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+"hAh" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/hallways/lower/port_umbilical)
"hAz" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
@@ -36785,6 +34144,19 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
+"hAA" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 8;
+ id = "laddersoutheast";
+ name = "\improper South East Ladders Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"hAG" = (
/obj/structure/closet/crate/internals,
/obj/item/handcuffs/cable/blue,
@@ -36819,6 +34191,14 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
+"hBa" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"hBc" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -36827,6 +34207,30 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
+"hBr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"hBy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"hBz" = (
/obj/item/mortar_kit,
/turf/open/floor/almayer{
@@ -36834,35 +34238,54 @@
icon_state = "plating"
},
/area/almayer/squads/req)
-"hBC" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/sign/safety/stairs{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
"hBF" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"hBG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/repair_bay)
"hBL" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/command/lifeboat)
-"hBR" = (
-/obj/structure/platform{
- dir = 1
+"hBW" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/largecrate/random/case/double,
+/area/almayer/hallways/lower/port_fore_hallway)
+"hCf" = (
+/obj/structure/sign/safety/manualopenclose{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
+"hCk" = (
+/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/lower/l_m_s)
+"hCq" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"hCt" = (
/obj/structure/sign/safety/terminal{
pixel_x = 15;
@@ -36875,11 +34298,12 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"hCv" = (
+"hCF" = (
+/obj/structure/machinery/light,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "blue"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/upper/aft_hallway)
"hCS" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin/uscm{
@@ -36914,33 +34338,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"hDA" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 2
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/shipboard/panic)
-"hDL" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"hDR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/syringe_case{
@@ -36956,6 +34353,16 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
+"hDU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"hDV" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/map_item,
@@ -36978,12 +34385,54 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"hEg" = (
+/obj/structure/machinery/door_control{
+ id = "laddersouthwest";
+ name = "South West Ladders Shutters";
+ pixel_x = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
+"hEj" = (
+/obj/structure/machinery/vending/hydronutrients,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"hEl" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"hEm" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"hEr" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"hEw" = (
/obj/structure/pipes/standard/simple/visible{
dir = 10
@@ -36993,32 +34442,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"hEy" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
-"hEB" = (
-/obj/structure/ladder{
- height = 2;
- id = "AftStarboardMaint"
- },
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/upper/u_a_s)
-"hEQ" = (
-/obj/structure/machinery/door/airlock/almayer/medical/glass{
- dir = 1;
- id = "medcryobeds";
- id_tag = "medcryobeds";
- name = "Medical Wheelchair Storage";
- req_access = null;
- req_one_access = null
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/medical/lower_medical_medbay)
"hEV" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
@@ -37048,17 +34471,15 @@
icon_state = "test_floor4"
},
/area/almayer/medical/morgue)
-"hFR" = (
-/obj/structure/ladder{
- height = 1;
- id = "AftStarboardMaint"
+"hGo" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = 32
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
},
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/hallways/upper/aft_hallway)
"hGG" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -37130,48 +34551,15 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"hHJ" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- id = "vehicle1door";
- name = "Vehicle Bay One"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
-"hHR" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_umbilical)
-"hIh" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-y"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/shipboard/brig/cic_hallway)
-"hIl" = (
+"hIp" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5
+ icon_state = "E";
+ pixel_x = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/p_bow)
-"hIq" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/lower/l_a_p)
"hIs" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -37182,6 +34570,16 @@
icon_state = "dark_sterile"
},
/area/almayer/command/corporateliaison)
+"hIF" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
+"hIG" = (
+/obj/structure/largecrate/random,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"hII" = (
/obj/structure/machinery/cm_vending/gear/tl{
density = 0;
@@ -37196,14 +34594,12 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"hIT" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
+"hIX" = (
+/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/mess)
+/area/almayer/maint/hull/upper/u_a_p)
"hJg" = (
/obj/structure/pipes/trinary/mixer{
dir = 4;
@@ -37223,21 +34619,27 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"hJu" = (
-/obj/structure/sign/safety/stairs{
- pixel_x = -15
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
+"hJD" = (
+/obj/structure/bed/sofa/south/grey/right{
+ pixel_y = 12
},
-/area/almayer/hallways/aft_hallway)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"hJI" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"hKe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"hKl" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/warning_stripes{
@@ -37261,30 +34663,52 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"hLq" = (
+"hKJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/sign/safety/water{
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"hKO" = (
+/obj/structure/largecrate/random/barrel/green,
+/obj/structure/sign/safety/maint{
pixel_x = 8;
pixel_y = 32
},
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"hLt" = (
+/obj/structure/sign/poster{
+ desc = "It says DRUG.";
+ icon_state = "poster2";
+ pixel_y = 30
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/upper/u_a_p)
+"hLu" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
"hLC" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
-"hLD" = (
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = 8;
- pixel_y = -32
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"hLI" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -37302,14 +34726,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
-"hLW" = (
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/s_bow)
"hMc" = (
/obj/structure/bed/chair/comfy/orange{
dir = 8
@@ -37320,33 +34736,39 @@
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer,
/area/almayer/living/chapel)
-"hMs" = (
-/obj/structure/bed/stool,
+"hMk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"hMG" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/engineering/lower)
+"hMM" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"hMN" = (
/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/almayer{
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_three)
-"hMV" = (
-/obj/item/storage/firstaid,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
"hNh" = (
-/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/maint/hull/lower/l_f_p)
"hNl" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21";
@@ -37358,17 +34780,15 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"hNn" = (
-/obj/structure/surface/rack,
-/obj/item/tool/weldingtool,
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"hNv" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "green"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/hallways/lower/port_midship_hallway)
"hNw" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -37376,14 +34796,17 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/squads/charlie)
-"hNJ" = (
-/obj/structure/surface/rack,
-/obj/item/tool/kitchen/rollingpin,
-/obj/item/tool/hatchet,
+"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{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/hallways/lower/vehiclehangar)
"hNM" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/stack/sheet/metal{
@@ -37410,21 +34833,25 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"hOc" = (
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"hOu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/area/almayer/maint/hull/upper/s_stern)
-"hOR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/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/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"hOV" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/lower/constr)
"hPe" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research,
@@ -37437,12 +34864,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/medical_science)
-"hPf" = (
-/obj/structure/machinery/landinglight/ds2/delayone{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
"hPh" = (
/obj/structure/bed/chair/comfy,
/turf/open/floor/almayer{
@@ -37450,16 +34871,34 @@
icon_state = "silver"
},
/area/almayer/living/auxiliary_officer_office)
-"hPI" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/shipboard/brig/perma)
-"hPK" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
+"hPr" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
/turf/open/floor/almayer{
- dir = 1;
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"hPu" = (
+/obj/structure/largecrate/supply,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"hPD" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
icon_state = "orange"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/hallways/lower/starboard_umbilical)
+"hPI" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/shipboard/brig/perma)
"hPN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -37484,6 +34923,10 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie_delta_shared)
+"hQf" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"hQw" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -37491,6 +34934,10 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
+"hQK" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/u_m_p)
"hQP" = (
/obj/structure/reagent_dispensers/fueltank/custom,
/turf/open/floor/almayer{
@@ -37572,6 +35019,17 @@
icon_state = "plate"
},
/area/almayer/living/numbertwobunks)
+"hRA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"hRW" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
@@ -37599,6 +35057,26 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"hSb" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
+"hSj" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Brig";
+ closeOtherId = "brigmaint_n"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"hSk" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
@@ -37611,6 +35089,18 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"hSv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Starboard Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"hSw" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -37632,13 +35122,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/morgue)
-"hSL" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/repair_bay)
"hTc" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -37654,12 +35137,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"hTj" = (
-/obj/structure/machinery/vending/cigarette,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"hTl" = (
/obj/structure/prop/server_equipment/yutani_server{
density = 0;
@@ -37724,6 +35201,28 @@
icon_state = "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{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"hUb" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"hUk" = (
/turf/open/floor/almayer{
dir = 10;
@@ -37766,15 +35265,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"hVl" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"hVz" = (
/obj/structure/machinery/light{
dir = 1
@@ -37784,6 +35274,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
+"hVL" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"hWq" = (
/obj/structure/platform{
layer = 3.1
@@ -37832,6 +35328,27 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"hWD" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
+"hWH" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"hWJ" = (
/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
@@ -37847,14 +35364,11 @@
},
/area/almayer/command/cichallway)
"hWV" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/upper/aft_hallway)
"hXb" = (
/turf/open/floor/almayer{
dir = 1;
@@ -37892,6 +35406,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
+"hXD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"hXG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -37930,12 +35450,12 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"hYj" = (
-/obj/structure/platform_decoration,
+"hYf" = (
+/obj/effect/landmark/yautja_teleport,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/lower/l_a_s)
"hYn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37948,34 +35468,14 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"hYw" = (
-/obj/item/tool/wet_sign,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"hYE" = (
-/obj/structure/closet/crate{
- desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service.";
- name = "special operations crate"
- },
-/obj/item/clothing/mask/gas/swat,
-/obj/item/clothing/mask/gas/swat,
-/obj/item/clothing/mask/gas/swat,
-/obj/item/clothing/mask/gas/swat,
-/obj/item/attachable/suppressor,
-/obj/item/attachable/suppressor,
-/obj/item/attachable/suppressor,
-/obj/item/attachable/suppressor,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/obj/item/explosive/grenade/smokebomb,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22";
+ pixel_y = 8
},
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"hYG" = (
/obj/structure/bed/chair{
dir = 1
@@ -38004,14 +35504,12 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"hZp" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"hZw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/area/almayer/maint/hull/upper/p_stern)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"hZE" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -38056,6 +35554,10 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"hZZ" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"iaa" = (
/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap,
/turf/open/floor/almayer{
@@ -38094,14 +35596,6 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
-"iao" = (
-/obj/structure/closet,
-/obj/item/clothing/glasses/mgoggles/prescription,
-/obj/item/clothing/glasses/mbcg,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"iaq" = (
/obj/structure/machinery/vending/cola,
/turf/open/floor/almayer{
@@ -38114,10 +35608,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"iay" = (
-/obj/item/paper/almayer_storage,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
"iaF" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -38144,6 +35634,24 @@
icon_state = "plating_striped"
},
/area/almayer/squads/req)
+"ibf" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/s_bow)
+"ibP" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -19;
+ pixel_y = -6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = -19;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"icp" = (
/turf/open/floor/almayer{
dir = 8;
@@ -38177,17 +35685,6 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/processing)
-"idf" = (
-/obj/structure/largecrate/random/barrel/white,
-/obj/structure/sign/safety/security{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
"idx" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -38200,7 +35697,7 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"idV" = (
+"idL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -38218,6 +35715,28 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
+"iea" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
+"ied" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"ien" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"ieu" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -38288,21 +35807,6 @@
dir = 4
},
/area/almayer/command/airoom)
-"ieG" = (
-/obj/structure/platform{
- dir = 8
- },
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"ieX" = (
/obj/structure/surface/table/almayer,
/obj/structure/sign/safety/distribution_pipes{
@@ -38327,6 +35831,13 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
+"igb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"igr" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
@@ -38335,6 +35846,18 @@
icon_state = "tcomms"
},
/area/almayer/command/airoom)
+"igs" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/lower/engine_core)
"igt" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -38346,6 +35869,39 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"igw" = (
+/obj/structure/sign/poster/ad{
+ pixel_x = 30
+ },
+/obj/structure/closet,
+/obj/item/clothing/mask/cigarette/weed,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"igS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
+"iho" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/lower/constr)
"ihw" = (
/obj/structure/machinery/cm_vending/sorted/medical,
/turf/open/floor/almayer{
@@ -38353,15 +35909,13 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"ihF" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"ihI" = (
-/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/almayer/maint/hull/upper/u_a_s)
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"ihM" = (
/obj/structure/machinery/cm_vending/clothing/marine/delta{
density = 0;
@@ -38374,6 +35928,15 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
+"ihW" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"ihX" = (
/obj/structure/machinery/status_display{
pixel_y = -30
@@ -38423,16 +35986,6 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"iiC" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"iiZ" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer{
@@ -38448,6 +36001,14 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"ijn" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"ijr" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -38456,14 +36017,6 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"ijw" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"ijQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door_control{
@@ -38483,6 +36036,11 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/sea_office)
+"ikl" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"iks" = (
/obj/structure/pipes/binary/pump/high_power/on{
dir = 1
@@ -38503,24 +36061,19 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"ikL" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -14;
- pixel_y = 13
+"ikA" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
+/area/almayer/maint/hull/lower/s_bow)
+"ikC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/mess)
+/area/almayer/maint/hull/upper/u_a_s)
"ikQ" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/tool/stamp/hop{
@@ -38542,6 +36095,9 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"ikT" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"ilq" = (
/turf/open/floor/almayer{
dir = 4;
@@ -38587,25 +36143,26 @@
},
/area/almayer/medical/morgue)
"imt" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
},
-/area/almayer/maint/hull/lower/l_f_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"imy" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/living/offices/flight)
-"inq" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/tool,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+"inh" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
-/area/almayer/maint/hull/lower/l_m_s)
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-y"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/shipboard/brig/cic_hallway)
"ins" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -38619,17 +36176,6 @@
},
/turf/open/floor/plating,
/area/almayer/engineering/upper_engineering)
-"iny" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 2;
- id = "OuterShutter";
- name = "\improper Saferoom Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/panic)
"inL" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -38640,9 +36186,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"iov" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
"iow" = (
/obj/structure/machinery/cm_vending/sorted/attachments/squad{
req_access = null;
@@ -38663,6 +36206,9 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
+"ioM" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"ioP" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -38676,12 +36222,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/stern_point_defense)
-"ioT" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
"ioU" = (
/turf/closed/wall/almayer,
/area/almayer/command/securestorage)
@@ -38692,12 +36232,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/general_equipment)
-"ioX" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"ipa" = (
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/warning_stripes{
@@ -38713,6 +36247,39 @@
},
/turf/open/floor/plating,
/area/almayer/living/port_emb)
+"ipk" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/lower/l_f_s)
+"ipn" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"ipr" = (
+/obj/item/tool/weldpack{
+ pixel_y = 15
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/welding,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"ipB" = (
+/obj/structure/surface/rack,
+/obj/item/tool/kitchen/rollingpin,
+/obj/item/tool/hatchet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"ipE" = (
/obj/structure/bed/chair{
dir = 8
@@ -38721,16 +36288,6 @@
icon_state = "orangefull"
},
/area/almayer/squads/alpha_bravo_shared)
-"ipF" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/toolcloset,
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
"ipK" = (
/obj/effect/step_trigger/message/memorial,
/turf/open/floor/almayer{
@@ -38757,20 +36314,21 @@
icon_state = "sterile_green"
},
/area/almayer/medical/hydroponics)
-"ipY" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/device/camera_film{
- pixel_x = 4;
- pixel_y = -2
- },
-/turf/open/floor/almayer,
-/area/almayer/squads/charlie_delta_shared)
"iqd" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
+"iqo" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_22"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
"iqp" = (
/obj/structure/machinery/door/airlock/almayer/maint{
access_modified = 1;
@@ -38792,13 +36350,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"iqN" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"iqR" = (
/obj/structure/sign/safety/cryo{
pixel_x = -16
@@ -38817,19 +36368,23 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
-"irA" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
"irF" = (
/obj/structure/closet/emcloset/legacy,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/shipboard/brig/main_office)
+"irJ" = (
+/obj/item/tool/wirecutters{
+ pixel_y = -7
+ },
+/obj/structure/sign/poster{
+ desc = "You are becoming hysterical.";
+ icon_state = "poster11";
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"irS" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/cable/heavyduty{
@@ -38862,15 +36417,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
-"isz" = (
+"isq" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/maint/hull/upper/u_m_p)
"isC" = (
/obj/effect/projector{
name = "Almayer_AresDown";
@@ -38907,15 +36462,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/morgue)
-"isW" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/aft_hallway)
"itf" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -38976,6 +36522,17 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
+"iuf" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"iun" = (
/obj/effect/spawner/random/tool,
/turf/open/floor/plating/plating_catwalk,
@@ -39016,6 +36573,12 @@
/obj/structure/machinery/computer/emails,
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"iuI" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"ivf" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/camera,
@@ -39036,42 +36599,22 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
-"ivy" = (
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_s)
+"ivu" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"ivz" = (
/obj/structure/closet,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/living/port_emb)
-"ivB" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"ivG" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -16;
- pixel_y = 13
+"ivL" = (
+/obj/structure/platform{
+ dir = 8
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/maint/hull/upper/u_a_p)
"ivM" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -39087,6 +36630,12 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
+"ivV" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"iwf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -39158,14 +36707,6 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"ixc" = (
-/obj/structure/sign/safety/storage{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
"ixj" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/crew/alt,
@@ -39173,13 +36714,14 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lockerroom)
-"ixl" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
+"ixu" = (
+/obj/structure/largecrate/random/case{
+ layer = 2.98
},
-/obj/structure/machinery/power/apc/almayer,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"ixv" = (
/obj/structure/bed/chair/comfy/blue{
dir = 4
@@ -39188,26 +36730,6 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"ixB" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_m_s)
-"ixC" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/stern_hallway)
"ixD" = (
/obj/structure/machinery/light,
/obj/effect/decal/warning_stripes{
@@ -39234,6 +36756,27 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
+"ixT" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"iyC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
+"iyE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"iyF" = (
/obj/structure/pipes/standard/simple/visible{
dir = 9
@@ -39291,9 +36834,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
-"izT" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/hull/upper/u_f_p)
"izY" = (
/obj/structure/machinery/autodoc_console,
/turf/open/floor/almayer{
@@ -39301,12 +36841,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"iAo" = (
-/obj/structure/sign/safety/storage{
- pixel_x = -17
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"iAw" = (
/obj/item/tool/warning_cone{
pixel_x = -12
@@ -39328,14 +36862,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/containment)
-"iAB" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = -25
- },
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"iAE" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -39344,16 +36870,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/engine_core)
-"iAT" = (
-/obj/structure/sign/safety/south{
- pixel_x = -17;
- pixel_y = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
- },
-/area/almayer/hallways/port_hallway)
"iBl" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -39364,12 +36880,14 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"iBs" = (
-/obj/structure/largecrate/random/barrel/blue,
+"iBu" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/lower/p_bow)
"iBY" = (
/obj/structure/machinery/vending/snack,
/turf/open/floor/almayer{
@@ -39397,6 +36915,14 @@
icon_state = "test_floor4"
},
/area/almayer/command/cichallway)
+"iCD" = (
+/obj/structure/bed/chair/comfy/orange{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"iCF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -39409,62 +36935,24 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"iCI" = (
-/obj/structure/largecrate/supply/supplies/mre,
+"iDk" = (
+/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"iDd" = (
-/obj/structure/machinery/door/poddoor/railing{
- id = "vehicle_elevator_railing_aux"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
-"iDe" = (
-/obj/structure/machinery/cm_vending/clothing/senior_officer{
- pixel_y = 0
+ icon_state = "plate"
},
+/area/almayer/maint/hull/lower/l_m_p)
+"iDs" = (
+/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "plate"
},
-/area/almayer/medical/upper_medical)
-"iDx" = (
-/obj/structure/surface/rack,
-/obj/item/circuitboard/firealarm,
-/obj/item/circuitboard,
-/obj/item/clipboard,
+/area/almayer/maint/hull/upper/u_a_s)
+"iEa" = (
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_stern)
-"iDD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
-"iDN" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"iEb" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/hull/upper/p_bow)
"iEg" = (
/turf/open/floor/almayer{
dir = 9;
@@ -39508,10 +36996,17 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"iED" = (
-/obj/structure/curtain/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+"iEM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"iFc" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/wood/ship,
@@ -39521,6 +37016,29 @@
icon_state = "bluefull"
},
/area/almayer/living/pilotbunks)
+"iFp" = (
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"iFA" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Port Railguns and Viewing Room"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"iFC" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/map_item,
@@ -39560,6 +37078,29 @@
icon_state = "test_floor4"
},
/area/almayer/living/port_emb)
+"iFY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/cryo{
+ pixel_x = 36
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/cryo_cells)
+"iGc" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"iGi" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"iGn" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/closet/secure_closet/surgical{
@@ -39570,29 +37111,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_four)
-"iGH" = (
-/obj/structure/platform_decoration,
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -14;
- pixel_y = 13
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"iGO" = (
-/obj/structure/machinery/door/airlock/almayer/security{
- dir = 2;
- name = "\improper Dropship Control Bubble";
- req_access = null;
- req_one_access_txt = "3;22;2;19"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
+"iGE" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 8;
+ icon_state = "red"
},
-/area/almayer/living/offices/flight)
+/area/almayer/hallways/upper/aft_hallway)
"iGQ" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
@@ -39604,6 +37128,15 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"iGZ" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"iHc" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/notunnel)
@@ -39615,10 +37148,6 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cells)
-"iIa" = (
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"iIj" = (
/obj/structure/stairs/perspective{
dir = 8;
@@ -39640,12 +37169,20 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"iIt" = (
-/obj/structure/machinery/light/small,
+"iIH" = (
+/obj/structure/largecrate/supply/medicine/medivend{
+ pixel_x = 3
+ },
+/obj/structure/largecrate/random/mini/med{
+ pixel_x = 3;
+ pixel_y = 11;
+ density = 1
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "sterile_green_side"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/medical/lower_medical_medbay)
"iIP" = (
/obj/structure/toilet{
pixel_y = 16
@@ -39660,6 +37197,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
+"iIQ" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"iIR" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -39671,21 +37217,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
-"iJb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = -34
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
-"iJA" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"iJB" = (
/obj/structure/sign/safety/galley{
pixel_x = 8;
@@ -39706,12 +37237,13 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"iJU" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"iJT" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
},
-/area/almayer/maint/hull/lower/l_a_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"iKb" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
@@ -39741,15 +37273,6 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha)
-"iKB" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
"iKD" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
@@ -39777,6 +37300,15 @@
icon_state = "mono"
},
/area/almayer/engineering/port_atmos)
+"iKV" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"iKZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -39809,6 +37341,15 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"iLm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"iLo" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -39844,13 +37385,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_lobby)
-"iLv" = (
-/obj/item/stool{
- pixel_x = 15;
- pixel_y = 6
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"iLG" = (
/obj/structure/disposalpipe/junction{
dir = 1;
@@ -39859,15 +37393,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
-"iLH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"iLO" = (
/turf/open/floor/almayer{
dir = 4;
@@ -39902,6 +37427,35 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"iNk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
+"iNH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/maint{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
+"iNR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"iNY" = (
/obj/structure/machinery/status_display{
pixel_x = 32;
@@ -39909,33 +37463,51 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"iOt" = (
-/obj/structure/machinery/vending/cigarette{
- density = 0;
- pixel_y = 18
+"iOo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/area/almayer/maint/hull/upper/u_a_p)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"iOD" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"iPe" = (
+"iOP" = (
/turf/open/floor/almayer{
- dir = 8;
+ dir = 5;
icon_state = "red"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"iPm" = (
-/obj/structure/largecrate/random/barrel/green,
+/area/almayer/hallways/upper/stern_hallway)
+"iOX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/lower/l_f_s)
+"iPf" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
+"iPq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
+"iPt" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"iPv" = (
/obj/structure/bed/chair/comfy,
/obj/structure/window/reinforced/ultra,
@@ -39947,16 +37519,6 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"iPy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/squads/req)
"iPD" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -39973,12 +37535,47 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"iPK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"iPN" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/station_alert,
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
"iPS" = (
/obj/structure/machinery/cryopod/right,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/squads/alpha)
+"iPU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"iQd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -40061,31 +37658,25 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"iQK" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/stern)
-"iQR" = (
-/obj/structure/sign/safety/storage{
+"iQJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
pixel_x = 8;
- pixel_y = 32
+ pixel_y = -32
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
-"iRr" = (
-/obj/structure/machinery/light{
- dir = 1
+/area/almayer/maint/hull/lower/l_f_s)
+"iRi" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
},
/turf/open/floor/almayer{
- dir = 1;
+ dir = 4;
icon_state = "green"
},
-/area/almayer/hallways/port_hallway)
-"iRx" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"iRy" = (
/obj/structure/pipes/vents/pump/on,
/turf/open/floor/almayer,
@@ -40106,9 +37697,6 @@
dir = 4
},
/area/almayer/medical/containment/cell)
-"iSe" = (
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_p)
"iSm" = (
/obj/structure/pipes/vents/pump,
/obj/structure/mirror{
@@ -40155,18 +37743,34 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
-"iSr" = (
-/obj/item/reagent_container/glass/bucket/janibucket{
- pixel_x = -1;
- pixel_y = 13
+"iSu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/structure/sign/safety/water{
- pixel_x = -17
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"iSB" = (
+/obj/structure/platform_decoration{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_s)
+/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{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"iSZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40203,6 +37807,10 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
+"iTq" = (
+/obj/structure/curtain/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"iTw" = (
/obj/structure/bed/chair/comfy{
dir = 4
@@ -40221,22 +37829,20 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"iTK" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"iTQ" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"iUh" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = -16
},
-/area/almayer/hallways/aft_hallway)
-"iTV" = (
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/maint/hull/upper/p_bow)
"iUk" = (
/obj/structure/machinery/door/airlock/almayer/marine/charlie{
dir = 1
@@ -40278,18 +37884,11 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"iUD" = (
-/obj/structure/bed/chair,
+"iUV" = (
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
-"iUS" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "bluecorner"
},
-/area/almayer/maint/upper/u_m_p)
+/area/almayer/hallways/upper/aft_hallway)
"iUW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -40300,17 +37899,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"iVj" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/prop/almayer/computer/PC{
- dir = 4
- },
-/obj/item/tool/stamp/approved{
- pixel_y = -11;
- pixel_x = -3
- },
-/turf/open/floor/almayer,
-/area/almayer/squads/req)
"iVy" = (
/turf/open/floor/almayer{
dir = 1;
@@ -40323,6 +37911,15 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"iVG" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"iVP" = (
/obj/structure/sign/safety/restrictedarea{
pixel_x = -17;
@@ -40334,11 +37931,13 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"iVQ" = (
-/obj/structure/closet/crate/trashcart,
-/obj/effect/spawner/random/balaclavas,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+"iWa" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"iWc" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -40349,15 +37948,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/delta)
-"iWd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
"iWx" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -40368,35 +37958,37 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"iWD" = (
-/obj/structure/platform{
+"iWH" = (
+/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
-"iWL" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/item/reagent_container/glass/bucket/mopbucket,
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 14
+ },
+/obj/structure/janitorialcart,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
-/area/almayer/hallways/vehiclehangar)
-"iWN" = (
+/area/almayer/maint/lower/s_bow)
+"iWJ" = (
+/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/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{
icon_state = "kitchen"
},
/area/almayer/engineering/upper_engineering)
-"iWW" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
"iXb" = (
/obj/structure/bed/chair/comfy/delta{
dir = 8
@@ -40405,12 +37997,28 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
+"iXm" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "InnerShutter";
+ name = "\improper Saferoom Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/panic)
"iXA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"iXB" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"iXT" = (
/obj/item/trash/uscm_mre,
/turf/open/floor/almayer,
@@ -40457,16 +38065,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/medical/hydroponics)
-"iYj" = (
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
+"iYm" = (
+/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/upper/s_stern)
"iYr" = (
/obj/structure/machinery/light{
dir = 4
@@ -40492,20 +38096,12 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"iYR" = (
-/obj/structure/largecrate/supply/medicine/medivend{
- pixel_x = 3
- },
-/obj/structure/largecrate/random/mini/med{
- pixel_x = 3;
- pixel_y = 11;
- density = 1
- },
+"iZd" = (
+/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
+ icon_state = "plate"
},
-/area/almayer/medical/lower_medical_medbay)
+/area/almayer/maint/hull/lower/l_m_p)
"iZg" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -40515,14 +38111,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"iZh" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"iZw" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_AresUp";
@@ -40553,15 +38141,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop/hangar)
-"iZH" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "emerald"
- },
-/area/almayer/hallways/port_hallway)
"iZP" = (
/obj/structure/platform{
dir = 8
@@ -40595,6 +38174,12 @@
icon_state = "plate"
},
/area/almayer/squads/req)
+"jae" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
"jaf" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 4
@@ -40611,16 +38196,51 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"jaF" = (
-/obj/structure/bed/chair,
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"jak" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
+"jao" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
+"jas" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
+"jay" = (
+/obj/structure/surface/rack,
+/obj/item/tool/shovel/etool{
+ pixel_x = 6
+ },
+/obj/item/tool/shovel/etool,
+/obj/item/tool/wirecutters,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/lower/l_a_p)
+"jaz" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"jaH" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/paper_bin/uscm{
@@ -40631,15 +38251,13 @@
icon_state = "plating"
},
/area/almayer/command/airoom)
-"jaK" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"jaI" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
},
-/area/almayer/hallways/vehiclehangar)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"jaM" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -40666,15 +38284,10 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
-"jbl" = (
-/obj/structure/largecrate/random/case/small,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
+"jaW" = (
+/obj/effect/landmark/start/reporter,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"jbq" = (
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
@@ -40740,37 +38353,36 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"jbS" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+"jbO" = (
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"jbX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/weapon_room)
-"jca" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
"jcf" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/shipboard/brig/processing)
-"jcs" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+"jcE" = (
+/obj/structure/machinery/vending/coffee{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"jcP" = (
/turf/open/floor/almayer{
icon_state = "plating_striped"
},
/area/almayer/engineering/upper_engineering/starboard)
-"jdk" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_umbilical)
"jdm" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -40785,6 +38397,21 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
+"jdn" = (
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
+"jdu" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"jdC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"jdG" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -40795,9 +38422,20 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_three)
+"jdZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"jeb" = (
/turf/closed/wall/almayer,
/area/almayer/squads/alpha_bravo_shared)
+"jei" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"jeq" = (
/obj/structure/surface/rack,
/obj/item/storage/box/pillbottles{
@@ -40813,6 +38451,27 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
+"jer" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/l_a_p)
+"jev" = (
+/obj/structure/largecrate/random/case/small,
+/obj/item/device/taperecorder{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = -9;
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"jew" = (
/obj/structure/surface/table/reinforced/black,
/turf/open/floor/almayer{
@@ -40850,25 +38509,15 @@
icon_state = "red"
},
/area/almayer/living/cryo_cells)
-"jfn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
-"jfD" = (
-/obj/structure/sign/safety/security{
- pixel_y = -32
- },
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = 15;
- pixel_y = -32
+"jeR" = (
+/obj/structure/machinery/light{
+ dir = 4
},
+/obj/structure/bed/chair/bolted,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/shipboard/brig/perma)
"jfK" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -40879,6 +38528,13 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"jfS" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"jfY" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/map_item,
@@ -40984,12 +38640,20 @@
icon_state = "blue"
},
/area/almayer/command/cichallway)
-"jgU" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
+"jgK" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"jgS" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"jhb" = (
/obj/structure/sign/safety/cryo{
pixel_x = -6;
@@ -40997,12 +38661,27 @@
},
/turf/closed/wall/almayer,
/area/almayer/living/cryo_cells)
+"jhc" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_umbilical)
+"jhm" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"jhn" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_four)
+"jhs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"jht" = (
/obj/structure/machinery/vending/coffee{
density = 0;
@@ -41025,6 +38704,10 @@
icon_state = "green"
},
/area/almayer/living/offices)
+"jhA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"jhD" = (
/obj/structure/machinery/firealarm{
pixel_y = -28
@@ -41038,6 +38721,29 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/chief_mp_office)
+"jhK" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"jhR" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"jhS" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "vehicle_elevator_railing_aux"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"jhW" = (
/obj/structure/machinery/cryopod/right,
/turf/open/floor/almayer{
@@ -41056,23 +38762,17 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/lobby)
-"jiq" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/obj/structure/machinery/power/reactor,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/engineering/lower/engine_core)
-"jiw" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"jiM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/area/almayer/hallways/port_hallway)
+/obj/structure/surface/rack,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/obj/item/frame/table,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"jiU" = (
/obj/structure/sink{
dir = 1;
@@ -41092,6 +38792,13 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
+"jjl" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 8;
+ id = "vehicle_elevator_railing_aux"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"jjm" = (
/obj/structure/closet/secure_closet{
name = "\improper Lethal Injection Locker"
@@ -41120,13 +38827,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lower_medical_medbay)
-"jjs" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 4;
- id = "vehicle_elevator_railing_aux"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"jjS" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -41140,40 +38840,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/medical_science)
-"jjT" = (
-/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/port_hallway)
-"jjZ" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/vehicle/powerloader{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "cargo"
- },
-/area/almayer/hallways/vehiclehangar)
-"jkb" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"jkd" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_hallway)
"jkj" = (
/obj/structure/machinery/portable_atmospherics/powered/pump,
/obj/structure/machinery/light{
@@ -41190,6 +38856,17 @@
icon_state = "plate"
},
/area/almayer/medical/morgue)
+"jkq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"jks" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -41249,20 +38926,40 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"jlc" = (
+"jkN" = (
+/obj/structure/largecrate/random/barrel/yellow,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/upper/starboard)
-"jln" = (
+/area/almayer/maint/hull/lower/l_a_s)
+"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
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 15;
+ pixel_y = 32
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "silver"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/hallways/lower/repair_bay)
+"jlc" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/starboard)
"jlA" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -41274,6 +38971,11 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/containment)
+"jlD" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"jlG" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -41319,12 +39021,6 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"jmm" = (
-/obj/structure/machinery/gel_refiller,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lower_medical_medbay)
"jmn" = (
/obj/structure/surface/table/almayer,
/obj/item/prop/magazine/dirty{
@@ -41338,6 +39034,15 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
+"jmz" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"jmK" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -41364,30 +39069,45 @@
icon_state = "blue"
},
/area/almayer/command/cichallway)
-"jnl" = (
-/obj/structure/largecrate/supply/floodlights,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"jnw" = (
+"jnc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/obj/structure/sign/safety/bridge{
- pixel_y = 32
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/sign/safety/reception{
- pixel_x = 15;
- pixel_y = 32
+/area/almayer/hallways/lower/port_midship_hallway)
+"jne" = (
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"jnh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/maint/upper/mess)
+"jno" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"jnx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"jnD" = (
/turf/open/floor/almayer{
dir = 1;
@@ -41410,11 +39130,6 @@
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/command/cic)
-"jon" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/stern)
"joG" = (
/obj/structure/machinery/washing_machine,
/obj/structure/sign/poster{
@@ -41465,25 +39180,12 @@
},
/turf/open/floor/almayer,
/area/almayer/living/gym)
-"jpu" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_a_s)
-"jpX" = (
-/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
- access_modified = 1;
- req_one_access = null;
- req_one_access_txt = "2;7"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "CIC Lockdown";
- name = "\improper Combat Information Center Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"jpW" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
},
-/area/almayer/maint/upper/mess)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"jqP" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "ARES Interior";
@@ -41518,6 +39220,10 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"jri" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"jrm" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -41528,6 +39234,38 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"jru" = (
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/press_area_ag{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
+"jrB" = (
+/obj/structure/bed/chair,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
+"jrI" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"jrM" = (
/obj/structure/machinery/camera/autoname/almayer/containment{
dir = 4
@@ -41537,22 +39275,17 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"jrN" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"jsa" = (
+/obj/structure/machinery/light{
+ dir = 8
},
-/area/almayer/maint/lower/s_bow)
-"jsj" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "cargo"
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
},
-/area/almayer/maint/hull/lower/l_f_s)
-"jsn" = (
-/obj/structure/bed/chair/office/dark,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/hallways/lower/port_fore_hallway)
"jss" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -41561,6 +39294,14 @@
icon_state = "bluefull"
},
/area/almayer/living/captain_mess)
+"jsu" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"jsx" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -41572,6 +39313,17 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"jsA" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
+"jsE" = (
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"jsP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -41581,19 +39333,14 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"jta" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/effect/landmark/yautja_teleport,
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"jsR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 2
},
-/area/almayer/maint/hull/lower/l_m_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/vehiclehangar)
"jtj" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -41602,27 +39349,37 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"jtv" = (
-/obj/structure/sign/poster/safety,
-/turf/closed/wall/almayer,
-/area/almayer/maint/lower/s_bow)
-"jtG" = (
-/obj/effect/landmark/yautja_teleport,
+"jts" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
+"jtU" = (
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"jtJ" = (
-/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
+/area/almayer/maint/hull/upper/u_m_p)
+"jtZ" = (
+/obj/structure/machinery/light{
+ dir = 4
},
/turf/open/floor/almayer{
dir = 4;
- icon_state = "greencorner"
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"juo" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
+"jux" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"juD" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -41630,23 +39387,17 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
-"juV" = (
-/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
+"juS" = (
+/obj/structure/machinery/gear{
+ id = "vehicle_elevator_gears"
},
-/obj/structure/machinery/light/small{
- dir = 8
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/hallways/lower/vehiclehangar)
"juX" = (
/obj/structure/platform_decoration{
dir = 1
@@ -41692,12 +39443,41 @@
icon_state = "test_floor4"
},
/area/almayer/squads/alpha)
+"jvt" = (
+/obj/item/tool/warning_cone{
+ pixel_x = -20;
+ pixel_y = 18
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice12";
+ pixel_y = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"jvz" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"jvB" = (
/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer/no_build{
dir = 4
},
/area/almayer/command/airoom)
+"jvD" = (
+/obj/structure/machinery/door_control{
+ id = "laddersouthwest";
+ name = "South West Ladders Shutters";
+ pixel_x = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"jvM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -41740,20 +39520,35 @@
"jvY" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/command/telecomms)
-"jwa" = (
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
+"jwi" = (
+/obj/structure/machinery/door_control{
+ id = "InnerShutter";
+ name = "Inner Shutter";
+ pixel_x = 5;
+ pixel_y = 10
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 32;
- pixel_y = 8
+/obj/item/toy/deck{
+ pixel_x = -9
},
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = 32;
- pixel_y = -7
+/obj/item/ashtray/plastic,
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/sign/safety/intercom{
+ pixel_y = -32
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/lower/l_f_s)
+/turf/open/floor/almayer{
+ icon_state = "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)
+"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{
@@ -41761,6 +39556,19 @@
icon_state = "red"
},
/area/almayer/squads/alpha_bravo_shared)
+"jwM" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
+"jwP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"jxi" = (
/obj/structure/machinery/sleep_console,
/turf/open/floor/almayer{
@@ -41768,6 +39576,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"jxu" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"jxx" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -41783,13 +39597,15 @@
},
/turf/open/floor/plating,
/area/almayer/living/bridgebunks)
-"jxP" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
+"jxX" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/vehiclehangar)
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"jyb" = (
/turf/open/floor/almayer{
dir = 6;
@@ -41800,6 +39616,20 @@
/obj/structure/machinery/light,
/turf/open/floor/wood/ship,
/area/almayer/engineering/ce_room)
+"jyJ" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/ladder{
+ height = 2;
+ id = "cicladder3"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 23;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/medical/medical_science)
"jyR" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_one_access_txt = "7;23;27"
@@ -41808,24 +39638,6 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
-"jyU" = (
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/lower/l_f_s)
-"jzb" = (
-/obj/structure/machinery/landinglight/ds1/delayone{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/hangar)
-"jzp" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"jzD" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
icon_state = "almayer_pdoor";
@@ -41844,6 +39656,13 @@
icon_state = "plate"
},
/area/almayer/living/captain_mess)
+"jzT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"jzZ" = (
/obj/structure/platform_decoration,
/turf/open/floor/almayer{
@@ -41857,15 +39676,18 @@
icon_state = "plate"
},
/area/almayer/command/corporateliaison)
-"jAi" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/hallways/vehiclehangar)
-"jAl" = (
-/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted,
+"jAj" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
+ icon_state = "orangecorner"
},
-/area/almayer/medical/lower_medical_medbay)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"jAz" = (
/obj/structure/platform,
/obj/structure/platform{
@@ -41907,12 +39729,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/morgue)
-"jBI" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"jBO" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
@@ -41936,6 +39752,10 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
+"jCg" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/lower/l_m_s)
"jCn" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/screwdriver,
@@ -41947,13 +39767,18 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
-"jCu" = (
-/obj/structure/platform{
- dir = 1
+"jCr" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/item/tool/mop,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/s_bow)
+"jCx" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"jCK" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottomleft";
@@ -41964,22 +39789,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"jDf" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
-"jDh" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"jDk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -41997,6 +39806,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"jDz" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"jDO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -42037,28 +39855,28 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"jEj" = (
-/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "orange"
+"jEA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/almayer/maint/hull/lower/l_m_s)
-"jEm" = (
-/obj/structure/bed/sofa/south/white/right{
- pixel_y = 16
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
},
-/area/almayer/maint/hull/upper/u_m_p)
-"jEB" = (
-/obj/structure/bed/chair{
- dir = 4
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/hull/lower/l_a_p)
+"jEM" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"jES" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
@@ -42079,18 +39897,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/medical_science)
-"jFg" = (
-/obj/structure/pipes/standard/cap/hidden{
- dir = 4
- },
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
+"jFt" = (
+/obj/structure/machinery/light/small,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/area/almayer/hallways/stern_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"jFx" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/bucket{
@@ -42117,6 +39931,16 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"jFy" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/toolbox,
+/obj/item/clipboard,
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
"jFE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -42124,6 +39948,14 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
+"jFI" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"jFY" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
@@ -42147,16 +39979,18 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
-"jGN" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+"jGQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"jGR" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -42175,21 +40009,21 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
+"jHn" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/s_bow)
+"jHt" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/lower/repair_bay)
"jHC" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "silvercorner"
},
/area/almayer/command/computerlab)
-"jHG" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"jHL" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -42206,6 +40040,13 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/morgue)
+"jHX" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"jIo" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -42213,6 +40054,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/chief_mp_office)
+"jIC" = (
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
"jIH" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/straight_jacket,
@@ -42226,20 +40077,17 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/execution)
+"jIJ" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/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)
-"jIU" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"jIV" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
@@ -42249,18 +40097,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"jJe" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"jJk" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -42270,31 +40106,6 @@
icon_state = "blue"
},
/area/almayer/living/port_emb)
-"jJl" = (
-/obj/structure/airlock_assembly,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"jJs" = (
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
-"jJu" = (
-/obj/structure/surface/rack,
-/obj/item/storage/firstaid/adv/empty,
-/obj/item/storage/firstaid/adv/empty,
-/obj/item/storage/firstaid/adv/empty,
-/obj/structure/sign/safety/med_life_support{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "sterile_green_corner"
- },
-/area/almayer/medical/lower_medical_medbay)
"jKn" = (
/turf/open/floor/almayer{
dir = 5;
@@ -42317,14 +40128,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"jKA" = (
-/obj/structure/sign/safety/cryo{
- pixel_y = 26
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"jKF" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -42350,24 +40153,12 @@
icon_state = "cargo"
},
/area/almayer/engineering/port_atmos)
-"jKK" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"jLa" = (
-/obj/structure/machinery/vending/coffee{
- density = 0;
- pixel_y = 18
- },
+"jLg" = (
+/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/lower/port_aft_hallway)
"jLj" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -42383,37 +40174,12 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
-"jLv" = (
-/obj/structure/machinery/firealarm{
- dir = 1;
- pixel_y = -28
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
-"jLB" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/sign/safety/east{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/coffee{
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
-"jLK" = (
-/obj/structure/machinery/light{
- dir = 4
- },
+"jLH" = (
+/obj/structure/largecrate/supply/supplies/mre,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "emerald"
+ icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/hull/lower/l_m_p)
"jLM" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -42431,16 +40197,18 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"jLY" = (
-/obj/structure/disposalpipe/segment{
+"jMa" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/obj/structure/sign/safety/autoopenclose{
- pixel_x = 8;
- pixel_y = -32
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/hallways/lower/port_fore_hallway)
"jMm" = (
/obj/structure/closet/secure_closet/personal/cabinet{
req_access = null
@@ -42493,19 +40261,19 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
-"jMK" = (
+"jML" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliaison)
+"jMP" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
},
/turf/open/floor/almayer{
dir = 1;
- icon_state = "orange"
+ icon_state = "blue"
},
-/area/almayer/hallways/stern_hallway)
-"jML" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/wood/ship,
-/area/almayer/command/corporateliaison)
+/area/almayer/hallways/upper/aft_hallway)
"jMQ" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -42554,6 +40322,33 @@
icon_state = "test_floor4"
},
/area/almayer/medical/containment/cell)
+"jNo" = (
+/obj/structure/surface/rack,
+/obj/item/tool/shovel/etool{
+ pixel_x = 6
+ },
+/obj/item/tool/shovel/etool,
+/obj/item/tool/wirecutters,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"jNw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/scrubber{
+ dir = 8
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"jND" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -42561,6 +40356,11 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"jNG" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/spawner/random/balaclavas,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"jNT" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/execution)
@@ -42619,6 +40419,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/gym)
+"jOq" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"jOt" = (
+/obj/item/trash/barcardine,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"jOx" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -42671,6 +40481,24 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
+"jPu" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "Saferoom Channel";
+ pixel_x = 27
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
+"jPx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"jPP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -42683,30 +40511,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/chief_mp_office)
-"jQa" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"jPU" = (
+/obj/structure/machinery/light/small{
+ dir = 8
},
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = -28
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/lower/l_m_p)
"jQt" = (
/turf/open/floor/almayer/research/containment/floor2{
dir = 8
},
/area/almayer/medical/containment/cell)
-"jQK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
"jRc" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
/obj/structure/machinery/status_display{
@@ -42716,6 +40533,27 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"jRg" = (
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
+"jRm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
+"jRp" = (
+/obj/structure/largecrate/supply/supplies/water,
+/obj/item/toy/deck{
+ pixel_y = 12
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"jRz" = (
/obj/effect/step_trigger/teleporter/random{
affect_ghosts = 1;
@@ -42738,15 +40576,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"jRH" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/structure/bed/chair/bolted,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/brig/perma)
"jRK" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -42800,28 +40629,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/grunt_rnr)
-"jSz" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/s_bow)
-"jSF" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 2;
- id = "CIC Lockdown";
- layer = 2.2;
- name = "\improper Combat Information Center Blast Door"
- },
-/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{
- dir = 1;
- name = "\improper Command Power Substation"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/mess)
"jSU" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -42850,20 +40657,6 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"jTb" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/device/flashlight/lamp{
- pixel_y = 8
- },
-/obj/item/clothing/glasses/science{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/device/flash,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/medical/upper_medical)
"jTj" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -42873,12 +40666,41 @@
icon_state = "plating"
},
/area/almayer/medical/upper_medical)
+"jTt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door_control{
+ id = "laddernortheast";
+ name = "North East Ladders Shutters";
+ pixel_y = -25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"jTB" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "orangecorner"
},
/area/almayer/engineering/lower)
+"jTH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"jTI" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
@@ -42903,6 +40725,10 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
+"jUh" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"jUl" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -42940,18 +40766,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"jUK" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"jUM" = (
/obj/structure/machinery/camera/autoname/almayer/containment{
dir = 8
@@ -42961,6 +40775,16 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/medical_science)
+"jUV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"jUY" = (
/turf/open/floor/almayer{
icon_state = "silver"
@@ -42978,16 +40802,6 @@
},
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
-"jVi" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/spawner/random/powercell,
-/obj/effect/spawner/random/powercell,
-/obj/effect/spawner/random/bomb_supply,
-/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"jVr" = (
/obj/structure/machinery/cm_vending/clothing/marine/alpha{
density = 0;
@@ -43015,17 +40829,6 @@
icon_state = "test_floor5"
},
/area/almayer/command/computerlab)
-"jVM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"jVP" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -43045,28 +40848,12 @@
"jWh" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/upper_engineering/port)
-"jWn" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/secure_data{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"jWr" = (
/obj/structure/machinery/light{
dir = 4
},
/turf/open/floor/wood/ship,
/area/almayer/living/chapel)
-"jWt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"jWu" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -43076,13 +40863,6 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"jWU" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"jXd" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -43091,31 +40871,26 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
-"jXk" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/pipes/vents/scrubber{
- dir = 1
+"jXf" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ id_tag = "or03";
+ name = "Lobby"
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/vehiclehangar)
-"jXC" = (
-/obj/effect/landmark/start/doctor,
-/obj/effect/landmark/late_join/doctor,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/offices)
-"jXL" = (
-/obj/structure/platform{
- dir = 8
+/area/almayer/medical/lower_medical_medbay)
+"jXR" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = 32
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"jYc" = (
/obj/item/bedsheet/blue{
layer = 3.2
@@ -43158,21 +40933,24 @@
icon_state = "blue"
},
/area/almayer/living/port_emb)
-"jYd" = (
-/obj/structure/machinery/gear{
- id = "vehicle_elevator_gears"
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/vehiclehangar)
-"jYh" = (
-/obj/structure/closet,
-/obj/item/clothing/glasses/welding,
+"jYm" = (
+/obj/item/reagent_container/food/snacks/wrapped/chunk,
+/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/upper/p_stern)
+"jYM" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "ForePortMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/lower/p_bow)
"jYR" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -43198,6 +40976,30 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_four)
+"jZe" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
+"jZj" = (
+/obj/structure/surface/rack,
+/obj/item/book/manual/orbital_cannon_manual,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"jZo" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"jZs" = (
/obj/structure/machinery/light/containment{
dir = 4
@@ -43233,15 +41035,6 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"jZz" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/cryo_cells)
"jZC" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -43254,46 +41047,36 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"jZD" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"jZS" = (
-/obj/structure/reagent_dispensers/fueltank/oxygentank,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/engineering/upper_engineering/starboard)
"jZU" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/medical/containment/cell/cl)
+"jZW" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"jZY" = (
/obj/structure/closet/l3closet/virology,
/turf/open/floor/almayer{
icon_state = "redfull"
},
/area/almayer/medical/upper_medical)
-"kai" = (
-/obj/structure/largecrate/supply/ammo/shotgun,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
-"kaj" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
+"kac" = (
+/obj/structure/surface/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/tool/hand_labeler,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/maint/hull/upper/s_bow)
"kam" = (
/obj/item/tool/screwdriver{
layer = 2.9;
@@ -43307,18 +41090,17 @@
"kan" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/lower_medical_medbay)
-"kaA" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"kaq" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
+ allow_construction = 0;
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"kaB" = (
/obj/structure/machinery/cm_vending/gear/tl{
density = 0;
@@ -43330,17 +41112,6 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
-"kaF" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/blocker/forcefield/multitile_vehicles,
-/obj/structure/sign/safety/stairs{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"kaI" = (
/obj/structure/bed/chair{
dir = 4
@@ -43397,23 +41168,6 @@
icon_state = "kitchen"
},
/area/almayer/engineering/upper_engineering)
-"kbz" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/toolbox/electrical{
- pixel_y = 9
- },
-/obj/item/storage/toolbox/mechanical/green,
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"kbH" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_AresDown";
@@ -43441,6 +41195,16 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/containment)
+"kbT" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"kbV" = (
/obj/structure/platform{
dir = 1
@@ -43457,6 +41221,17 @@
/obj/structure/machinery/camera/autoname/almayer,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
+"kcg" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"kcl" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -43467,6 +41242,12 @@
"kcp" = (
/turf/closed/wall/almayer,
/area/almayer/living/auxiliary_officer_office)
+"kcs" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"kcA" = (
/obj/structure/machinery/light{
dir = 1
@@ -43476,6 +41257,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"kcG" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"kcH" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/living/synthcloset)
@@ -43506,6 +41293,12 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"kdo" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"kdv" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -43521,46 +41314,26 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"kdX" = (
-/obj/structure/machinery/light,
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "silver"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"kel" = (
-/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/revolver/m44{
- desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel."
- },
+"keE" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
-"keN" = (
-/obj/structure/machinery/light/small,
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+/area/almayer/maint/hull/upper/u_a_s)
+"keO" = (
+/obj/structure/largecrate/random/secure,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/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)
-"kff" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
"kfo" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -43578,6 +41351,13 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/port)
+"kfB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"kfE" = (
/obj/structure/bed/sofa/south/grey/right,
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
@@ -43596,26 +41376,9 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"kfP" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"kfU" = (
/turf/open/floor/plating,
/area/almayer/powered/agent)
-"kfV" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
"kgp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -43635,14 +41398,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"kgr" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"kgs" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -43655,6 +41410,20 @@
/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
/turf/open/floor/plating,
/area/almayer/medical/medical_science)
+"kgt" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"kgD" = (
+/obj/structure/sign/safety/cryo{
+ pixel_x = 35
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"kgQ" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/adv{
@@ -43666,6 +41435,15 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/execution)
+"kgS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"khd" = (
/obj/structure/bed/chair{
dir = 4
@@ -43687,36 +41465,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"khh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/obj/structure/sign/safety/autoopenclose{
- pixel_y = 32
- },
-/obj/structure/sign/safety/water{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
-"khz" = (
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/obj/structure/largecrate,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"khD" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -43728,6 +41476,15 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"khI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"khJ" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -43744,33 +41501,13 @@
icon_state = "tcomms"
},
/area/almayer/command/airoom)
-"kij" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"kil" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
-"kin" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/obj/item/storage/belt/utility,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"kio" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -43783,6 +41520,24 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
+"kiq" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"kiy" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"kiG" = (
/obj/structure/machinery/power/smes/buildable,
/obj/structure/machinery/status_display{
@@ -43806,6 +41561,14 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"kiR" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"kiT" = (
/obj/structure/platform{
dir = 8
@@ -43842,18 +41605,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"kiY" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/smg/m39{
- pixel_y = 6
- },
-/obj/item/weapon/gun/smg/m39{
- pixel_y = -6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"kjk" = (
/obj/structure/machinery/cryopod/right,
/obj/structure/sign/safety/cryo{
@@ -43863,6 +41614,22 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cryo)
+"kjw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"kjD" = (
/obj/structure/machinery/computer/demo_sim{
dir = 4;
@@ -43876,48 +41643,24 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"kjE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"kjO" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "orangecorner"
},
/area/almayer/engineering/lower/engine_core)
-"kjY" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
+"kjW" = (
+/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"kkg" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"kkj" = (
-/obj/structure/prop/holidays/string_lights{
- pixel_y = 27
- },
-/obj/structure/largecrate/random/barrel/red,
-/obj/item/reagent_container/food/drinks/cans/cola{
- pixel_x = -2;
- pixel_y = 16
+ icon_state = "cargo"
},
+/area/almayer/hallways/lower/port_midship_hallway)
+"kjY" = (
+/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/lower/l_a_s)
"kkk" = (
/obj/structure/machinery/power/monitor{
name = "Core Power Monitoring"
@@ -43930,13 +41673,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
-"kkm" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"kks" = (
-/turf/open/floor/plating,
-/area/almayer/maint/hull/lower/l_m_p)
"kkt" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/marine_law,
@@ -43964,14 +41700,17 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"kkE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 2;
- pixel_y = 3
+"kkI" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
+"kkN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"kkW" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/atmospipes,
@@ -43981,6 +41720,12 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"klr" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"klH" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -43989,6 +41734,10 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
+"klT" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"kmd" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -43998,12 +41747,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"kmk" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/vehiclehangar)
"kmp" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -44017,30 +41760,22 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"kmu" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+"kmx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"kmE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/north2)
-"kmL" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"kmZ" = (
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lockerroom)
"kng" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -44049,6 +41784,19 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"knl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"knm" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"knH" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/sign/safety/coffee{
@@ -44080,25 +41828,13 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"koa" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"koc" = (
-/obj/structure/machinery/status_display{
- pixel_y = -30
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"kow" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/almayer/hallways/port_hallway)
-"kog" = (
-/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/lower/l_f_p)
"koB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44132,12 +41868,11 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower/engine_core)
-"kpl" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
+"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)
"kpo" = (
/obj/structure/machinery/floodlight/landing{
name = "bolted floodlight"
@@ -44158,6 +41893,20 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"kqb" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"kqm" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"kqt" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
@@ -44168,22 +41917,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/bridgebunks)
-"kqu" = (
-/obj/item/folder/red{
- desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup.";
- name = "folder: 28";
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/structure/surface/table/almayer,
-/obj/item/toy/crayon{
- pixel_x = 9;
- pixel_y = -2
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"kqv" = (
/obj/structure/machinery/light{
dir = 1
@@ -44210,13 +41943,32 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"kqI" = (
-/obj/structure/reagent_dispensers/water_cooler/stacks{
- density = 0;
- pixel_y = 17
+"kqB" = (
+/obj/structure/prop/holidays/string_lights{
+ pixel_y = 27
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/drinkingglasses,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"kqC" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/largecrate/random/barrel/green,
+/obj/structure/sign/safety/maint{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"kqK" = (
/obj/structure/machinery/conveyor{
dir = 8;
@@ -44238,26 +41990,6 @@
icon_state = "bluecorner"
},
/area/almayer/living/basketball)
-"krm" = (
-/obj/item/paper/prison_station/interrogation_log{
- pixel_x = 10;
- pixel_y = 7
- },
-/obj/structure/largecrate/random/barrel/green,
-/obj/item/limb/hand/l_hand{
- pixel_x = -5;
- pixel_y = 14
- },
-/obj/effect/spawner/random/balaclavas,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"kro" = (
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"krp" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/cups,
@@ -44277,13 +42009,17 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/perma)
-"krA" = (
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice12";
- pixel_y = -16
+"krG" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/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)
"krN" = (
/obj/structure/machinery/conveyor{
id = "req_belt"
@@ -44353,22 +42089,49 @@
icon_state = "cargo"
},
/area/almayer/squads/bravo)
+"ksw" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_stern)
"ksN" = (
/turf/open/floor/almayer/uscm/directional{
dir = 6
},
/area/almayer/living/briefing)
-"ktH" = (
+"kti" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+ icon_state = "NE-out";
+ pixel_x = 2;
+ pixel_y = 3
},
-/obj/structure/machinery/camera/autoname/almayer{
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"ktl" = (
+/obj/structure/machinery/firealarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"ktI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
dir = 4;
- name = "ship-grade camera"
+ icon_state = "silver"
},
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/hallways/lower/repair_bay)
+"ktR" = (
+/obj/item/trash/crushed_cup,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"ktX" = (
/turf/open/floor/almayer{
dir = 4;
@@ -44392,12 +42155,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"kus" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
"kuu" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
@@ -44411,9 +42168,6 @@
icon_state = "emeraldcorner"
},
/area/almayer/living/briefing)
-"kuI" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
"kuJ" = (
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer{
@@ -44421,6 +42175,14 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
+"kuK" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"kvf" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -44445,15 +42207,6 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
-"kvj" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"kvU" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/plating/plating_catwalk,
@@ -44478,6 +42231,21 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering)
+"kwg" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
+"kwi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"kwo" = (
/obj/structure/surface/rack,
/turf/open/floor/almayer,
@@ -44501,13 +42269,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"kwU" = (
-/obj/structure/machinery/photocopier,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/shipboard/brig/main_office)
"kxd" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -44521,6 +42282,14 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
+"kxe" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"kxo" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/washing_machine{
@@ -44562,13 +42331,9 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/starboard)
-"kyH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+"kyw" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/l_m_s)
"kyN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/sign/safety/distribution_pipes{
@@ -44579,19 +42344,9 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"kyQ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/organ/heart/prosthetic{
- pixel_x = -4
- },
-/obj/item/circuitboard{
- pixel_x = 12;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
+"kyP" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/l_f_p)
"kyR" = (
/obj/structure/safe/co_office,
/obj/item/weapon/pole/fancy_cane,
@@ -44617,22 +42372,20 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
-"kyZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_umbilical)
"kzb" = (
/obj/structure/machinery/vending/walkman,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"kzd" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
+"kzc" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_21";
+ pixel_y = 11
+ },
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/upper/u_f_p)
"kzk" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -44651,6 +42404,13 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/execution)
+"kzs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"kzy" = (
/obj/structure/bed/chair,
/turf/open/floor/almayer{
@@ -44709,12 +42469,15 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"kzP" = (
+"kzR" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
+ dir = 4;
+ icon_state = "orange"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"kzT" = (
/obj/structure/machinery/door_control{
id = "ARES StairsLower";
@@ -44737,43 +42500,80 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
-"kAk" = (
-/obj/structure/machinery/light/small{
- dir = 4
+"kAj" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
},
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = -16
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/hallways/lower/port_aft_hallway)
"kAm" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"kAL" = (
-/obj/structure/closet/secure_closet/brig,
-/turf/open/floor/almayer{
- icon_state = "red"
+"kAp" = (
+/obj/structure/surface/rack{
+ desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards."
},
-/area/almayer/shipboard/brig/processing)
-"kAN" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
+/obj/structure/machinery/light/small{
+ dir = 4;
+ status = 3;
+ icon_state = "bulb-burned"
},
+/obj/effect/decal/cleanable/blood,
+/obj/item/prop{
+ icon = 'icons/obj/items/bloodpack.dmi';
+ icon_state = "bloodpack";
+ name = "blood bag";
+ desc = "A blood bag with a hole in it. The rats must have gotten to it first."
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/bloodpack.dmi';
+ icon_state = "bloodpack";
+ name = "blood bag";
+ desc = "A blood bag with a hole in it. The rats must have gotten to it first."
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/bloodpack.dmi';
+ icon_state = "bloodpack";
+ name = "blood bag";
+ desc = "A blood bag with a hole in it. The rats must have gotten to it first."
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/circuitboards.dmi';
+ icon_state = "id_mod";
+ name = "circuit board";
+ desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged.";
+ layer = 2.78;
+ pixel_y = 10;
+ pixel_x = 8
+ },
+/obj/item/prop{
+ icon = 'icons/obj/items/circuitboards.dmi';
+ icon_state = "id_mod";
+ name = "circuit board";
+ desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged.";
+ layer = 2.79;
+ pixel_y = 7;
+ pixel_x = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"kAv" = (
+/obj/structure/largecrate/supply/ammo/shotgun,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_a_s)
-"kAO" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
+"kAL" = (
+/obj/structure/closet/secure_closet/brig,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "red"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/shipboard/brig/processing)
"kAU" = (
/obj/structure/platform{
dir = 4
@@ -44815,13 +42615,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"kBK" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 2
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"kBP" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -44838,6 +42631,14 @@
icon_state = "cargo"
},
/area/almayer/living/tankerbunks)
+"kCd" = (
+/obj/structure/machinery/gear{
+ id = "vehicle_elevator_gears"
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"kCi" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/port_missiles)
@@ -44860,11 +42661,14 @@
},
/area/almayer/hallways/hangar)
"kCo" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
+"kCu" = (
+/obj/structure/machinery/portable_atmospherics/powered/scrubber,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/upper/u_a_s)
"kCE" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -44880,23 +42684,13 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/containment)
-"kCN" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"kCS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
-"kDj" = (
-/obj/structure/bed,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "sterile_green_side"
+"kDd" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
},
-/area/almayer/medical/lower_medical_medbay)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"kDk" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -44919,13 +42713,6 @@
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"kDP" = (
-/obj/effect/decal/cleanable/blood,
-/obj/structure/prop/broken_arcade,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"kDR" = (
/obj/structure/disposalpipe/junction{
dir = 1;
@@ -44939,24 +42726,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"kDT" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/cryo_cells)
-"kEb" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"kEc" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -45010,16 +42779,15 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"kEJ" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/emails{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
+"kEE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
+"kEW" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"kFe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/firealarm{
@@ -45030,12 +42798,6 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"kFi" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"kFs" = (
/obj/structure/machinery/light{
dir = 4
@@ -45050,19 +42812,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"kFL" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"kFM" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"kFO" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
@@ -45074,22 +42823,22 @@
icon_state = "plating"
},
/area/almayer/squads/req)
+"kFU" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"kFY" = (
/obj/structure/sign/safety/cryo{
pixel_x = 7
},
/turf/closed/wall/almayer,
/area/almayer/living/cryo_cells)
-"kGh" = (
-/obj/structure/machinery/cm_vending/sorted/medical/marinemed,
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
+"kGi" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"kGu" = (
/obj/structure/machinery/cryopod{
layer = 3.1;
@@ -45102,6 +42851,12 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cryo)
+"kGw" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"kGF" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
density = 0;
@@ -45112,21 +42867,6 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"kGI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"kGL" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
"kGQ" = (
/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
dir = 4
@@ -45135,17 +42875,11 @@
icon_state = "containment_corner_variant_2"
},
/area/almayer/medical/containment/cell)
-"kGZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 4
- },
+"kGS" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/hallways/upper/aft_hallway)
"kHa" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/brig/surgery)
@@ -45160,39 +42894,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"kHj" = (
-/obj/effect/projector{
- name = "Almayer_Up2";
- vector_x = -1;
- vector_y = 100
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"kHq" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/l_a_s)
-"kHv" = (
-/obj/structure/platform{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"kHx" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice1";
- pixel_x = 16;
- pixel_y = -8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"kHS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -45202,12 +42903,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"kHT" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"kHY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -45217,35 +42912,25 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"kIj" = (
-/obj/structure/surface/table/almayer,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/engineering/lower/engine_core)
-"kIm" = (
-/obj/structure/pipes/vents/pump{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_umbilical)
-"kIr" = (
+"kIf" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
+"kIk" = (
/obj/structure/prop/invuln/lattice_prop{
dir = 1;
icon_state = "lattice-simple";
- pixel_x = -16;
- pixel_y = 17
+ pixel_x = 16;
+ pixel_y = -16
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"kIl" = (
+/obj/structure/machinery/light/small{
+ dir = 4
},
-/area/almayer/maint/hull/lower/l_m_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"kIP" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -45254,6 +42939,25 @@
icon_state = "cargo"
},
/area/almayer/squads/charlie)
+"kJc" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "ForeStarboardMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/lower/s_bow)
+"kJh" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"kJi" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -45266,22 +42970,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"kJr" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"kJD" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"kJH" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -45303,13 +42991,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
-"kJV" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"kJW" = (
/obj/structure/machinery/door/window/westright,
/obj/structure/machinery/shower{
@@ -45323,15 +43004,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/commandbunks)
-"kKb" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
+"kJZ" = (
+/obj/structure/largecrate/random/barrel/white,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/lower/l_a_s)
"kKk" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -45360,12 +43038,24 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
+"kKB" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"kKR" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south2)
+"kKY" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"kLc" = (
/obj/structure/machinery/door/airlock/almayer/maint{
req_one_access = null;
@@ -45384,20 +43074,57 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
-"kLp" = (
-/obj/structure/sign/safety/stairs{
- pixel_x = -17;
- pixel_y = 7
+"kLm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/sign/safety/escapepod{
- pixel_x = -17;
- pixel_y = -8
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
+"kLB" = (
+/obj/docking_port/stationary/escape_pod/east,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_m_s)
+"kLE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "hangarentrancenorth";
+ name = "\improper North Hangar Podlock"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"kLP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/open/floor/almayer{
dir = 8;
- icon_state = "red"
+ icon_state = "greencorner"
+ },
+/area/almayer/squads/req)
+"kLZ" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
-/area/almayer/hallways/starboard_hallway)
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
+"kMa" = (
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"kMp" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -45410,6 +43137,17 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"kMr" = (
+/obj/item/trash/uscm_mre,
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"kMH" = (
/obj/structure/machinery/door/window/brigdoor/southright{
id = "Cell 1";
@@ -45433,14 +43171,37 @@
icon_state = "outerhull_dir"
},
/area/almayer/engineering/upper_engineering/port)
+"kMR" = (
+/obj/effect/spawner/random/toolbox,
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"kMW" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/obj/structure/closet/secure_closet/personal/cabinet{
+ req_access = null
},
+/obj/item/clothing/suit/chef/classic,
+/obj/item/tool/kitchen/knife/butcher,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/s_bow)
+"kNf" = (
+/obj/structure/bed/chair/office/dark,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/panic)
"kNk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -45453,6 +43214,9 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/briefing)
+"kNq" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/u_a_p)
"kNx" = (
/obj/structure/sign/safety/ref_bio_storage{
pixel_x = -17;
@@ -45540,6 +43304,40 @@
icon_state = "dark_sterile"
},
/area/almayer/command/corporateliaison)
+"kOJ" = (
+/obj/item/storage/backpack/marine/satchel{
+ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
+ icon = 'icons/obj/janitor.dmi';
+ icon_state = "trashbag3";
+ name = "trash bag";
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
+"kOR" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
+"kOW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/squads/req)
"kPx" = (
/obj/structure/surface/table/almayer,
/obj/item/device/mass_spectrometer,
@@ -45618,6 +43416,14 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
+"kQr" = (
+/obj/structure/surface/table/almayer,
+/obj/item/trash/pistachios,
+/obj/item/tool/lighter/random{
+ pixel_x = 13
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"kQu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45629,17 +43435,6 @@
allow_construction = 0
},
/area/almayer/shipboard/brig/processing)
-"kQZ" = (
-/obj/structure/largecrate/random/barrel/red,
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"kRd" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45655,6 +43450,21 @@
icon_state = "cargo"
},
/area/almayer/command/lifeboat)
+"kRk" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver,
+/obj/item/prop/helmetgarb/gunoil{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_x = 17;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"kRD" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/obj/structure/machinery/light{
@@ -45672,6 +43482,13 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/workshop/hangar)
+"kRN" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"kRP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/item/prop/magazine/dirty/torn,
@@ -45681,6 +43498,28 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"kRU" = (
+/obj/vehicle/powerloader,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"kSn" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"kSv" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/turf/open/floor/almayer{
@@ -45704,11 +43543,16 @@
},
/area/almayer/command/airoom)
"kSA" = (
-/obj/effect/spawner/random/toolbox,
+/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{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/hallways/lower/port_fore_hallway)
"kSH" = (
/obj/structure/sign/prop1{
pixel_y = 32
@@ -45721,23 +43565,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"kSJ" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"kSN" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/aft_hallway)
"kSU" = (
/obj/structure/transmitter/no_dnd{
name = "Requisition Telephone";
@@ -45750,14 +43577,6 @@
icon_state = "plating"
},
/area/almayer/squads/req)
-"kTt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"kTv" = (
/obj/structure/machinery/light{
dir = 4
@@ -45795,15 +43614,15 @@
icon_state = "test_floor4"
},
/area/almayer/living/pilotbunks)
-"kUr" = (
-/obj/structure/sign/poster{
- pixel_y = -32
+"kUs" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/upper/aft_hallway)
"kUw" = (
/obj/structure/surface/rack,
/obj/item/storage/bag/trash{
@@ -45822,6 +43641,28 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/port)
+"kUA" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_umbilical)
+"kUI" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"kUL" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"kUQ" = (
/obj/effect/decal/cleanable/blood/oil/streak,
/obj/structure/machinery/constructable_frame,
@@ -45860,13 +43701,13 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
"kWc" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
"kWk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -45889,15 +43730,14 @@
icon_state = "silvercorner"
},
/area/almayer/command/cichallway)
-"kWA" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/hull/upper/p_bow)
-"kWG" = (
-/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun,
+"kWI" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
/turf/open/floor/almayer{
- icon_state = "redfull"
+ icon_state = "test_floor4"
},
-/area/almayer/shipboard/panic)
+/area/almayer/maint/hull/lower/l_f_s)
"kWN" = (
/obj/structure/sign/poster{
desc = "It says DRUG.";
@@ -45942,17 +43782,6 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"kXe" = (
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"kXf" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -45982,12 +43811,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/stern_point_defense)
-"kXq" = (
-/obj/item/tool/warning_cone{
- pixel_y = 13
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"kXu" = (
/turf/open/floor/almayer{
dir = 8;
@@ -46009,38 +43832,12 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
-"kXV" = (
+"kYl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Port Railguns and Viewing Room"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_f_p)
-"kYb" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/machinery/door_control{
- id = "Under Construction Shutters";
- name = "shutter-control";
- pixel_x = -25
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"kYj" = (
-/obj/structure/sign/safety/cryo{
- pixel_x = 35
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 9
},
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"kYt" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/bible{
@@ -46077,28 +43874,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"kYP" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
-"kYU" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = 32
- },
-/obj/structure/sign/safety/east{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"kYV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -46111,12 +43886,6 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"kZA" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_umbilical)
"kZN" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
@@ -46154,12 +43923,6 @@
icon_state = "emerald"
},
/area/almayer/living/gym)
-"laB" = (
-/obj/structure/surface/rack,
-/obj/item/tool/weldingtool,
-/obj/item/tool/wrench,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
"laM" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -46181,6 +43944,13 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
+"laP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"laQ" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -46215,6 +43985,23 @@
},
/turf/open/floor/plating,
/area/almayer/command/cic)
+"lbc" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/aft_hallway)
"lbf" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -46271,20 +44058,6 @@
icon_state = "bluefull"
},
/area/almayer/living/bridgebunks)
-"lcL" = (
-/obj/structure/largecrate/random/barrel,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"lcM" = (
-/obj/structure/platform{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"lcV" = (
/obj/structure/bed/chair{
dir = 4
@@ -46300,9 +44073,23 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/chief_mp_office)
+"ldb" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"ldc" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/engineering/lower/workshop)
+"lde" = (
+/obj/structure/machinery/conveyor{
+ id = "req_belt"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"ldl" = (
/obj/structure/sign/safety/maint{
pixel_x = 32
@@ -46311,6 +44098,16 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
+"ldq" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"ldt" = (
/obj/structure/machinery/conveyor{
dir = 8;
@@ -46333,6 +44130,16 @@
icon_state = "plate"
},
/area/almayer/living/captain_mess)
+"ldF" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
+"ldW" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"lea" = (
/obj/structure/sink{
dir = 4;
@@ -46379,27 +44186,12 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"leL" = (
-/obj/structure/prop/invuln/lattice_prop{
- dir = 1;
- icon_state = "lattice-simple";
- pixel_x = -16;
- pixel_y = 17
- },
+"leM" = (
/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_p)
-"leQ" = (
-/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
- name = "\improper Armourer's Workshop";
- req_access = null
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/hull/upper/s_stern)
"leY" = (
/obj/structure/bed/sofa/south/white/left,
/turf/open/floor/almayer{
@@ -46407,32 +44199,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"leZ" = (
-/obj/structure/machinery/door_control/cl/quarter/backdoor{
- pixel_x = -25;
- pixel_y = 23
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"lfa" = (
-/obj/structure/surface/table/almayer,
-/obj/item/toy/deck,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/shipboard/brig/cic_hallway)
-"lfs" = (
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice12";
- pixel_y = 16
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"lft" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/fire,
@@ -46441,6 +44207,13 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"lfx" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"lfz" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"lfH" = (
/obj/structure/machinery/light{
dir = 4
@@ -46450,6 +44223,12 @@
icon_state = "blue"
},
/area/almayer/living/basketball)
+"lgk" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"lgt" = (
/obj/structure/sink{
dir = 4;
@@ -46499,26 +44278,20 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"lgI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+"lhj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_y = -34
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"lgM" = (
-/obj/structure/machinery/light/small,
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
-"lgX" = (
-/obj/structure/sign/safety/storage{
- pixel_y = 32
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
+/area/almayer/maint/hull/upper/p_bow)
+"lhs" = (
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"lht" = (
/turf/open/floor/almayer{
dir = 6;
@@ -46560,12 +44333,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"lhS" = (
-/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"lhX" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal3";
@@ -46574,15 +44341,23 @@
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
"lia" = (
-/obj/structure/machinery/light{
- dir = 4
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"lib" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
+ icon_state = "plate"
},
-/area/almayer/medical/lower_medical_medbay)
+/area/almayer/maint/hull/lower/stern)
"lid" = (
/obj/structure/machinery/chem_master{
vial_maker = 1
@@ -46591,34 +44366,6 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"lij" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_a_p)
-"lim" = (
-/obj/structure/surface/table/almayer,
-/obj/item/ashtray/bronze{
- pixel_x = 3;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/ash,
-/obj/item/trash/cigbutt/ucigbutt{
- pixel_x = 4;
- pixel_y = 13
- },
-/obj/item/trash/cigbutt/ucigbutt{
- pixel_x = -7;
- pixel_y = 14
- },
-/obj/item/trash/cigbutt/ucigbutt{
- pixel_x = -13;
- pixel_y = 8
- },
-/obj/item/trash/cigbutt/ucigbutt{
- pixel_x = -6;
- pixel_y = 9
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"lin" = (
/obj/effect/projector{
name = "Almayer_AresDown";
@@ -46637,9 +44384,17 @@
},
/area/almayer/command/airoom)
"liF" = (
-/obj/structure/closet/firecloset,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/item/clothing/under/marine,
+/obj/item/clothing/suit/storage/marine,
+/obj/item/clothing/head/helmet/marine,
+/obj/item/clothing/head/cmcap,
+/obj/item/clothing/head/cmcap,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
+/area/almayer/maint/hull/upper/u_a_s)
"liJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -46682,43 +44437,29 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"ljl" = (
-/obj/structure/prop/invuln/pipe_water,
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -12;
- pixel_y = 13
+"ljm" = (
+/obj/item/clothing/gloves/botanic_leather{
+ name = "leather gloves"
},
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -12;
- pixel_y = 13
+/obj/item/clothing/gloves/botanic_leather{
+ name = "leather gloves"
+ },
+/obj/item/clothing/gloves/botanic_leather{
+ name = "leather gloves"
},
+/obj/structure/closet/crate,
+/obj/item/clothing/suit/storage/hazardvest/black,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/maint/hull/lower/l_f_p)
"ljs" = (
/obj/effect/landmark/start/marine/spec/bravo,
/obj/effect/landmark/late_join/bravo,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/bravo)
-"lju" = (
-/obj/structure/surface/table/almayer,
-/obj/item/stack/sheet/cardboard{
- amount = 50;
- pixel_x = 4
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"ljD" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+"ljv" = (
+/turf/closed/wall/almayer,
/area/almayer/maint/hull/lower/l_a_p)
"ljG" = (
/obj/structure/closet/crate/freezer,
@@ -46763,6 +44504,16 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"lka" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"lkd" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -46789,14 +44540,6 @@
icon_state = "red"
},
/area/almayer/living/offices/flight)
-"lkg" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"lkm" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
@@ -46829,14 +44572,6 @@
icon_state = "plate"
},
/area/almayer/squads/charlie)
-"lkN" = (
-/obj/item/cell/high/empty,
-/obj/item/cell/high/empty,
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_stern)
"lkV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -46855,28 +44590,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"lln" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"lls" = (
-/obj/item/trash/crushed_cup,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
-"llF" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"llK" = (
/obj/structure/platform_decoration{
dir = 4
@@ -46892,6 +44605,19 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
+"lma" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15
+ },
+/turf/closed/wall/almayer,
+/area/almayer/hallways/lower/starboard_umbilical)
+"lmi" = (
+/obj/structure/bed,
+/obj/item/bedsheet/green,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
"lml" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
@@ -46899,6 +44625,13 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
+"lmq" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"lmw" = (
/obj/structure/closet/l3closet/general,
/obj/structure/machinery/light{
@@ -46910,13 +44643,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/medical_science)
-"lmy" = (
-/obj/structure/sign/safety/restrictedarea,
-/obj/structure/sign/safety/security{
- pixel_x = 15
- },
-/turf/closed/wall/almayer,
-/area/almayer/shipboard/panic)
"lmz" = (
/turf/closed/wall/almayer/white/hull,
/area/space)
@@ -46931,21 +44657,6 @@
"lmK" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/command/securestorage)
-"lmW" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/box/lights/bulbs{
- pixel_x = 3;
- pixel_y = 7
- },
-/obj/item/storage/box/lights/mixed,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"lnb" = (
-/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"lne" = (
/obj/structure/bed/chair,
/turf/open/floor/almayer{
@@ -46975,15 +44686,10 @@
icon_state = "silvercorner"
},
/area/almayer/shipboard/brig/cic_hallway)
-"lnG" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- id = "InnerShutter";
- name = "\improper Saferoom Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/panic)
+"lnD" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_a_s)
"lnP" = (
/obj/structure/machinery/vending/cola,
/obj/structure/window/reinforced,
@@ -47084,6 +44790,9 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/starboard)
+"loE" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"loK" = (
/obj/structure/closet/crate/medical,
/obj/item/storage/firstaid/adv,
@@ -47098,19 +44807,6 @@
"loP" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/laundry)
-"loQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- dir = 1;
- req_access = null;
- req_one_access = null;
- req_one_access_txt = "3;22;19"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"loS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -47156,12 +44852,15 @@
icon_state = "cargo"
},
/area/almayer/living/commandbunks)
-"lpj" = (
-/obj/structure/machinery/light/small{
- dir = 8
+"lpl" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Security Checkpoint"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/panic)
"lpt" = (
/turf/open/floor/almayer{
icon_state = "blue"
@@ -47175,52 +44874,17 @@
icon_state = "test_floor4"
},
/area/almayer/powered/agent)
-"lpD" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/starboard_hallway)
-"lpH" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"lqd" = (
-/obj/structure/sign/safety/nonpress_ag{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/west{
- pixel_y = 32
- },
+"lql" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/hallways/lower/starboard_umbilical)
"lqF" = (
/turf/open/floor/almayer{
dir = 9;
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"lqJ" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = -32
- },
-/obj/structure/sign/safety/south{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"lqK" = (
/obj/effect/decal/cleanable/ash,
/obj/item/trash/cigbutt/ucigbutt{
@@ -47232,10 +44896,6 @@
icon_state = "emerald"
},
/area/almayer/hallways/hangar)
-"lqL" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/u_m_p)
"lqN" = (
/obj/item/device/assembly/mousetrap/armed,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -47246,21 +44906,31 @@
icon_state = "orange"
},
/area/almayer/living/port_emb)
+"lrd" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"lrq" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/armory)
-"lrD" = (
-/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/rifle/m41a,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
+"lrE" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/s_bow)
"lrF" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"lrH" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"lrT" = (
/obj/structure/bed/chair,
/turf/open/floor/almayer,
@@ -47284,6 +44954,15 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
+"lsh" = (
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"lsn" = (
/obj/structure/surface/table/almayer,
/obj/item/paper{
@@ -47295,6 +44974,12 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
+"lso" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"lsp" = (
/obj/structure/machinery/door/airlock/almayer/command{
name = "\improper Conference Room"
@@ -47322,12 +45007,6 @@
icon_state = "red"
},
/area/almayer/living/offices/flight)
-"lsQ" = (
-/obj/structure/machinery/power/reactor,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/engineering/lower/engine_core)
"lsV" = (
/obj/structure/largecrate/random/barrel/red,
/obj/structure/sign/safety/fire_haz{
@@ -47353,20 +45032,47 @@
/obj/effect/landmark/start/working_joe,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/airoom)
+"ltm" = (
+/obj/structure/bed/chair/comfy/orange,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"lto" = (
/obj/structure/machinery/iv_drip,
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
-"ltw" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
+"ltt" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/hallways/upper/aft_hallway)
+"ltv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
+"ltw" = (
+/obj/structure/largecrate/supply,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"lty" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"ltA" = (
/obj/item/tool/weldingtool,
/turf/open/floor/almayer,
@@ -47399,19 +45105,12 @@
icon_state = "test_floor4"
},
/area/almayer/living/commandbunks)
-"luz" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"luE" = (
+/obj/structure/sign/poster{
+ pixel_y = 32
},
-/area/almayer/hallways/starboard_hallway)
-"luJ" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/s_bow)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"luS" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/cardboard{
@@ -47485,13 +45184,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"lwm" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"lwp" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -47514,6 +45206,12 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
+"lwG" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"lwJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -47528,14 +45226,20 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/main_office)
-"lxm" = (
-/obj/structure/surface/table/almayer,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
+"lwY" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Port Viewing Room"
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "test_floor4"
},
-/area/almayer/engineering/lower/engine_core)
+/area/almayer/maint/hull/upper/u_f_p)
+"lxd" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"lxo" = (
/obj/structure/sign/safety/hazard{
pixel_x = -17;
@@ -47586,12 +45290,37 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"lym" = (
+/obj/structure/machinery/vending/cigarette,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"lyq" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"lyw" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
+"lyz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/organ/heart/prosthetic{
+ pixel_x = -4
+ },
+/obj/item/circuitboard{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"lyE" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
@@ -47599,17 +45328,14 @@
icon_state = "silvercorner"
},
/area/almayer/command/computerlab)
-"lyL" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
-"lyV" = (
-/obj/structure/machinery/light/small,
+"lyP" = (
+/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
+/area/almayer/maint/hull/lower/s_bow)
+"lyW" = (
+/turf/closed/wall/almayer/outer,
/area/almayer/maint/hull/lower/l_m_p)
"lyX" = (
/obj/structure/machinery/cm_vending/clothing/senior_officer{
@@ -47637,16 +45363,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"lzj" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"lzq" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -47662,12 +45378,32 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
+"lzF" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"lzY" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = -25
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/chief_mp_office)
+"lAa" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/lightreplacer{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"lAl" = (
/turf/open/floor/almayer{
dir = 4;
@@ -47692,13 +45428,6 @@
},
/turf/open/floor/carpet,
/area/almayer/command/cichallway)
-"lAO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"lAQ" = (
/obj/structure/machinery/cm_vending/gear/tl{
density = 0;
@@ -47711,22 +45440,25 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"lAX" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"lBf" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/upper/stern_hallway)
"lBg" = (
/obj/structure/bedsheetbin,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
-"lBj" = (
-/obj/effect/landmark/yautja_teleport,
+"lBl" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/lower/s_bow)
"lBv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -47739,23 +45471,46 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"lBz" = (
+"lBw" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
+"lBB" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
+"lCc" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"lBF" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/spawner/random/toolbox,
-/obj/item/clipboard,
-/obj/item/tool/pen,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
+ icon_state = "orange"
},
-/area/almayer/squads/req)
+/area/almayer/hallways/upper/stern_hallway)
+"lCm" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"lCp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -47790,28 +45545,28 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"lCT" = (
-/obj/structure/machinery/conveyor_switch{
- id = "lower_garbage"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"lDa" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_29"
},
-/area/almayer/maint/hull/lower/l_a_p)
-"lDg" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "laddernorthwest";
- name = "\improper North West Ladders Shutters"
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliaison)
+"lDk" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
},
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- 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
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "green"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/lower/port_midship_hallway)
"lDn" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -47819,15 +45574,26 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"lDJ" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
+"lDA" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"lDL" = (
+/obj/structure/machinery/light{
+ dir = 4
},
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
dir = 8;
- icon_state = "orange"
+ icon_state = "plating_striped"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/squads/req)
"lDN" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -47846,6 +45612,15 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
+"lDT" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"lDV" = (
/obj/effect/landmark/start/marine/medic/bravo,
/obj/effect/landmark/late_join/bravo,
@@ -47881,18 +45656,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/lobby)
-"lEz" = (
-/obj/item/coin/silver{
- desc = "A small coin, bearing the falling falcons insignia.";
- name = "falling falcons challenge coin"
- },
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"lEF" = (
/obj/structure/stairs{
icon_state = "ramptop"
@@ -47910,6 +45673,11 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
+"lEV" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"lFe" = (
/obj/structure/bed/chair/comfy{
dir = 4
@@ -47946,6 +45714,16 @@
"lFp" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"lFr" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
"lFt" = (
/obj/structure/machinery/portable_atmospherics/powered/pump,
/obj/structure/sign/safety/maint{
@@ -47957,10 +45735,17 @@
icon_state = "cargo"
},
/area/almayer/engineering/starboard_atmos)
-"lFv" = (
-/obj/effect/landmark/yautja_teleport,
+"lFw" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"lFA" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/pouch/tools/tank,
@@ -48002,80 +45787,44 @@
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south2)
"lFL" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/p_bow)
-"lGg" = (
-/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
-/area/almayer/engineering/lower/workshop/hangar)
-"lGh" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"lGi" = (
-/obj/structure/platform{
- dir = 1
- },
-/obj/structure/largecrate/random/case,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"lGo" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"lGH" = (
-/obj/structure/machinery/power/apc/almayer{
+/obj/structure/machinery/light{
dir = 1
},
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
-"lGV" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"lGW" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
+ dir = 4;
+ icon_state = "green"
},
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"lGg" = (
+/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/u_f_p)
-"lGZ" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+/area/almayer/engineering/lower/workshop/hangar)
+"lHk" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out"
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/maint/hull/upper/s_bow)
"lHu" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "greencorner"
},
/area/almayer/living/grunt_rnr)
-"lHE" = (
-/obj/structure/machinery/light/small,
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
+"lHB" = (
+/obj/structure/prop/almayer/computers/sensor_computer3,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"lHG" = (
/obj/structure/machinery/door/airlock/almayer/maint{
access_modified = 1;
@@ -48090,18 +45839,9 @@
icon_state = "test_floor4"
},
/area/almayer/living/grunt_rnr)
-"lHU" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"lHV" = (
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
+"lIj" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/upper/mess)
"lIp" = (
/obj/structure/bed/chair/comfy/beige{
dir = 1
@@ -48111,15 +45851,20 @@
},
/turf/open/floor/carpet,
/area/almayer/command/cichallway)
-"lIw" = (
+"lIu" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "hangarentrancenorth";
+ name = "\improper North Hangar Podlock"
+ },
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"lII" = (
/obj/structure/bed/chair/office/dark{
dir = 1
@@ -48128,21 +45873,18 @@
icon_state = "mono"
},
/area/almayer/engineering/port_atmos)
+"lIQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"lIU" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/port)
-"lJb" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"lJu" = (
/obj/structure/barricade/metal{
dir = 1
@@ -48206,6 +45948,12 @@
icon_state = "dark_sterile"
},
/area/almayer/shipboard/brig/cells)
+"lJM" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/s_bow)
"lJO" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -48241,15 +45989,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/alpha_bravo_shared)
-"lKk" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/hallways/stern_hallway)
"lKM" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
@@ -48261,22 +46000,29 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"lLx" = (
-/obj/structure/machinery/light/small{
- dir = 8
+"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/closet,
-/obj/item/clothing/under/marine,
-/obj/item/clothing/suit/storage/marine,
-/obj/item/clothing/head/helmet/marine,
-/obj/item/clothing/head/cmcap,
-/obj/item/clothing/head/cmcap,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"lLC" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
/area/almayer/squads/charlie)
+"lLO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
"lLS" = (
/obj/structure/sign/safety/galley{
pixel_x = 32
@@ -48310,12 +46056,33 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"lMw" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
"lMx" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/starboard)
+"lMO" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"lMY" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -48325,12 +46092,12 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"lNl" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
+"lNk" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/area/almayer/hallways/stern_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"lNw" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -48357,13 +46124,15 @@
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/engineering/lower/workshop)
-"lOa" = (
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
+"lOn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/hallways/upper/aft_hallway)
"lOr" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -48374,10 +46143,6 @@
},
/turf/open/floor/plating,
/area/almayer/squads/req)
-"lOt" = (
-/obj/effect/landmark/start/liaison,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
"lOH" = (
/obj/structure/sink{
pixel_y = 32
@@ -48453,14 +46218,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
-"lPE" = (
-/obj/structure/surface/table/almayer,
-/obj/item/clipboard,
-/obj/item/paper,
-/obj/item/clothing/glasses/mgoggles,
-/obj/item/clothing/glasses/mgoggles,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"lPO" = (
/obj/structure/surface/rack,
/turf/open/floor/almayer{
@@ -48468,10 +46225,10 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
-"lPP" = (
-/obj/structure/largecrate/random/barrel/green,
+"lPW" = (
+/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/maint/hull/upper/u_m_p)
"lQa" = (
/obj/structure/machinery/light{
dir = 8
@@ -48484,18 +46241,32 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"lQk" = (
-/obj/structure/largecrate/supply/supplies/water,
+"lQf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
/turf/open/floor/almayer{
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/l_f_p)
"lQz" = (
/obj/structure/machinery/vending/coffee,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"lQB" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"lQG" = (
/obj/structure/machinery/computer/tech_control,
/turf/open/floor/plating/plating_catwalk,
@@ -48514,14 +46285,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/operating_room_three)
-"lQQ" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"lRe" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
@@ -48545,6 +46308,10 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"lRt" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"lRE" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_sn_full_cap"
@@ -48559,17 +46326,6 @@
/obj/item/prop/helmetgarb/chaplain_patch,
/turf/open/floor/wood/ship,
/area/almayer/living/chapel)
-"lRU" = (
-/obj/structure/sign/safety/conference_room{
- pixel_x = 14;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"lRV" = (
-/obj/structure/largecrate/supply/supplies/mre,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"lRX" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
@@ -48602,23 +46358,21 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
-"lSF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"lSJ" = (
+/obj/structure/machinery/light/small,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "plating_striped"
+ icon_state = "plate"
},
-/area/almayer/squads/req)
-"lSH" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/maint/hull/upper/s_bow)
+"lSX" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"lTt" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -48638,10 +46392,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/chapel)
-"lTL" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
"lUm" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
name = "\improper Brig Cells";
@@ -48654,12 +46404,24 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/processing)
-"lUr" = (
-/obj/structure/largecrate/random/case/double,
+"lUA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ dir = 5;
+ icon_state = "red"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/lower/port_fore_hallway)
+"lUQ" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"lVl" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
/turf/open/floor/almayer,
@@ -48668,28 +46430,17 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
-"lVv" = (
+"lVR" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
/obj/structure/platform{
- dir = 1
+ dir = 8
},
-/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"lVK" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "greencorner"
- },
-/area/almayer/squads/req)
+/area/almayer/maint/hull/upper/u_a_p)
"lVS" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
dir = 4;
@@ -48700,6 +46451,17 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
+"lVW" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"lVX" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/overwatch/almayer{
@@ -48721,6 +46483,12 @@
icon_state = "plate"
},
/area/almayer/command/cic)
+"lVZ" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"lWr" = (
/obj/structure/largecrate/random/case,
/turf/open/floor/almayer{
@@ -48728,6 +46496,25 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"lWt" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"lWO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/mess)
+"lWY" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"lXb" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -48761,11 +46548,10 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"lYi" = (
+"lYg" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/hull/lower/l_a_p)
"lYk" = (
/obj/item/trash/c_tube{
pixel_x = 16;
@@ -48775,9 +46561,14 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"lYm" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/u_m_p)
+"lYt" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"lYL" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -48795,16 +46586,18 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"lYS" = (
-/obj/docking_port/stationary/escape_pod/east,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_s)
-"lYZ" = (
-/obj/structure/largecrate/random,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"lZb" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
},
-/area/almayer/maint/hull/upper/s_bow)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"lZs" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/radio/intercom{
@@ -48827,25 +46620,41 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"lZD" = (
-/obj/effect/landmark/crap_item,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+"lZI" = (
+/obj/structure/prop/invuln/lattice_prop{
+ dir = 1;
+ icon_state = "lattice-simple";
+ pixel_x = -16;
+ pixel_y = 17
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"lZM" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/lower/cryo_cells)
"lZZ" = (
/obj/structure/machinery/autolathe/medilathe/full,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/almayer/medical/hydroponics)
-"maG" = (
-/obj/structure/largecrate/random/case,
+"maF" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "green"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/hallways/upper/aft_hallway)
"maI" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -48854,6 +46663,10 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
+"maK" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"maL" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/snacks/protein_pack,
@@ -48883,32 +46696,15 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"maU" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/janitorialcart,
-/obj/item/tool/mop,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
-"mbp" = (
-/obj/structure/platform,
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -14;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
+"mbu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/maint/hull/upper/u_a_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
"mbx" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -48918,40 +46714,10 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"mce" = (
-/turf/open/floor/almayer{
- icon_state = "greencorner"
- },
-/area/almayer/hallways/aft_hallway)
-"mch" = (
-/obj/structure/machinery/door/airlock/almayer/security{
- dir = 2;
- name = "\improper Security Checkpoint"
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 2;
- id = "safe_armory";
- name = "\improper Hangar Armory Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/panic)
-"mcs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
+"mbR" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/lower/l_m_p)
"mcL" = (
/obj/structure/machinery/vending/snack,
/obj/structure/sign/safety/maint{
@@ -48969,48 +46735,28 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/morgue)
+"mdk" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 4;
+ id = "vehicle_elevator_railing_aux"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"mdo" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/squads/alpha)
-"mdF" = (
-/obj/structure/sign/safety/hazard{
- pixel_x = 32;
- pixel_y = 7
- },
-/obj/structure/sign/safety/airlock{
- pixel_x = 32;
- pixel_y = -8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/stern)
-"mdG" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
-"mdT" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/item/ammo_magazine/pistol{
- current_rounds = 0
- },
-/obj/item/weapon/gun/pistol/m4a3{
- current_mag = null
+"mdC" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
},
/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
+ dir = 8;
+ icon_state = "emerald"
},
-/area/almayer/living/offices/flight)
+/area/almayer/hallways/lower/port_midship_hallway)
"mdW" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/effect/decal/warning_stripes{
@@ -49027,6 +46773,19 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"mem" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"meu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -49041,69 +46800,50 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"meC" = (
-/obj/structure/surface/rack,
-/obj/item/storage/backpack/marine/satchel{
- desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
- icon = 'icons/obj/janitor.dmi';
- icon_state = "trashbag3";
- name = "trash bag";
- pixel_x = -4;
- pixel_y = 6
- },
-/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
+"meE" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_p)
-"meJ" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
+/area/almayer/hallways/lower/vehiclehangar)
+"meQ" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"meS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
+ icon_state = "mono"
},
-/area/almayer/hallways/aft_hallway)
-"meM" = (
-/obj/structure/sign/safety/airlock{
- pixel_y = -32
+/area/almayer/hallways/upper/aft_hallway)
+"meT" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = -32
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
},
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
-"meQ" = (
-/obj/structure/bed/chair{
- dir = 8
+ icon_state = "test_floor4"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/lower/l_f_s)
"meY" = (
/turf/closed/wall/almayer{
damage_cap = 15000
},
/area/almayer/squads/alpha)
-"mfc" = (
+"mfH" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/upper/u_a_s)
"mfM" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/map_item,
@@ -49123,6 +46863,19 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"mfR" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/tool/pen,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
+"mgb" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"mgd" = (
/obj/structure/machinery/autolathe/armylathe/full,
/turf/open/floor/almayer{
@@ -49168,15 +46921,14 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie_delta_shared)
-"mgZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
+"mgX" = (
+/obj/structure/platform{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/lower/cryo_cells)
+/area/almayer/maint/hull/upper/u_a_p)
"mha" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -49261,21 +47013,29 @@
icon_state = "redfull"
},
/area/almayer/command/cic)
+"mjs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"mjt" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
allow_construction = 0
},
/area/almayer/shipboard/brig/processing)
-"mjC" = (
-/obj/structure/machinery/light/small,
-/obj/effect/decal/warning_stripes{
- icon_state = "N"
+"mjy" = (
+/obj/structure/machinery/conveyor_switch{
+ id = "lower_garbage"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/maint/hull/lower/l_a_p)
"mjS" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -49285,12 +47045,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie)
-"mkb" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
"mkc" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -49347,14 +47101,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"mkk" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"mkl" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -49374,19 +47120,30 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower/workshop/hangar)
-"mkq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+"mkw" = (
+/obj/structure/sign/safety/security{
+ pixel_y = -32
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 15;
+ pixel_y = -32
},
-/obj/structure/machinery/door/airlock/almayer/maint,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/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)
+"mkF" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"mkG" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -49443,16 +47200,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower/workshop)
-"mkW" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/weldpack,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"mlb" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
@@ -49514,6 +47261,12 @@
/obj/structure/machinery/door/poddoor/almayer/biohazard/white,
/turf/open/floor/plating,
/area/almayer/medical/medical_science)
+"mnc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_umbilical)
"mng" = (
/turf/open/floor/almayer{
icon_state = "redcorner"
@@ -49525,20 +47278,33 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"mnG" = (
-/obj/structure/machinery/status_display{
- pixel_y = -30
- },
+"mnC" = (
/turf/open/floor/almayer{
dir = 8;
- icon_state = "orange"
+ icon_state = "greencorner"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"mnI" = (
/turf/open/floor/almayer{
icon_state = "blue"
},
/area/almayer/living/briefing)
+"mnV" = (
+/obj/structure/sign/safety/refridgeration{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/medical{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"mnW" = (
/obj/structure/surface/table/almayer,
/obj/item/device/reagent_scanner{
@@ -49564,15 +47330,21 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
-"mod" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
+"moc" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"moq" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/machinery/light{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/upper/u_m_p)
"mor" = (
/obj/structure/machinery/light{
dir = 8
@@ -49583,17 +47355,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"mot" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/structure/bed/chair{
- dir = 16
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"mov" = (
/obj/structure/bed/chair{
dir = 1
@@ -49609,6 +47370,27 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/alpha_bravo_shared)
+"moK" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"moL" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/emails{
+ dir = 1;
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/item/tool/kitchen/utensil/fork{
+ pixel_x = -9;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"moM" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/almayer{
@@ -49620,18 +47402,18 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"moT" = (
-/obj/structure/window/reinforced{
- dir = 8;
- health = 80
+"mph" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/obj/structure/machinery/light{
- dir = 4
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/upper/s_bow)
"mpn" = (
/obj/structure/pipes/vents/pump,
/obj/structure/surface/table/almayer,
@@ -49645,12 +47427,27 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower)
+"mpV" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"mqb" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"mqd" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"mqg" = (
/obj/structure/bed/chair{
dir = 4
@@ -49673,6 +47470,18 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"mqt" = (
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"mqB" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"mqK" = (
/obj/structure/machinery/cm_vending/gear/spec,
/obj/structure/sign/safety/hazard{
@@ -49686,6 +47495,18 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"mqR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"mqU" = (
/obj/structure/pipes/vents/pump{
dir = 8;
@@ -49695,25 +47516,12 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_two)
-"mre" = (
-/obj/effect/decal/cleanable/cobweb{
- pixel_x = -9;
- pixel_y = 19
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
-"mrm" = (
-/obj/effect/landmark/start/professor,
-/obj/effect/landmark/late_join/cmo,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/offices)
-"mru" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+"mqZ" = (
+/obj/structure/platform{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"mrD" = (
/obj/structure/machinery/light{
dir = 1
@@ -49786,6 +47594,16 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
+"msC" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 8;
+ req_one_access = list(2,34,30)
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"msP" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -49800,14 +47618,6 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"mtj" = (
-/obj/structure/platform{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"mtl" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/execution)
@@ -49848,32 +47658,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"mtQ" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
-"mtR" = (
-/obj/structure/surface/table/almayer,
-/obj/item/trash/crushed_cup,
-/obj/item/reagent_container/food/drinks/cup{
- pixel_x = -5;
- pixel_y = 9
- },
-/obj/item/spacecash/c10{
- pixel_x = 5;
- pixel_y = 10
- },
-/obj/item/ashtray/plastic{
- pixel_x = 5;
- pixel_y = -10
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"mtZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -49883,6 +47667,12 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"mua" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"mub" = (
/obj/structure/barricade/handrail{
dir = 4
@@ -49917,14 +47707,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
-"muJ" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/cryo_cells)
"muQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -49945,6 +47727,19 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"mvg" = (
+/obj/docking_port/stationary/escape_pod/west,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/lower/l_m_p)
+"mvi" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/revolver/m44{
+ desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel."
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"mvl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -49958,14 +47753,6 @@
icon_state = "bluecorner"
},
/area/almayer/squads/delta)
-"mvu" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"mvE" = (
/obj/item/bedsheet/brown{
pixel_y = 13
@@ -50018,6 +47805,12 @@
icon_state = "dark_sterile"
},
/area/almayer/shipboard/brig/surgery)
+"mww" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"mwA" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -50039,6 +47832,11 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
+"mwP" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"mwQ" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
@@ -50059,6 +47857,15 @@
/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/stair_clone/upper)
+"mxg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"mxT" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
@@ -50066,6 +47873,13 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"mxV" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"myl" = (
/obj/structure/machinery/power/apc/almayer/hardened{
cell_type = /obj/item/cell/hyper;
@@ -50087,30 +47901,6 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
-"myy" = (
-/obj/structure/surface/rack,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
-"myA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
"myJ" = (
/obj/structure/machinery/light{
dir = 4
@@ -50132,17 +47922,38 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
+"mza" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "bot_armory";
+ name = "\improper Armory Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 2;
+ name = "\improper Armory"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -2;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/armory)
"mzg" = (
/turf/open/floor/almayer{
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"mzk" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
"mzq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -50167,6 +47978,10 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/port)
+"mzv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"mzz" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
@@ -50175,13 +47990,15 @@
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
-"mzR" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = -32
+"mzI" = (
+/obj/structure/largecrate/random/barrel/white,
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"mzS" = (
/turf/open/floor/almayer{
dir = 9;
@@ -50213,21 +48030,21 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"mAO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"mAV" = (
/obj/structure/machinery/cryopod,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/squads/delta)
+"mBa" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"mBc" = (
/obj/structure/bed/chair{
dir = 8
@@ -50248,9 +48065,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/pilotbunks)
-"mBf" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/u_a_s)
"mBp" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -50296,30 +48110,6 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"mBT" = (
-/obj/structure/surface/table/almayer,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/engineering/lower/engine_core)
-"mBZ" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
"mCo" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -50327,6 +48117,15 @@
},
/turf/open/floor/plating,
/area/almayer/squads/req)
+"mCE" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"mCL" = (
/obj/structure/sign/safety/fire_haz{
pixel_x = 8;
@@ -50350,6 +48149,13 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"mDz" = (
+/obj/structure/machinery/shower{
+ pixel_y = 16
+ },
+/obj/item/tool/soap,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"mDJ" = (
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/starboard)
@@ -50398,22 +48204,13 @@
icon_state = "test_floor4"
},
/area/almayer/living/commandbunks)
-"mEb" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
+"mDZ" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/machinery/door_control{
- id = "laddersoutheast";
- name = "South East Ladders Shutters";
- pixel_y = 25;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
"mEE" = (
/obj/structure/platform{
dir = 4;
@@ -50425,40 +48222,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"mEL" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/screwdriver,
-/obj/item/prop/helmetgarb/gunoil{
- pixel_x = -7;
- pixel_y = 12
- },
-/obj/item/weapon/gun/rifle/l42a{
- pixel_x = 17;
- pixel_y = 6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"mEN" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"mFa" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"mFc" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -50484,6 +48247,16 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"mFL" = (
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"mFN" = (
/obj/effect/step_trigger/ares_alert/mainframe,
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -50529,27 +48302,26 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"mFQ" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/hull/lower/s_bow)
"mGe" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/command/cichallway)
+"mGk" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"mGu" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "silver"
},
/area/almayer/command/securestorage)
-"mGE" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -19;
- pixel_y = -6
- },
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = -19;
- pixel_y = 6
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"mGT" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -50574,24 +48346,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"mHj" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
-"mHm" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_y = -32
- },
-/obj/structure/sign/safety/manualopenclose{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"mHo" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/washing_machine{
@@ -50605,14 +48359,6 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
-"mHv" = (
-/obj/structure/pipes/vents/pump{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/medical/upper_medical)
"mHx" = (
/obj/structure/bed/chair{
dir = 4
@@ -50662,6 +48408,17 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
+"mHF" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/head/headband/red{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"mHO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
@@ -50669,6 +48426,17 @@
icon_state = "mono"
},
/area/almayer/living/pilotbunks)
+"mId" = (
+/obj/structure/closet,
+/obj/item/clothing/suit/armor/riot/marine/vintage_riot,
+/obj/item/clothing/head/helmet/riot/vintage_riot,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"mIy" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -50692,16 +48460,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"mIJ" = (
-/obj/structure/sign/safety/ladder{
- pixel_x = -16
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/vehiclehangar)
"mIP" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/warning_stripes{
@@ -50712,33 +48470,6 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/upper_engineering/port)
-"mIQ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
-"mIW" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"mIX" = (
-/obj/item/trash/cigbutt{
- pixel_x = -10;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice10";
- pixel_x = -16;
- pixel_y = 16
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"mJa" = (
/obj/structure/closet/crate/trashcart,
/obj/item/trash/boonie,
@@ -50776,6 +48507,15 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/squads/alpha)
+"mJp" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"mJu" = (
/turf/open/floor/almayer/uscm/directional,
/area/almayer/command/cic)
@@ -50792,6 +48532,9 @@
icon_state = "blue"
},
/area/almayer/living/pilotbunks)
+"mJO" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/l_m_p)
"mJP" = (
/obj/structure/machinery/cm_vending/gear/tl{
density = 0;
@@ -50833,6 +48576,17 @@
"mKq" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/living/bridgebunks)
+"mKs" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"mKw" = (
/obj/structure/disposalpipe/junction{
dir = 1
@@ -50898,14 +48652,6 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
-"mKY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"mLe" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -50919,20 +48665,9 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"mLr" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
+"mLg" = (
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"mLu" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_umbilical)
+/area/almayer/hallways/lower/port_umbilical)
"mLz" = (
/obj/structure/machinery/door_control{
id = "pobunk1";
@@ -50965,6 +48700,17 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/main_office)
+"mLN" = (
+/obj/structure/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"mLR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -50974,12 +48720,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/req)
-"mLU" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"mMP" = (
/obj/effect/landmark/start/intel,
/turf/open/floor/plating/plating_catwalk,
@@ -51011,6 +48751,25 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"mNG" = (
+/obj/structure/sign/safety/stairs{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = 32
+ },
+/obj/structure/machinery/door_control{
+ id = "laddernorthwest";
+ name = "North West Ladders Shutters";
+ pixel_y = 24;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"mNI" = (
/obj/structure/machinery/door/window/westleft{
dir = 2
@@ -51028,6 +48787,20 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/perma)
+"mNS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/largecrate/supply/weapons/m39{
+ pixel_x = 2
+ },
+/obj/structure/largecrate/supply/weapons/m41a{
+ layer = 3.1;
+ pixel_x = 6;
+ pixel_y = 17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"mNX" = (
/turf/open/floor/almayer_hull{
dir = 4;
@@ -51058,21 +48831,35 @@
/turf/closed/wall/almayer/outer,
/area/almayer/command/airoom)
"mOw" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"mOL" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
+/area/almayer/hallways/upper/aft_hallway)
+"mOE" = (
+/obj/structure/sign/safety/water{
+ pixel_x = -17
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"mOR" = (
+/obj/structure/surface/rack,
+/obj/item/roller,
+/obj/item/roller,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
+"mPc" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
},
-/area/almayer/hallways/aft_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"mPf" = (
/turf/open/floor/almayer/uscm/directional{
dir = 6
@@ -51105,15 +48892,32 @@
},
/turf/open/floor/almayer,
/area/almayer/command/cic)
-"mPB" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
-"mPQ" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
+"mPw" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"mPK" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/obj/structure/sign/safety/storage{
+ pixel_y = 7;
+ pixel_x = -17
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_x = -17;
+ pixel_y = -7
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"mPM" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"mPR" = (
/obj/structure/machinery/light{
dir = 8
@@ -51123,19 +48927,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"mPW" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"mPX" = (
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
"mQc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -51145,6 +48936,14 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"mQd" = (
+/obj/structure/surface/rack,
+/obj/item/device/radio,
+/obj/item/tool/weldpack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"mQn" = (
/obj/structure/sign/safety/rad_shield{
pixel_x = 32
@@ -51154,29 +48953,35 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
+"mQx" = (
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"mQC" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/port_atmos)
-"mQH" = (
+"mQF" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "blue"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/aft_hallway)
-"mQQ" = (
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"mRl" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
+/area/almayer/hallways/upper/stern_hallway)
+"mQY" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
},
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/maint/hull/lower/l_m_s)
"mRn" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "ARES Interior";
@@ -51224,6 +49029,26 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"mRH" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "7;23;27;102"
+ },
+/obj/item/reagent_container/food/drinks/coffee{
+ pixel_x = -3;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"mRI" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"mRQ" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -51240,43 +49065,22 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
-"mRS" = (
-/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{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
+"mRU" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/u_m_p)
"mRW" = (
/turf/open/floor/almayer/research/containment/corner1,
/area/almayer/medical/containment/cell/cl)
-"mSc" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "Secretroom";
- indestructible = 1;
- unacidable = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"mSi" = (
/obj/structure/bed/sofa/vert/grey/top{
pixel_y = 11
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"mSm" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
+"mSr" = (
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"mSs" = (
/obj/structure/machinery/light{
dir = 8
@@ -51286,9 +49090,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"mSu" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/upper/mess)
"mSz" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/crew/alt,
@@ -51296,12 +49097,6 @@
icon_state = "silverfull"
},
/area/almayer/command/securestorage)
-"mSG" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
"mSK" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/window/reinforced{
@@ -51312,21 +49107,19 @@
icon_state = "test_floor5"
},
/area/almayer/medical/hydroponics)
+"mSM" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"mSU" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
icon_state = "blue"
},
/area/almayer/squads/charlie_delta_shared)
-"mTb" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"mTc" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/structure/machinery/computer/emails{
@@ -51354,12 +49147,16 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"mTn" = (
-/obj/structure/closet/firecloset,
+"mTo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ dir = 4;
+ icon_state = "silver"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"mTp" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -51374,19 +49171,20 @@
icon_state = "cargo_arrow"
},
/area/almayer/medical/hydroponics)
+"mTL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/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)
-"mUa" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"mUq" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -51423,6 +49221,35 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"mUE" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"mUL" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"mUY" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"mVh" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"mVr" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -51433,6 +49260,17 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"mVA" = (
+/obj/item/reagent_container/glass/bucket,
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"mVE" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -51455,18 +49293,21 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"mVY" = (
-/obj/structure/platform_decoration{
- dir = 8
+"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/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
-"mWh" = (
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/maint/upper/mess)
"mWs" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -51478,14 +49319,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"mWw" = (
-/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/port_hallway)
"mWy" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{
@@ -51537,37 +49370,64 @@
"mXj" = (
/turf/closed/wall/almayer,
/area/almayer/living/commandbunks)
-"mYv" = (
-/obj/structure/disposalpipe/sortjunction{
+"mXm" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
+"mXy" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
dir = 4;
- negdir = 4;
- posdir = 1
+ icon_state = "orange"
},
-/turf/closed/wall/almayer,
-/area/almayer/squads/req)
-"mYw" = (
+/area/almayer/hallways/lower/port_aft_hallway)
+"mXP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"mYd" = (
/obj/structure/sign/safety/escapepod{
- pixel_x = -17;
- pixel_y = -8
+ pixel_y = 32
},
-/obj/structure/sign/safety/stairs{
- pixel_x = -17;
- pixel_y = 7
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = 32
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
+ dir = 1;
+ icon_state = "green"
},
-/area/almayer/hallways/port_hallway)
-"mYY" = (
+/area/almayer/hallways/upper/aft_hallway)
+"mYt" = (
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+ icon_state = "W";
+ pixel_x = -1
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/vehiclehangar)
+"mYv" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ negdir = 4;
+ posdir = 1
},
-/area/almayer/hallways/vehiclehangar)
+/turf/closed/wall/almayer,
+/area/almayer/squads/req)
"mZb" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -51582,6 +49442,24 @@
icon_state = "blue"
},
/area/almayer/command/cichallway)
+"mZc" = (
+/obj/structure/sign/poster/blacklight{
+ pixel_y = 35
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/beerkeg/alt_dark{
+ anchored = 1;
+ chemical = null;
+ density = 0;
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"mZf" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -51635,6 +49513,18 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
+"mZP" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"mZQ" = (
/obj/structure/machinery/vending/security,
/obj/structure/machinery/light,
@@ -51646,6 +49536,15 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/general_equipment)
+"naa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"nac" = (
/obj/structure/stairs/perspective{
dir = 1;
@@ -51656,6 +49555,12 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"naj" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nar" = (
/obj/structure/toilet{
dir = 4
@@ -51693,15 +49598,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"naN" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
"naR" = (
/obj/structure/machinery/iv_drip,
/obj/effect/decal/warning_stripes{
@@ -51729,17 +49625,24 @@
icon_state = "test_floor4"
},
/area/almayer/living/gym)
-"naW" = (
-/obj/structure/surface/rack,
-/obj/item/storage/box/cups{
- pixel_x = 4;
- pixel_y = 9
+"nbu" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
+"nbW" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/item/storage/box/cups,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/hallways/upper/stern_hallway)
"ncf" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -51752,6 +49655,9 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cryo)
+"nci" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"ncl" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -51766,15 +49672,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"ncw" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"ncE" = (
/obj/structure/machinery/light{
dir = 8
@@ -51802,57 +49699,31 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"nda" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -12;
- pixel_y = 13
- },
+"ncV" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/welding,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
-"ndc" = (
-/obj/structure/machinery/door_control{
- id = "InnerShutter";
- name = "Inner Shutter";
- pixel_x = 5;
- pixel_y = 10
- },
-/obj/item/toy/deck{
- pixel_x = -9
- },
-/obj/item/ashtray/plastic,
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/sign/safety/intercom{
- pixel_y = -32
+/area/almayer/maint/hull/upper/u_a_s)
+"ndl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/shipboard/panic)
-"ndd" = (
-/obj/structure/disposalpipe/segment{
+/area/almayer/maint/hull/lower/l_m_p)
+"ndm" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
dir = 4
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"ndJ" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/lower/cryo_cells)
"ndZ" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/flashlight/lamp,
@@ -51873,9 +49744,15 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
-"nel" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
+"nef" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"new" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/obj/item/reagent_container/glass/bucket/janibucket{
@@ -51907,6 +49784,12 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
+"neH" = (
+/obj/item/trash/cigbutt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"neO" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -51931,13 +49814,6 @@
/obj/structure/surface/table/woodentable/fancy,
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
-"neX" = (
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
"nff" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -51948,27 +49824,6 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"nfp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
-"ngc" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- req_access = null;
- req_one_access = null
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 4;
- id = "panicroomback";
- name = "\improper Safe Room Shutters"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"ngf" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -52062,6 +49917,20 @@
icon_state = "redcorner"
},
/area/almayer/living/briefing)
+"ngK" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "DeployWorkR";
+ name = "\improper Workshop Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/repair_bay)
"ngU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -52108,6 +49977,10 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/workshop)
+"nhw" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"nhx" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/toy/deck{
@@ -52124,6 +49997,16 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
+"nhE" = (
+/obj/structure/sign/safety/maint{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"nhG" = (
/obj/item/newspaper{
name = "character sheet"
@@ -52151,23 +50034,22 @@
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"nhJ" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/l_a_p)
-"nhU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 2
+"nhT" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
},
+/area/almayer/hallways/upper/stern_hallway)
+"nhV" = (
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
},
-/area/almayer/shipboard/panic)
+/area/almayer/maint/hull/lower/p_bow)
+"nic" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/stern)
"nig" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -52215,23 +50097,15 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
-"niy" = (
-/obj/structure/sign/poster/pinup{
- pixel_x = -30
- },
-/obj/structure/sign/poster/hunk{
- pixel_x = -25;
- pixel_y = 10
- },
-/obj/item/trash/buritto,
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice12";
- pixel_y = 16
+"niF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/medical/medical_science)
"niL" = (
/obj/structure/machinery/light{
dir = 1
@@ -52289,25 +50163,9 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"njr" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/storage/box/lights/tubes{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/ash{
- pixel_y = 19
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"njy" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+"njn" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/upper/u_m_s)
"njD" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
@@ -52327,25 +50185,29 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
-"njL" = (
+"njO" = (
+/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "emerald"
- },
-/area/almayer/hallways/port_hallway)
-"nka" = (
-/obj/structure/machinery/door/poddoor/railing{
- dir = 2;
- id = "vehicle_elevator_railing"
+ icon_state = "redfull"
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+/area/almayer/shipboard/panic)
+"njS" = (
+/obj/structure/sign/safety/rad_haz{
+ pixel_x = 8;
+ pixel_y = -32
},
+/obj/structure/machinery/power/reactor,
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/engineering/lower/engine_core)
+"nkj" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"nkn" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -52363,16 +50225,6 @@
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
-"nkE" = (
-/obj/structure/ladder{
- height = 2;
- id = "ForeStarboardMaint"
- },
-/obj/structure/sign/safety/ladder{
- pixel_x = -17
- },
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/upper/s_bow)
"nkF" = (
/obj/structure/bed/chair/bolted{
dir = 4
@@ -52396,10 +50248,6 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"nkR" = (
-/obj/structure/machinery/power/apc/almayer,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/s_bow)
"nkX" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/almayer_network{
@@ -52416,6 +50264,12 @@
icon_state = "red"
},
/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)
"nlz" = (
/obj/structure/machinery/brig_cell/cell_3{
pixel_x = 32;
@@ -52456,41 +50310,27 @@
},
/area/almayer/command/cichallway)
"nmp" = (
-/obj/structure/surface/rack,
-/obj/item/book/manual/orbital_cannon_manual,
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 15;
+ pixel_y = 32
},
-/area/almayer/maint/hull/upper/u_a_p)
-"nmq" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{
- pixel_x = 7;
- pixel_y = 4
+/obj/structure/sign/safety/west{
+ pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
-"nmx" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"nmH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/obj/structure/disposalpipe/junction{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"nmD" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/port_aft_hallway)
"nmK" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -52503,12 +50343,6 @@
icon_state = "cargo"
},
/area/almayer/squads/req)
-"nmS" = (
-/obj/item/tool/pen,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"nmV" = (
/turf/open/floor/almayer{
dir = 1;
@@ -52527,9 +50361,18 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
-"nnw" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/l_m_s)
+"nnr" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"nny" = (
/obj/structure/sign/safety/rewire{
pixel_x = -17;
@@ -52548,25 +50391,24 @@
icon_state = "plate"
},
/area/almayer/stair_clone/upper)
+"nnH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/secure{
+ pixel_x = -5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"nnL" = (
/obj/structure/toilet{
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/corporateliaison)
-"nnT" = (
-/obj/structure/machinery/power/smes/buildable,
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/high_voltage{
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
"nnX" = (
/obj/structure/machinery/sentry_holder/almayer,
/turf/open/floor/almayer{
@@ -52608,6 +50450,27 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"noy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"noE" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"noI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"noP" = (
/obj/structure/machinery/light{
dir = 1
@@ -52640,6 +50503,12 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/containment)
+"npw" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"npA" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -52674,9 +50543,6 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
-"nqC" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_f_s)
"nqG" = (
/obj/structure/machinery/light,
/obj/effect/decal/warning_stripes{
@@ -52688,12 +50554,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"nqL" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"nqO" = (
/obj/structure/closet/secure_closet/fridge/fish/stock,
/turf/open/floor/almayer{
@@ -52718,27 +50578,17 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"nrg" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/binoculars{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/device/binoculars,
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
-"nrh" = (
-/obj/structure/machinery/light/small{
- dir = 4
+"nrb" = (
+/obj/item/robot_parts/arm/l_arm,
+/obj/item/robot_parts/leg/l_leg,
+/obj/item/robot_parts/arm/r_arm,
+/obj/item/robot_parts/leg/r_leg,
+/obj/structure/surface/rack,
+/obj/effect/decal/cleanable/cobweb{
+ dir = 8
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/s_bow)
+/area/almayer/living/synthcloset)
"nri" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/working_joe{
@@ -52748,22 +50598,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"nrt" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/hallways/vehiclehangar)
"nrw" = (
/obj/structure/bed/chair{
dir = 4
@@ -52773,18 +50607,6 @@
icon_state = "emeraldcorner"
},
/area/almayer/squads/charlie)
-"nrD" = (
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"nrG" = (
-/obj/structure/closet/secure_closet/personal/cabinet{
- req_access = null
- },
-/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
"nrN" = (
/obj/structure/machinery/sleep_console,
/turf/open/floor/almayer{
@@ -52806,14 +50628,22 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south1)
-"nsh" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+"nsd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/lights/bulbs{
+ pixel_x = 3;
+ pixel_y = 7
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/item/storage/box/lights/mixed,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
+"nso" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
},
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"nsQ" = (
/obj/structure/sink{
dir = 4;
@@ -52860,17 +50690,6 @@
"ntj" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/command/computerlab)
-"ntt" = (
-/obj/item/stool,
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/hallways/vehiclehangar)
"ntx" = (
/obj/structure/machinery/door/airlock/almayer/generic{
id = "Alpha_2";
@@ -52915,13 +50734,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha)
-"nuH" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"nuK" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/franks{
@@ -52943,22 +50755,19 @@
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/alpha)
-"nvA" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- req_access = null;
- req_one_access = null;
- req_one_access_txt = "3;22;19"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
+"nvd" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
},
+/area/almayer/maint/hull/upper/u_m_p)
+"nve" = (
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/upper/u_m_p)
"nvG" = (
/obj/structure/machinery/light{
dir = 8
@@ -52977,6 +50786,14 @@
icon_state = "dark_sterile"
},
/area/almayer/living/numbertwobunks)
+"nvI" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"nvM" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -52996,6 +50813,18 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
+"nvX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"nwb" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
@@ -53013,18 +50842,56 @@
dir = 4
},
/area/almayer/medical/containment/cell)
+"nwu" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"nww" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nwx" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "red"
},
/area/almayer/shipboard/port_missiles)
+"nwA" = (
+/obj/structure/largecrate/supply/generator,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"nwD" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "orange"
},
/area/almayer/command/cic)
+"nwG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "plating_striped"
+ },
+/area/almayer/squads/req)
"nwL" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
@@ -53032,6 +50899,10 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"nwT" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"nwU" = (
/obj/structure/machinery/light{
dir = 4
@@ -53069,33 +50940,28 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
+"nxe" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/effect/spawner/random/toolbox,
+/obj/item/stack/sheet/metal{
+ desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew.";
+ icon = 'icons/obj/structures/props/semiotic_standard.dmi';
+ icon_state = "coffee";
+ name = "coffee semiotic";
+ pixel_x = 20;
+ pixel_y = 12;
+ singular_name = "coffee semiotic"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"nxx" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"nxJ" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
-"nxK" = (
-/obj/structure/sign/safety/high_voltage{
- pixel_y = -32
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"nxM" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"nyj" = (
/obj/effect/decal/medical_decals{
icon_state = "docdecal2"
@@ -53118,12 +50984,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
-"nyG" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
"nyQ" = (
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
@@ -53134,6 +50994,12 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"nzt" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"nzv" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/item/clipboard,
@@ -53145,18 +51011,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"nzA" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"nzC" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/p_stern)
"nzD" = (
/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer,
@@ -53178,18 +51032,10 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
-"nAC" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-y"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/squads/req)
+"nAm" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"nAY" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -53228,6 +51074,15 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"nBo" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nBw" = (
/turf/open/floor/almayer{
dir = 1;
@@ -53240,21 +51095,36 @@
icon_state = "mono"
},
/area/almayer/living/pilotbunks)
+"nBF" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
+"nBJ" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/s_bow)
"nBK" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
-"nBW" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
+"nBV" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
+"nCe" = (
+/obj/structure/machinery/prop/almayer/computer{
+ pixel_y = 20
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/repair_bay)
"nCf" = (
/obj/effect/landmark/start/marine/tl/charlie,
/obj/effect/landmark/late_join/charlie,
@@ -53303,6 +51173,12 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"nCM" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"nCR" = (
/obj/structure/sink{
dir = 4;
@@ -53338,6 +51214,13 @@
icon_state = "tcomms"
},
/area/almayer/engineering/lower/engine_core)
+"nDb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_umbilical)
"nDo" = (
/obj/structure/closet/l3closet/general,
/obj/structure/window/reinforced{
@@ -53368,6 +51251,18 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
+"nEc" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
+"nEl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"nEo" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box{
@@ -53376,12 +51271,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie)
-"nEs" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_umbilical)
"nEF" = (
/obj/structure/machinery/conveyor_switch{
id = "gym_1";
@@ -53412,6 +51301,16 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"nEO" = (
+/mob/living/simple_animal/mouse/brown,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/s_bow)
+"nEZ" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/s_bow)
"nFm" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/tool/surgery/scalpel,
@@ -53419,12 +51318,6 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
-"nFr" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/aft_hallway)
"nFs" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -53445,16 +51338,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"nFG" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"nFI" = (
/obj/structure/surface/table/almayer,
/obj/structure/disposalpipe/segment{
@@ -53484,16 +51367,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
-"nFV" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/starboard_hallway)
"nFX" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 2;
@@ -53526,35 +51399,48 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
-"nGp" = (
-/obj/structure/platform{
- dir = 8
+"nGk" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
+"nGM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/stack/sheet/metal,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"nGz" = (
-/obj/item/tool/warning_cone{
- pixel_x = -12;
- pixel_y = 16
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"nGH" = (
-/obj/structure/machinery/power/apc/almayer,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
+/area/almayer/maint/hull/lower/l_a_p)
"nGY" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/north2)
-"nHf" = (
+"nGZ" = (
+/obj/structure/largecrate/supply/supplies/water,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"nHu" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"nHG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/lower/l_m_p)
"nHJ" = (
/obj/structure/machinery/light{
dir = 8
@@ -53578,14 +51464,16 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"nHN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"nHX" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
},
-/area/almayer/maint/hull/lower/p_bow)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"nIj" = (
/turf/open/floor/almayer{
icon_state = "green"
@@ -53631,6 +51519,13 @@
icon_state = "plating"
},
/area/almayer/shipboard/port_missiles)
+"nIF" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nIG" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -53640,6 +51535,9 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
+"nIN" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/upper/u_m_p)
"nIS" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -53654,13 +51552,6 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/lower/engine_core)
-"nJm" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
"nJs" = (
/obj/structure/largecrate/random/case,
/turf/open/floor/almayer{
@@ -53706,17 +51597,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"nLg" = (
-/obj/effect/projector{
- name = "Almayer_Up2";
- vector_x = -1;
- vector_y = 100
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"nLk" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/power/apc/almayer{
@@ -53727,6 +51607,9 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"nLp" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/u_f_p)
"nLt" = (
/turf/open/floor/almayer{
dir = 1;
@@ -53757,35 +51640,15 @@
icon_state = "plating"
},
/area/almayer/engineering/upper_engineering)
-"nLN" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_stern)
-"nLT" = (
-/obj/structure/bed/chair/comfy/orange{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"nLZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door_control{
- id = "laddernortheast";
- name = "North East Ladders Shutters";
- pixel_y = -25;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
+"nLM" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
},
/turf/open/floor/almayer{
- icon_state = "green"
+ dir = 1;
+ icon_state = "blue"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"nMe" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -53805,17 +51668,6 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
-"nMN" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/wrench{
- pixel_y = 2
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"nMT" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
"nMV" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -53867,6 +51719,16 @@
icon_state = "emeraldcorner"
},
/area/almayer/living/briefing)
+"nNI" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
+"nNT" = (
+/obj/item/tool/weldingtool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"nNV" = (
/obj/structure/bed/chair{
dir = 8;
@@ -53913,9 +51775,22 @@
icon_state = "plate"
},
/area/almayer/command/corporateliaison)
+"nOx" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"nOC" = (
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/execution)
+"nOX" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"nPa" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -53955,9 +51830,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
-"nPh" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/upper/mess)
"nPs" = (
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = 12
@@ -53994,12 +51866,13 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"nPF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"nPO" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/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.";
@@ -54023,6 +51896,18 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
+"nQn" = (
+/obj/structure/surface/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/s_bow)
+"nQo" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"nQv" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -54032,21 +51917,30 @@
icon_state = "plating_striped"
},
/area/almayer/squads/req)
-"nQx" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
+"nQw" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/mgoggles/prescription,
+/obj/item/clothing/glasses/mbcg,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"nQA" = (
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
-"nRC" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"nRA" = (
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
},
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_x = -1;
- pixel_y = 2
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/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)
@@ -54058,6 +51952,12 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"nRN" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"nRR" = (
/turf/open/floor/almayer{
dir = 1;
@@ -54068,14 +51968,29 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering)
-"nSm" = (
-/obj/structure/machinery/light/small{
- dir = 8
+"nSk" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/item/stack/tile/carpet{
+ amount = 20
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/hull/upper/u_a_p)
+"nSq" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"nSu" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -54096,26 +52011,39 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/telecomms)
-"nSI" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"nSS" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
+"nTc" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_p)
"nTl" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "red"
},
/area/almayer/squads/alpha)
+"nTo" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/transmitter{
+ dir = 8;
+ name = "Medical Telephone";
+ phone_category = "Almayer";
+ phone_id = "Medical Lower";
+ pixel_x = 16
+ },
+/obj/item/device/helmet_visor/medical/advanced,
+/obj/item/device/helmet_visor/medical/advanced,
+/obj/item/device/helmet_visor/medical/advanced,
+/obj/item/device/helmet_visor/medical/advanced,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lockerroom)
"nTs" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -54193,6 +52121,16 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
+"nUm" = (
+/obj/structure/bed/chair/comfy/beige,
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 12;
+ pixel_y = -5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"nUn" = (
/obj/structure/surface/table/almayer,
/obj/structure/flora/pottedplant{
@@ -54201,14 +52139,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"nUs" = (
-/obj/structure/surface/rack,
-/obj/item/tool/wet_sign,
-/obj/item/tool/wet_sign,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"nUv" = (
/obj/structure/machinery/light{
dir = 1
@@ -54217,32 +52147,26 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
-"nUS" = (
-/obj/structure/machinery/light/small{
- dir = 1
+"nUT" = (
+/obj/structure/platform{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
-"nVe" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/sign/safety/bridge{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/west{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
"nVi" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
+"nVn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"nVq" = (
/obj/structure/sign/safety/security{
pixel_x = -17;
@@ -54257,24 +52181,29 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"nVz" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"nVA" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nVB" = (
/turf/open/floor/almayer,
/area/almayer/command/securestorage)
-"nVC" = (
-/obj/structure/largecrate/random/case/double,
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
- },
+"nVE" = (
+/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/upper/u_m_p)
"nVF" = (
/obj/structure/disposalpipe/junction{
dir = 8
@@ -54283,6 +52212,17 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/offices)
+"nVQ" = (
+/obj/structure/machinery/light,
+/obj/structure/sign/safety/security{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"nVR" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/brig/perma)
@@ -54296,33 +52236,13 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
-"nVY" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"nWt" = (
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
-"nWx" = (
-/obj/structure/machinery/vending/snack,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"nWN" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/wood/ship,
/area/almayer/engineering/ce_room)
-"nXv" = (
-/obj/structure/closet,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/glasses/regular/hipster,
+"nXo" = (
+/obj/item/storage/box/donkpockets,
+/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -54389,6 +52309,12 @@
icon_state = "silverfull"
},
/area/almayer/command/securestorage)
+"nYi" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"nYn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -54407,23 +52333,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"nYu" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/spray/cleaner{
- pixel_x = 7;
- pixel_y = 14
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
-"nYv" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
"nYD" = (
/obj/structure/closet/secure_closet/medical2,
/turf/open/floor/almayer{
@@ -54435,18 +52344,14 @@
dir = 8
},
/area/almayer/command/lifeboat)
-"nZp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"nYR" = (
+/obj/structure/sign/safety/cryo{
+ pixel_y = 26
},
-/obj/structure/prop/invuln/lattice_prop{
- dir = 1;
- icon_state = "lattice-simple";
- pixel_x = -16;
- pixel_y = 17
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"nZy" = (
/obj/structure/surface/table/almayer,
/obj/structure/disposalpipe/segment{
@@ -54455,18 +52360,29 @@
/obj/item/facepaint/black,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"oac" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+"nZG" = (
+/obj/structure/platform{
+ dir = 4
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
+"nZR" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/shipboard/panic)
+"nZW" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/souto/blue{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"oap" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -54474,10 +52390,28 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
+"oaw" = (
+/obj/structure/closet/firecloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/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{
+ dir = 4;
+ icon_state = "plating_striped"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"oaW" = (
/obj/structure/machinery/cryopod/right,
/turf/open/floor/almayer{
@@ -54491,17 +52425,6 @@
},
/turf/closed/wall/almayer,
/area/almayer/squads/req)
-"obx" = (
-/obj/structure/ladder{
- height = 1;
- id = "ForePortMaint"
- },
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/lower/p_bow)
"oby" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/plate{
@@ -54527,6 +52450,14 @@
icon_state = "plate"
},
/area/almayer/squads/alpha_bravo_shared)
+"obJ" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"obQ" = (
/obj/structure/bed/chair{
dir = 8
@@ -54594,22 +52525,53 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"ocS" = (
-/obj/structure/window/framed/almayer/hull,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/s_bow)
+"ocI" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"ocX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"odb" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"ode" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"odl" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/starboard)
+"odt" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"odu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -54638,6 +52600,22 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
+"odG" = (
+/obj/structure/platform,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"odN" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -54648,14 +52626,6 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/sea_office)
-"odT" = (
-/obj/structure/surface/table/almayer,
-/obj/item/trash/pistachios,
-/obj/item/tool/lighter/random{
- pixel_x = 13
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"odV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -54683,17 +52653,17 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha_bravo_shared)
-"oeq" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_stern)
"oer" = (
/turf/closed/wall/almayer{
damage_cap = 15000
},
/area/almayer/squads/delta)
+"oes" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"oex" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/structure/machinery/light,
@@ -54707,31 +52677,20 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/processing)
+"oeH" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"oeM" = (
/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"oeY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"ofp" = (
-/obj/structure/bookcase{
- icon_state = "book-5";
- name = "medical manuals bookcase";
- opacity = 0
- },
-/obj/item/book/manual/surgery,
-/obj/item/book/manual/medical_diagnostics_manual,
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/wood/ship,
-/area/almayer/living/commandbunks)
"ofH" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -54749,12 +52708,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"ofP" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"ofU" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -54769,23 +52722,18 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"ogi" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
-"ogj" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
-/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza,
-/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
-"ogI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
+"ogd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"ogK" = (
/obj/structure/bed/bedroll{
desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on.";
@@ -54800,28 +52748,25 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"ogM" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"ohj" = (
/obj/structure/machinery/cryopod,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/squads/charlie)
-"ohw" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+"ohu" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ dir = 1;
+ name = "\improper Brig Maintenance"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/upper/p_bow)
"ohA" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -54859,6 +52804,19 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
+"ohI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/circuitboard/airlock,
+/obj/item/circuitboard/airlock{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"ohJ" = (
/obj/structure/machinery/computer/arcade,
/turf/open/floor/wood/ship,
@@ -54881,6 +52839,17 @@
icon_state = "test_floor4"
},
/area/almayer/living/captain_mess)
+"oif" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"oig" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"oih" = (
/obj/structure/bed{
icon_state = "abed"
@@ -54910,18 +52879,16 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"oin" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
+"oiq" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 8;
+ req_one_access = list(2,34,30)
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/u_m_p)
"oir" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -54931,12 +52898,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"ois" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"oit" = (
/obj/effect/landmark/railgun_computer{
dir = 1
@@ -54946,6 +52907,12 @@
icon_state = "redfull"
},
/area/almayer/shipboard/port_missiles)
+"oiB" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"oiL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -54964,14 +52931,10 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
-"oiR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
+"oiX" = (
+/obj/docking_port/stationary/vehicle_elevator/almayer,
+/turf/open/floor/almayer/empty,
+/area/almayer/hallways/lower/vehiclehangar)
"oiY" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -54988,21 +52951,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"ojg" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"ojh" = (
/obj/structure/disposalpipe/junction{
dir = 8
@@ -55038,22 +52986,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"ojR" = (
-/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{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"ojZ" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -55066,6 +52998,16 @@
icon_state = "plate"
},
/area/almayer/squads/charlie)
+"okd" = (
+/obj/structure/machinery/door/poddoor/almayer{
+ id = "n_umbilical";
+ name = "\improper Umbillical Airlock";
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"okg" = (
/obj/structure/sign/safety/reception{
pixel_x = 8;
@@ -55075,6 +53017,19 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"oko" = (
+/obj/structure/largecrate/supply/supplies/tables_racks,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"okx" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"okD" = (
/obj/structure/prop/almayer/name_stencil{
icon_state = "almayer6"
@@ -55083,26 +53038,20 @@
icon_state = "outerhull_dir"
},
/area/space)
-"olk" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
+"old" = (
+/obj/structure/machinery/light/small,
+/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
-"olv" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/ashtray/plastic,
-/obj/item/trash/cigbutt{
- pixel_x = 4
- },
-/obj/item/trash/cigbutt{
- pixel_x = -10;
- pixel_y = 13
+/area/almayer/maint/hull/upper/s_bow)
+"olC" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light/small{
+ dir = 8
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/upper/u_m_s)
"olM" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -55139,6 +53088,12 @@
},
/turf/open/floor/wood/ship,
/area/almayer/engineering/ce_room)
+"olQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"olU" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -55146,6 +53101,12 @@
icon_state = "blue"
},
/area/almayer/command/cichallway)
+"olW" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/lower/s_bow)
"omb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -55155,21 +53116,47 @@
icon_state = "silvercorner"
},
/area/almayer/command/cichallway)
-"omi" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+"ome" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/maint/hull/upper/p_bow)
"omo" = (
/obj/structure/window/framed/almayer/white,
/turf/open/floor/plating,
/area/almayer/medical/lockerroom)
+"omp" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"omt" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
+"omx" = (
+/obj/structure/largecrate/random/barrel/white,
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = 32
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"omy" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -55180,10 +53167,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
-"omL" = (
-/obj/docking_port/stationary/escape_pod/north,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_s)
"omP" = (
/obj/item/tool/mop,
/obj/structure/surface/rack,
@@ -55192,13 +53175,6 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
-"omW" = (
-/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"ond" = (
/obj/structure/machinery/sleep_console{
dir = 8
@@ -55207,13 +53183,36 @@
icon_state = "dark_sterile"
},
/area/almayer/shipboard/brig/surgery)
-"onr" = (
+"onh" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"onn" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"onv" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/lower/l_f_s)
"onN" = (
/obj/structure/surface/table/almayer,
/obj/structure/disposalpipe/segment{
@@ -55277,9 +53276,19 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"opf" = (
+"ooA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_stern)
+/area/almayer/maint/hull/lower/l_m_s)
+"opd" = (
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"opC" = (
/obj/structure/machinery/door/airlock/almayer/command/reinforced{
name = "\improper Combat Information Center"
@@ -55317,22 +53326,47 @@
/obj/docking_port/stationary/emergency_response/external/port4,
/turf/open/space/basic,
/area/space)
-"opU" = (
-/obj/structure/machinery/portable_atmospherics/canister/air,
-/obj/structure/machinery/light/small{
- dir = 1
+"opN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/reception{
+ pixel_x = 15;
+ pixel_y = 32
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"oqn" = (
-/obj/item/stool{
- pixel_x = -15;
- pixel_y = 6
+/area/almayer/hallways/upper/aft_hallway)
+"opV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/obj/structure/machinery/door_control{
+ id = "laddersoutheast";
+ name = "South East Ladders Shutters";
+ pixel_y = 25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"oqc" = (
+/obj/structure/surface/rack,
+/obj/item/storage/firstaid/toxin,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"oqt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -55371,6 +53405,10 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"oqI" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"oqS" = (
/obj/structure/toilet{
dir = 1
@@ -55385,20 +53423,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
-"oqW" = (
-/obj/structure/largecrate/random/barrel/white,
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = 32
- },
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
- },
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"oqY" = (
/obj/structure/machinery/conveyor{
id = "req_belt"
@@ -55445,16 +53469,14 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"ory" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/snacks/mre_pack/meal5,
-/obj/item/device/flashlight/lamp{
- pixel_x = 3;
- pixel_y = 12
+"orq" = (
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 13
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"orH" = (
/turf/open/floor/almayer/uscm/directional{
dir = 10
@@ -55477,16 +53499,23 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
-"osd" = (
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
+"osn" = (
+/obj/item/trash/USCMtray{
+ pixel_x = -4;
+ pixel_y = 10
+ },
/obj/structure/surface/table/almayer,
-/obj/item/fuel_cell,
+/obj/item/tool/kitchen/utensil/pfork{
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
-/area/almayer/engineering/lower/engine_core)
+/area/almayer/maint/upper/u_m_s)
"osx" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -55549,15 +53578,12 @@
},
/area/almayer/engineering/lower/workshop)
"osQ" = (
-/obj/structure/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
+ icon_state = "plate"
},
-/area/almayer/maint/upper/mess)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"osT" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/prop/ice_colony/hula_girl{
@@ -55576,9 +53602,55 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"osX" = (
+/obj/structure/sign/safety/north{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"otq" = (
+/obj/structure/machinery/line_nexter{
+ dir = 1;
+ id = "MTline";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"otu" = (
/turf/closed/wall/almayer/research/containment/wall/connect_w,
/area/almayer/medical/containment/cell)
+"otC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"otE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"otW" = (
+/obj/structure/machinery/light/small,
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"ouf" = (
/obj/structure/stairs{
dir = 1;
@@ -55627,16 +53699,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop/hangar)
-"ouy" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 2
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"ouB" = (
/obj/structure/bed/sofa/vert/grey/bot,
/turf/open/floor/almayer,
@@ -55650,6 +53712,18 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"ouU" = (
+/obj/structure/surface/table/almayer,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/technology_scanner,
+/obj/effect/spawner/random/technology_scanner,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"ouW" = (
/obj/structure/sign/safety/storage{
pixel_x = 8;
@@ -55664,6 +53738,10 @@
icon_state = "silvercorner"
},
/area/almayer/command/cichallway)
+"ove" = (
+/obj/structure/airlock_assembly,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"ovi" = (
/turf/open/floor/almayer{
dir = 4;
@@ -55681,16 +53759,6 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"ovx" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1;
- name = "\improper Emergency Air Storage"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"ovG" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -55704,39 +53772,26 @@
dir = 4
},
/area/almayer/medical/containment/cell)
-"ovP" = (
-/obj/structure/sign/safety/security{
- pixel_x = 15
+"ovQ" = (
+/obj/structure/machinery/light{
+ dir = 1
},
-/turf/closed/wall/almayer,
-/area/almayer/hallways/starboard_umbilical)
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"owg" = (
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/starboard)
-"owD" = (
-/obj/effect/spawner/random/toolbox,
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
-"owH" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/poddoor/almayer{
- dir = 4;
- id = "hangarentrancenorth";
- name = "\improper North Hangar Podlock"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"owU" = (
+/obj/structure/machinery/light/small{
+ dir = 8
},
-/area/almayer/hallways/starboard_hallway)
-"owS" = (
-/obj/docking_port/stationary/escape_pod/west,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/lower/l_m_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"owW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -55760,59 +53815,69 @@
/obj/item/bedsheet/orange,
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"oxe" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"oxg" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"oxi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
/turf/open/floor/almayer,
/area/almayer/living/cafeteria_officer)
-"oxo" = (
-/obj/structure/closet/crate,
-/obj/item/ammo_box/magazine/l42a,
-/obj/item/ammo_box/magazine/l42a,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"oxl" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
},
-/area/almayer/maint/hull/upper/u_m_s)
-"oxt" = (
/obj/structure/machinery/light{
dir = 4
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"oxn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "plating_striped"
+ icon_state = "plate"
},
-/area/almayer/squads/req)
+/area/almayer/maint/hull/lower/l_m_s)
"oxu" = (
/obj/structure/sign/safety/galley{
pixel_x = -17
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"oxy" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
+"oxz" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"oxU" = (
/obj/structure/machinery/photocopier,
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"oyg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
-"oyy" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"oyE" = (
/obj/effect/landmark/start/intel,
/obj/structure/sign/poster{
@@ -55825,15 +53890,25 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/port_atmos)
-"oyJ" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_f_p)
+"oyO" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/sign/safety/water{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"oyR" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"oyX" = (
+/obj/structure/bookcase/manuals/engineering,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"ozq" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/disposalpipe/segment{
@@ -55843,22 +53918,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/alpha)
-"ozt" = (
-/obj/structure/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"ozw" = (
-/obj/structure/surface/rack,
-/obj/item/storage/firstaid/toxin,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"ozz" = (
/obj/structure/surface/table/almayer,
/obj/item/tank/emergency_oxygen/double,
@@ -55866,6 +53925,18 @@
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/starboard)
+"ozH" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"ozN" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
id_tag = "Boat2-D2";
@@ -55876,15 +53947,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
-"ozP" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"ozT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -55903,14 +53965,15 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"oAr" = (
-/obj/structure/surface/rack,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/tool/hand_labeler,
+"oAa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/hallways/lower/port_umbilical)
"oAB" = (
/obj/structure/platform{
dir = 8;
@@ -55920,12 +53983,43 @@
dir = 10
},
/area/almayer/living/briefing)
+"oAK" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"oAO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
+"oAT" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/soft/ferret{
+ pixel_x = -7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"oAY" = (
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"oBq" = (
/obj/structure/bed,
/obj/structure/machinery/flasher{
@@ -55937,6 +54031,9 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
+"oBr" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/l_a_s)
"oBA" = (
/obj/structure/sign/safety/conference_room{
pixel_x = -17;
@@ -55951,29 +54048,30 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"oBM" = (
-/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"oCa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/almayer/maint/hull/upper/u_a_s)
-"oBQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_m_s)
-"oBS" = (
+/area/almayer/hallways/lower/port_umbilical)
+"oCb" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"oCf" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -56001,19 +54099,13 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
-"oCV" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
+"oCK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"oDh" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/pouch/tools/full,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"oDi" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -56066,14 +54158,23 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
-"oDI" = (
-/obj/structure/machinery/constructable_frame{
- icon_state = "box_2"
+"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{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "sterile_green_corner"
},
-/area/almayer/maint/hull/upper/p_stern)
+/area/almayer/medical/lower_medical_medbay)
"oDL" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -56094,6 +54195,15 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/medical_science)
+"oDU" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/barricade/handrail,
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"oDY" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
@@ -56171,25 +54281,6 @@
icon_state = "red"
},
/area/almayer/living/port_emb)
-"oFb" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
-"oFg" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"oFm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -56198,21 +54289,20 @@
},
/area/almayer/engineering/lower/workshop)
"oFn" = (
-/obj/structure/platform,
-/obj/structure/largecrate/random/case/double{
- layer = 2.98
- },
-/obj/structure/sign/safety/life_support{
- pixel_x = 32
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wirecutters/clippers,
+/obj/item/handcuffs/zip,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
+/area/almayer/maint/hull/lower/l_f_p)
+"oFr" = (
+/obj/item/storage/firstaid/regular,
+/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
-"oFv" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
"oFV" = (
/obj/structure/sign/poster{
pixel_x = -32;
@@ -56223,6 +54313,40 @@
"oFY" = (
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/lobby)
+"oGf" = (
+/obj/structure/surface/rack,
+/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{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
+"oGi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"oGj" = (
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
+"oGm" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"oGx" = (
/obj/structure/closet/secure_closet/surgical{
pixel_x = 30
@@ -56247,10 +54371,28 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
+"oGF" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"oGJ" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower/engine_core)
+"oGL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"oGP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -56300,6 +54442,21 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie)
+"oHf" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
+"oHg" = (
+/obj/structure/largecrate/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"oHl" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/electrical,
@@ -56308,6 +54465,23 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"oHs" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"oHt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"oHx" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -56316,10 +54490,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/laundry)
-"oHy" = (
-/obj/structure/machinery/cm_vending/sorted/marine_food,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"oIa" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -56370,6 +54540,15 @@
"oIB" = (
/turf/closed/wall/almayer,
/area/almayer/command/combat_correspondent)
+"oJj" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"oJk" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/lower/workshop)
@@ -56384,6 +54563,22 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"oJL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "hangarentrancesouth";
+ name = "South Hangar Shutters";
+ pixel_y = 30;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"oJR" = (
/obj/effect/projector{
name = "Almayer_AresDown";
@@ -56407,18 +54602,6 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"oJX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/secure{
- pixel_x = -5
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"oKb" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -56427,15 +54610,6 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"oKi" = (
-/obj/structure/machinery/conveyor{
- id = "lower_garbage"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "plating_striped"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"oKv" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
layer = 1.9
@@ -56452,24 +54626,31 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
-"oKB" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"oLa" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+"oLf" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/maint/hull/upper/p_bow)
"oLi" = (
/obj/effect/landmark/start/marine/medic/bravo,
/obj/effect/landmark/late_join/bravo,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/alpha)
+"oLj" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"oLm" = (
/obj/structure/machinery/door_control{
id = "ARES StairsLower";
@@ -56488,13 +54669,6 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
-"oLv" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"oLF" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -56526,15 +54700,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/stern_point_defense)
-"oLT" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"oLU" = (
/turf/open/floor/almayer{
dir = 1;
@@ -56560,12 +54725,6 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
-"oMp" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"oMs" = (
/obj/structure/machinery/computer/cameras/almayer{
dir = 1
@@ -56587,6 +54746,10 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
+"oNa" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"oNb" = (
/obj/structure/surface/table/almayer,
/obj/structure/flora/pottedplant{
@@ -56623,6 +54786,12 @@
icon_state = "plating"
},
/area/almayer/medical/upper_medical)
+"oNM" = (
+/obj/structure/largecrate/random/barrel,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"oNP" = (
/obj/structure/machinery/vending/cola{
density = 0;
@@ -56643,16 +54812,22 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"oOh" = (
-/obj/item/tool/mop{
- pixel_x = -6;
- pixel_y = 24
+"oOi" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
},
-/obj/item/reagent_container/glass/bucket,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"oOp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/wirecutters,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/maint/hull/upper/u_m_p)
"oOw" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -56719,27 +54894,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"oPs" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/lower/l_m_s)
-"oPu" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
-"oPv" = (
-/obj/structure/sign/safety/water{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"oPx" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"oPy" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -56778,32 +54932,26 @@
icon_state = "red"
},
/area/almayer/command/cic)
-"oPS" = (
-/obj/structure/platform_decoration{
- dir = 8
+"oPF" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"oPY" = (
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/lower/l_m_s)
-"oQj" = (
-/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
+/area/almayer/maint/hull/lower/l_a_s)
+"oPT" = (
+/obj/structure/machinery/light{
+ dir = 1
},
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
+"oQn" = (
/turf/open/floor/almayer{
- icon_state = "green"
+ dir = 1;
+ icon_state = "greencorner"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/lower/port_midship_hallway)
"oQs" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/book/manual/surgery{
@@ -56813,11 +54961,30 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
+"oQw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"oQH" = (
/turf/open/floor/almayer{
icon_state = "cargo_arrow"
},
/area/almayer/living/briefing)
+"oQJ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"oQL" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"oQM" = (
/obj/structure/pipes/vents/pump{
dir = 4
@@ -56847,6 +55014,14 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
+"oRm" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ name = "\improper Port Viewing Room"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"oRJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -56918,15 +55093,6 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/port)
-"oSy" = (
-/obj/structure/prop/invuln/lattice_prop{
- dir = 1;
- icon_state = "lattice-simple";
- pixel_x = 16;
- pixel_y = -16
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"oSC" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -56936,6 +55102,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/lobby)
+"oSG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/card/id/visa,
+/obj/item/tool/crew_monitor,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"oSL" = (
/obj/structure/window/reinforced{
dir = 8
@@ -56959,6 +55133,26 @@
icon_state = "plate"
},
/area/almayer/squads/alpha_bravo_shared)
+"oSM" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
+"oSR" = (
+/obj/structure/stairs{
+ icon_state = "ramptop"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"oTc" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"oTe" = (
/obj/item/prop/almayer/box,
/obj/item/prop{
@@ -56988,12 +55182,6 @@
icon_state = "test_floor5"
},
/area/almayer/squads/req)
-"oTn" = (
-/mob/living/simple_animal/mouse/brown,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/s_bow)
"oTA" = (
/obj/structure/machinery/cryopod,
/obj/structure/machinery/light{
@@ -57003,17 +55191,15 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha)
-"oTN" = (
-/obj/structure/surface/rack,
-/obj/item/device/radio{
- pixel_x = 5;
- pixel_y = 4
+"oTH" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
-/obj/item/device/radio,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/lower/port_umbilical)
"oTO" = (
/obj/structure/stairs/perspective{
dir = 1;
@@ -57027,16 +55213,35 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"oTR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/door/airlock/almayer/maint{
+"oUi" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"oUt" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"oUx" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"oUz" = (
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/machinery/power/apc/almayer{
dir = 1
},
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "silver"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/lower/repair_bay)
"oUG" = (
/obj/structure/machinery/light{
dir = 8
@@ -57046,13 +55251,21 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"oUM" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = 32
+"oUO" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
+"oUZ" = (
+/obj/structure/surface/rack,
+/obj/item/tool/crowbar,
+/obj/item/tool/weldingtool,
+/obj/item/tool/wrench,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"oVf" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/evidence{
@@ -57070,12 +55283,28 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/general_equipment)
-"oVn" = (
-/obj/structure/closet/secure_closet/engineering_welding{
- req_one_access_txt = "7;23;27"
+"oVk" = (
+/obj/structure/stairs{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
+"oVY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"oWf" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
@@ -57104,6 +55333,10 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"oWq" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"oWx" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -57120,19 +55353,41 @@
icon_state = "plate"
},
/area/almayer/living/starboard_garden)
+"oWE" = (
+/obj/structure/stairs,
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"oWF" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"oWN" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"oXb" = (
/obj/effect/landmark/start/marine/charlie,
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"oXd" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"oXp" = (
/obj/effect/decal/cleanable/ash,
/turf/open/floor/wood/ship,
@@ -57173,6 +55428,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"oYi" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"oYp" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -57182,16 +55443,55 @@
icon_state = "red"
},
/area/almayer/living/offices/flight)
-"oYP" = (
+"oYr" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"oYs" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
+ icon_state = "N";
pixel_y = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/u_a_s)
+"oYA" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/dropship_equipment/fuel/cooling_system{
+ layer = 3.5
+ },
+/obj/item/clothing/glasses/welding{
+ layer = 3.6;
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/machinery/computer/working_joe{
+ dir = 4;
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"oZn" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"oZp" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light,
@@ -57243,9 +55543,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"oZF" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/lower/s_bow)
"oZV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/roller,
@@ -57286,10 +55583,6 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cryo)
-"pau" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
"paI" = (
/obj/structure/sign/safety/debark_lounge{
pixel_x = 15;
@@ -57299,23 +55592,26 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
+"paJ" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"paL" = (
/turf/open/floor/almayer/uscm/directional{
dir = 1
},
/area/almayer/command/cic)
-"paN" = (
-/obj/structure/surface/rack,
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
+"pbo" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
-"pbd" = (
-/obj/structure/largecrate/supply,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/upper/s_stern)
"pbp" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
@@ -57343,6 +55639,22 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
+"pcc" = (
+/obj/structure/surface/rack,
+/obj/item/paper{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/folder/yellow,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
+"pcf" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"pcj" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -57397,31 +55709,18 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"pcR" = (
-/obj/item/frame/rack{
- layer = 3.1;
- pixel_y = 19
- },
-/obj/structure/surface/rack,
-/obj/item/tool/weldpack{
- pixel_x = 5
- },
-/obj/item/tool/weldpack{
- pixel_x = -2
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"pcY" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
},
-/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/maint/upper/mess)
+"pdp" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"pdy" = (
/obj/structure/machinery/door_control{
id = "OTStore";
@@ -57447,12 +55746,28 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"pep" = (
+"pek" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/s_bow)
+"peu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"peM" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"peO" = (
/obj/structure/sign/safety/medical{
pixel_x = -17;
@@ -57495,20 +55810,27 @@
allow_construction = 0
},
/area/almayer/stair_clone)
-"pfy" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
+"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{
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
+"pfL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"pfM" = (
/obj/structure/machinery/light{
dir = 4
@@ -57524,16 +55846,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"pga" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/powercell,
-/obj/effect/spawner/random/powercell,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"pgw" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -57563,6 +55875,13 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"pgJ" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"pgM" = (
/obj/structure/reagent_dispensers/water_cooler/walk_past{
pixel_x = 10;
@@ -57621,21 +55940,15 @@
icon_state = "plate"
},
/area/almayer/command/combat_correspondent)
-"phn" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/s_bow)
-"phx" = (
-/obj/structure/machinery/door/airlock/almayer/medical{
- id_tag = "or03";
- name = "Lobby"
+"phw" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/card{
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/medical/lower_medical_medbay)
+/area/almayer/shipboard/panic)
"phN" = (
/obj/structure/disposalpipe/junction{
dir = 4;
@@ -57646,6 +55959,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/processing)
+"pij" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"piJ" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"piK" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -57660,9 +55986,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
-"pji" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/stern_hallway)
+"pjh" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"pjj" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -57672,15 +56001,15 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"pjr" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
"pjw" = (
/turf/open/floor/almayer{
dir = 10;
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
+"pjz" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/upper/p_bow)
"pjF" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
@@ -57700,18 +56029,18 @@
icon_state = "plating_striped"
},
/area/almayer/squads/req)
-"pjM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"pjP" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
},
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"pjQ" = (
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
+ dir = 10;
+ icon_state = "silver"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"pjR" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -57722,25 +56051,15 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"pkv" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
-"pkx" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"pjY" = (
+/obj/structure/machinery/light{
+ dir = 4
},
-/area/almayer/maint/hull/lower/l_f_s)
-"pky" = (
-/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
+ dir = 10;
+ icon_state = "red"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"pkz" = (
/turf/open/floor/almayer{
icon_state = "redfull"
@@ -57756,6 +56075,9 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"plv" = (
+/turf/open/floor/plating,
+/area/almayer/maint/hull/lower/l_m_p)
"plI" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
/turf/open/floor/almayer{
@@ -57763,6 +56085,15 @@
icon_state = "sterile_green_side"
},
/area/almayer/shipboard/brig/surgery)
+"pmd" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"pmq" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -57793,14 +56124,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"pmS" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"pmV" = (
/obj/structure/prop/server_equipment/yutani_server/broken{
density = 0;
@@ -57813,12 +56136,16 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"pno" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = 32
+"pnh" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "ForePortMaint"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/obj/structure/sign/safety/ladder{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/upper/p_bow)
"pns" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -57829,16 +56156,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"pnI" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
- },
-/obj/structure/largecrate/random/case/small,
+"pnC" = (
+/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "sterile_green_side"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/medical/lower_medical_medbay)
"pnL" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_2"
@@ -57856,6 +56179,21 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"pok" = (
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = -8;
+ pixel_y = 18
+ },
+/obj/structure/filingcabinet{
+ density = 0;
+ pixel_x = 8;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"poA" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -57894,6 +56232,21 @@
/obj/item/device/camera,
/turf/open/floor/almayer,
/area/almayer/command/corporateliaison)
+"ppG" = (
+/obj/structure/bed/sofa/south/grey,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"ppM" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
+"ppV" = (
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"pqc" = (
/turf/open/floor/almayer{
icon_state = "mono"
@@ -57918,6 +56271,19 @@
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
/area/almayer/engineering/upper_engineering/port)
+"pqv" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"pqw" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"pqD" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
@@ -57935,16 +56301,22 @@
/obj/item/trash/cigbutt,
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
-"pqG" = (
-/obj/structure/window/framed/almayer/hull,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/p_bow)
"pqK" = (
/obj/structure/machinery/cryopod,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/squads/bravo)
+"pqM" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 1;
+ name = "\improper Workshop Vendors"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/repair_bay)
"pqP" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/structure/machinery/light{
@@ -57954,31 +56326,39 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"pqQ" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/hallways/vehiclehangar)
-"pqU" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = 6
- },
-/obj/item/weapon/gun/rifle/l42a,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = -6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"pqX" = (
/obj/structure/bed/chair{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/living/gym)
+"prf" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
+"pri" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"prl" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"prx" = (
/obj/structure/bed/chair/comfy{
dir = 4
@@ -58003,22 +56383,19 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"prS" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/wet_sign,
-/obj/item/tool/wet_sign{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/tool/wet_sign{
- pixel_x = -8;
- pixel_y = 6
+"prV" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/machinery/light{
- dir = 1
+/area/almayer/hallways/upper/stern_hallway)
+"prX" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "AftStarboardMaint"
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/upper/u_a_s)
"prY" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray,
@@ -58034,12 +56411,6 @@
icon_state = "bluefull"
},
/area/almayer/living/bridgebunks)
-"psl" = (
-/obj/structure/bed/sofa/south/grey,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"psK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -58100,18 +56471,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"ptr" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"ptv" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/platform{
@@ -58139,6 +56498,14 @@
"ptK" = (
/turf/closed/wall/almayer,
/area/almayer/engineering/upper_engineering/starboard)
+"ptQ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/s_stern)
"ptZ" = (
/obj/structure/platform{
dir = 4;
@@ -58152,6 +56519,16 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"pum" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"pun" = (
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
@@ -58201,12 +56578,34 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
+"puJ" = (
+/obj/structure/prop/invuln/pipe_water,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"puO" = (
/obj/structure/sign/safety/maint{
pixel_x = 32
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north2)
+"puT" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"pvh" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/item/tool/warning_cone{
@@ -58216,38 +56615,31 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
-"pvt" = (
-/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"
- },
+"pvi" = (
/turf/open/floor/almayer{
- icon_state = "green"
+ dir = 6;
+ icon_state = "red"
},
-/area/almayer/hallways/aft_hallway)
-"pvv" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+/area/almayer/hallways/upper/aft_hallway)
+"pvE" = (
+/obj/structure/machinery/light{
+ dir = 1
},
-/obj/structure/bed/chair{
- dir = 4
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
},
-/obj/structure/sign/safety/water{
+/area/almayer/hallways/upper/stern_hallway)
+"pvI" = (
+/obj/structure/sign/safety/rad_haz{
pixel_x = 8;
- pixel_y = -32
+ pixel_y = 32
},
-/obj/structure/machinery/light/small,
+/obj/structure/machinery/power/reactor,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/engineering/lower/engine_core)
"pvJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -58287,27 +56679,29 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/starboard_missiles)
+"pwd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"pwx" = (
-/obj/structure/largecrate/random/case/small,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/p_bow)
+/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)
-"pwJ" = (
-/obj/structure/closet/secure_closet/engineering_welding,
-/obj/item/stack/tile/carpet{
- amount = 20
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"pxj" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
@@ -58350,12 +56744,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"pxO" = (
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"pyc" = (
/obj/structure/bed/stool,
/turf/open/floor/almayer{
@@ -58397,6 +56785,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/bravo)
+"pym" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"pyx" = (
/obj/structure/machinery/door_display/research_cell{
dir = 4;
@@ -58453,6 +56847,15 @@
icon_state = "red"
},
/area/almayer/shipboard/weapon_room)
+"pzc" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"pzd" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -58463,19 +56866,16 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"pzi" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
+"pzj" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "northcheckpoint";
+ name = "\improper Checkpoint Shutters"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "redfull"
},
-/area/almayer/maint/hull/lower/l_m_s)
-"pzA" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"pzG" = (
/obj/docking_port/stationary/emergency_response/port1,
/turf/open/floor/almayer{
@@ -58501,43 +56901,30 @@
icon_state = "bluecorner"
},
/area/almayer/living/briefing)
+"pzW" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/hallways/lower/vehiclehangar)
"pAm" = (
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
-"pAH" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_m_s)
-"pAR" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/starboard_umbilical)
-"pBn" = (
-/obj/structure/sign/safety/escapepod{
- pixel_x = 8;
- pixel_y = -32
+"pAV" = (
+/obj/structure/platform{
+ dir = 1
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "greencorner"
+/obj/item/tool/mop,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
+"pBg" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
},
-/area/almayer/hallways/port_hallway)
-"pBE" = (
-/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/hallways/upper/stern_hallway)
"pBG" = (
/turf/closed/wall/almayer,
/area/almayer/command/corporateliaison)
-"pCe" = (
-/turf/open/floor/plating,
-/area/almayer/maint/hull/lower/l_m_s)
"pCq" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -58555,18 +56942,17 @@
icon_state = "plate"
},
/area/almayer/squads/req)
-"pCD" = (
-/obj/structure/pipes/standard/cap/hidden{
- dir = 4
- },
-/obj/structure/sign/safety/life_support{
- pixel_x = 14;
- pixel_y = -25
+"pCQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/attachable/lasersight,
+/obj/item/reagent_container/food/drinks/cans/souto/vanilla{
+ pixel_x = 10;
+ pixel_y = 11
},
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/upper/u_m_s)
"pDh" = (
/obj/structure/machinery/power/monitor{
name = "Core Power Monitoring"
@@ -58585,14 +56971,6 @@
icon_state = "tcomms"
},
/area/almayer/engineering/upper_engineering/starboard)
-"pDk" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass{
- name = "Brig"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/s_bow)
"pDo" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -58606,18 +56984,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/starboard_point_defense)
-"pDq" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"pDr" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
@@ -58665,15 +57031,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"pDZ" = (
-/obj/structure/surface/rack,
-/obj/item/tool/crowbar,
-/obj/item/tool/weldingtool,
-/obj/item/tool/wrench,
+"pEd" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "orangecorner"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/upper/stern_hallway)
"pEl" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -58692,14 +57055,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"pEp" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"pEB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -58733,31 +57088,55 @@
icon_state = "test_floor4"
},
/area/almayer/lifeboat_pumps/south1)
-"pFx" = (
-/obj/item/clothing/gloves/botanic_leather{
- name = "leather gloves"
+"pFf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/item/clothing/gloves/botanic_leather{
- name = "leather gloves"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/clothing/gloves/botanic_leather{
- name = "leather gloves"
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"pFq" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/binoculars,
+/obj/item/device/whistle{
+ pixel_y = 5
},
-/obj/structure/closet/crate,
-/obj/item/clothing/suit/storage/hazardvest/black,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
-"pGD" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
+/area/almayer/maint/hull/upper/u_f_s)
+"pFr" = (
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
+"pGh" = (
+/obj/effect/decal/cleanable/cobweb{
+ pixel_x = -9;
+ pixel_y = 19
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
+"pGj" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
+"pGG" = (
+/obj/effect/landmark/start/doctor,
+/obj/structure/sign/safety/maint{
+ pixel_y = 26
+ },
+/obj/effect/landmark/late_join/doctor,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
"pGK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -58769,12 +57148,6 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"pGM" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"pGT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
@@ -58785,6 +57158,20 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"pHh" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"pHp" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/perma)
@@ -58794,6 +57181,23 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
+"pHD" = (
+/obj/structure/platform_decoration{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"pHF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"pHG" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -58812,6 +57216,40 @@
/obj/structure/surface/table/almayer,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
+"pIf" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"pIo" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"pIC" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/lower/constr)
"pIU" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -58835,10 +57273,16 @@
icon_state = "test_floor4"
},
/area/almayer/lifeboat_pumps/north1)
-"pJa" = (
-/obj/docking_port/stationary/escape_pod/south,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_s)
+"pJq" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"pJr" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
@@ -58879,23 +57323,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
-"pJE" = (
-/obj/item/trash/uscm_mre,
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice1";
- pixel_x = 16;
- pixel_y = -16
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
-"pJJ" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"pJR" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_AresUp";
@@ -58909,6 +57336,36 @@
dir = 4
},
/area/almayer/command/airoom)
+"pKh" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/effect/landmark/start/nurse,
+/obj/effect/landmark/late_join/nurse,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
+"pKB" = (
+/obj/structure/surface/rack,
+/obj/item/circuitboard/firealarm,
+/obj/item/circuitboard,
+/obj/item/clipboard,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
+"pKW" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "DeployWorkR";
+ name = "\improper Workshop Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/repair_bay)
"pKZ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -58941,13 +57398,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"pLB" = (
-/obj/item/reagent_container/food/snacks/wrapped/chunk,
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_stern)
"pLO" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
@@ -58998,15 +57448,13 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"pMI" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"pMH" = (
+/obj/item/tool/wet_sign,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/maint/hull/lower/l_a_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"pMJ" = (
/obj/structure/bed/chair{
dir = 1
@@ -59056,11 +57504,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/execution)
-"pNu" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"pNM" = (
/obj/structure/platform{
dir = 4
@@ -59083,18 +57526,32 @@
icon_state = "sterile_green"
},
/area/almayer/medical/hydroponics)
-"pOa" = (
-/obj/item/book/manual/medical_diagnostics_manual,
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"pOi" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/living/offices)
+"pOp" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
+"pOC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"pOD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
@@ -59105,25 +57562,27 @@
icon_state = "mono"
},
/area/almayer/living/pilotbunks)
+"pOH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/panic)
"pON" = (
/turf/open/floor/almayer/uscm/directional{
dir = 8
},
/area/almayer/command/cic)
-"pOR" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/structure/ladder{
- height = 2;
- id = "cicladder3"
- },
-/obj/structure/sign/safety/ladder{
- pixel_x = 23;
- pixel_y = 32
+"pOW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plating/almayer,
-/area/almayer/medical/medical_science)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"pOY" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/microwave{
@@ -59134,14 +57593,16 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
-"pPq" = (
-/obj/structure/bed/chair{
- dir = 8
+"pPd" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "OuterShutter";
+ name = "\improper Saferoom Shutters"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/shipboard/panic)
"pPv" = (
/obj/structure/closet/cabinet,
/obj/item/reagent_container/food/drinks/bottle/wine,
@@ -59166,16 +57627,14 @@
icon_state = "plate"
},
/area/almayer/living/captain_mess)
-"pPw" = (
-/obj/structure/largecrate/supply/generator,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
+"pPy" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = -32
},
-/area/almayer/maint/hull/upper/u_a_p)
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"pPA" = (
/obj/structure/sign/poster{
desc = "One of those hot, tanned babes back the beaches of good ol' Earth.";
@@ -59192,6 +57651,15 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"pPG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"pPM" = (
/obj/structure/surface/rack,
/turf/open/floor/almayer{
@@ -59206,6 +57674,21 @@
icon_state = "red"
},
/area/almayer/shipboard/port_missiles)
+"pPQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"pPU" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"pQr" = (
/obj/structure/bed,
/turf/open/floor/almayer{
@@ -59271,19 +57754,15 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
+"pRs" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"pRy" = (
/turf/open/floor/almayer/research/containment/corner_var1{
dir = 4
},
/area/almayer/medical/containment/cell/cl)
-"pRL" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/aft_hallway)
"pRO" = (
/obj/structure/bed/chair{
dir = 4
@@ -59322,29 +57801,24 @@
},
/turf/open/floor/plating,
/area/almayer/engineering/lower/workshop)
-"pSK" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"pSF" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
-"pSL" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "blue"
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
-"pSP" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"pSN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"pSQ" = (
/obj/structure/reagent_dispensers/fueltank{
anchored = 1
@@ -59378,24 +57852,16 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"pTD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/distribution_pipes{
+"pTX" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/sign/safety/fire_haz{
pixel_x = 8;
pixel_y = -32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"pTQ" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/toolbox,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/maint/hull/lower/l_f_p)
"pUd" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
@@ -59464,12 +57930,23 @@
icon_state = "redfull"
},
/area/almayer/shipboard/brig/processing)
-"pVg" = (
-/obj/structure/machinery/light/small{
+"pUL" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/rifle/m41a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"pVr" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"pVx" = (
/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun,
/turf/open/floor/almayer{
@@ -59507,29 +57984,27 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"pVG" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orangecorner"
+"pVF" = (
+/obj/structure/surface/table/almayer,
+/obj/item/spacecash/c1000/counterfeit,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/storage/fancy/cigar,
+/obj/structure/machinery/atm{
+ pixel_y = 32
},
-/area/almayer/maint/hull/upper/u_a_s)
-"pVK" = (
/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/command/corporateliaison)
"pWb" = (
/obj/effect/landmark/start/marine/tl/delta,
/obj/effect/landmark/late_join/delta,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/delta)
-"pWg" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
+"pWd" = (
+/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/upper/u_f_s)
"pWr" = (
/obj/structure/surface/rack,
/obj/item/tool/minihoe{
@@ -59557,17 +58032,16 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"pWA" = (
-/obj/structure/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/structure/machinery/light{
- dir = 8
+"pWw" = (
+/obj/structure/bed/chair,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/squads/req)
+/area/almayer/maint/hull/upper/u_a_s)
"pWN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -59609,6 +58083,24 @@
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
+"pYh" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/one{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"pYi" = (
/obj/structure/machinery/light{
dir = 4
@@ -59640,6 +58132,24 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
+"pYN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
+"pYQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"pYS" = (
/obj/structure/pipes/binary/pump/on{
dir = 4
@@ -59655,12 +58165,18 @@
icon_state = "silvercorner"
},
/area/almayer/shipboard/brig/cic_hallway)
-"pZo" = (
+"pZq" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_umbilical)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"pZH" = (
/obj/structure/machinery/shower{
dir = 8
@@ -59702,6 +58218,28 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"qan" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
+"qas" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"qax" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/vehiclehangar)
"qaV" = (
/turf/open/floor/almayer{
dir = 10;
@@ -59716,9 +58254,6 @@
icon_state = "red"
},
/area/almayer/living/briefing)
-"qbs" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/l_m_p)
"qbx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -59769,12 +58304,6 @@
},
/turf/open/floor/carpet,
/area/almayer/living/commandbunks)
-"qcl" = (
-/obj/structure/sign/safety/conference_room{
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"qcy" = (
/obj/structure/sign/safety/bathunisex{
pixel_x = 8;
@@ -59784,12 +58313,13 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
-"qcM" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"qcL" = (
+/obj/structure/sign/safety/intercom{
+ pixel_x = 8;
+ pixel_y = 32
},
-/area/almayer/maint/upper/u_m_p)
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"qdk" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -59840,9 +58370,6 @@
icon_state = "emerald"
},
/area/almayer/living/port_emb)
-"qdy" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/u_m_s)
"qdz" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -59866,6 +58393,12 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
+"qdV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"qec" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -59908,16 +58441,6 @@
icon_state = "cargo"
},
/area/almayer/squads/charlie)
-"qev" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_s)
"qeF" = (
/obj/structure/sign/safety/reception{
pixel_x = 8;
@@ -59943,13 +58466,6 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/port)
-"qeO" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/device/radio/headset/almayer/mt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"qeY" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/toy/beach_ball/holoball,
@@ -59971,6 +58487,12 @@
icon_state = "plate"
},
/area/almayer/squads/alpha_bravo_shared)
+"qfq" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"qfy" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -60006,6 +58528,21 @@
},
/turf/open/floor/carpet,
/area/almayer/living/commandbunks)
+"qfI" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"qfQ" = (
+/obj/structure/surface/rack,
+/obj/item/stack/folding_barricade/three,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"qga" = (
/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
dir = 1
@@ -60031,24 +58568,16 @@
},
/turf/open/floor/carpet,
/area/almayer/living/commandbunks)
-"qgG" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
-"qgM" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 8
+"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{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/lower/cryo_cells)
+/area/almayer/command/combat_correspondent)
"qgN" = (
/obj/structure/bed/chair{
dir = 4
@@ -60078,12 +58607,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"qhc" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/stern_hallway)
"qhx" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -60113,6 +58636,31 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop/hangar)
+"qhG" = (
+/obj/structure/surface/table/almayer,
+/obj/item/ashtray/bronze{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/ash,
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = 4;
+ pixel_y = 13
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -7;
+ pixel_y = 14
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -13;
+ pixel_y = 8
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ pixel_x = -6;
+ pixel_y = 9
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"qhU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -60128,6 +58676,22 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
+"qid" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
+"qig" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"qih" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
@@ -60147,16 +58711,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"qip" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"qit" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/light{
@@ -60174,14 +58728,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/chapel)
-"qiD" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/lower/s_bow)
"qjz" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/clipboard,
@@ -60198,11 +58744,28 @@
icon_state = "silvercorner"
},
/area/almayer/command/computerlab)
+"qjL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"qjN" = (
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"qjT" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/l42a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"qjV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -60214,13 +58777,6 @@
"qjZ" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/stern_point_defense)
-"qkc" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"qki" = (
/obj/effect/landmark/start/marine/smartgunner/charlie,
/obj/effect/landmark/late_join/charlie,
@@ -60272,19 +58828,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"qld" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_umbilical)
-"qll" = (
-/obj/structure/pipes/vents/pump{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"qlm" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/warning_stripes{
@@ -60302,18 +58845,12 @@
},
/turf/open/floor/carpet,
/area/almayer/living/commandbunks)
-"qlt" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- dir = 1;
- req_access = null;
- req_one_access = null;
- req_one_access_txt = "3;22;19"
- },
+"qlu" = (
+/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/upper/u_a_s)
"qlz" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -60331,6 +58868,12 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"qlL" = (
+/obj/item/reagent_container/food/drinks/cans/souto,
+/turf/open/floor/almayer{
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/lower/repair_bay)
"qlS" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
density = 0;
@@ -60346,28 +58889,10 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"qmb" = (
-/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
- access_modified = 1;
- name = "\improper Requisition's Office";
- req_one_access = null;
- req_one_access_txt = "1;26"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/squads/req)
+"qmh" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/hallways/lower/repair_bay)
"qmk" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -60382,6 +58907,27 @@
icon_state = "bluecorner"
},
/area/almayer/squads/delta)
+"qmq" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"qmy" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door_control{
@@ -60444,12 +58990,19 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/medical_science)
-"qmL" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+"qmM" = (
+/obj/structure/bed/chair{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "Saferoom Channel";
+ pixel_y = -28
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"qmP" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine/uscm,
@@ -60487,6 +59040,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"qnf" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"qnh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60511,15 +59073,14 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"qny" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "Under Construction Shutters";
- name = "\improper Construction Site"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"qnA" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/tool/crowbar{
+ pixel_x = 6;
+ pixel_y = 1
},
-/area/almayer/maint/lower/constr)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"qnC" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
@@ -60535,22 +59096,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/pilotbunks)
-"qnN" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
-"qoj" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
"qom" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/chem_dispenser/soda{
@@ -60596,6 +59141,11 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"qoN" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"qoR" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -60622,6 +59172,13 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/chemistry)
+"qpH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"qpQ" = (
/obj/item/reagent_container/glass/beaker/bluespace,
/obj/structure/machinery/chem_dispenser/medbay,
@@ -60629,15 +59186,29 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/chemistry)
-"qqi" = (
-/obj/structure/sign/safety/hvac_old{
+"qpV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/distribution_pipes{
pixel_x = 8;
pixel_y = 32
},
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
+"qqb" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 9;
+ icon_state = "blue"
},
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/hallways/upper/aft_hallway)
+"qqf" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"qqn" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal3";
@@ -60695,6 +59266,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"qqS" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
"qqV" = (
/obj/structure/machinery/cm_vending/clothing/military_police_warden,
/turf/open/floor/wood/ship,
@@ -60723,27 +59300,10 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"qrS" = (
-/obj/item/clothing/head/welding{
- pixel_y = 6
- },
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"qsr" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
+"qsp" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"qsC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/junction,
@@ -60771,32 +59331,12 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/port)
-"qtn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"qtv" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/living/gym)
-"qtO" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/cryo_cells)
-"qtZ" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/p_stern)
"quj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -60838,25 +59378,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
-"quI" = (
-/obj/structure/machinery/door_control{
- id = "laddersouthwest";
- name = "South West Ladders Shutters";
- pixel_y = -21;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/obj/structure/sign/safety/stairs{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/west{
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"quJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -60895,33 +59416,12 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"qvd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/squads/req)
-"qvl" = (
-/obj/item/stack/folding_barricade/three,
-/obj/item/stack/folding_barricade/three,
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/shipboard/panic)
"qvC" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
},
/turf/open/floor/plating,
/area/almayer/living/port_emb)
-"qvG" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"qvI" = (
/obj/structure/sign/safety/maint{
pixel_x = -17
@@ -60943,6 +59443,13 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
+"qwf" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"qwo" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/washing_machine{
@@ -60976,9 +59483,6 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"qwE" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_a_s)
"qwJ" = (
/obj/structure/machinery/door_control{
id = "ARES Operations Left";
@@ -60992,22 +59496,12 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
-"qwT" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/lower/cryo_cells)
-"qxb" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/lightreplacer{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/toolbox/emergency,
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
+"qwY" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/upper/u_f_s)
"qxe" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1
@@ -61088,6 +59582,21 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"qxI" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
+"qxJ" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"qxK" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"qxL" = (
/obj/structure/machinery/medical_pod/autodoc,
/turf/open/floor/almayer{
@@ -61119,12 +59628,6 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"qyj" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"qyo" = (
/turf/open/floor/almayer{
dir = 1;
@@ -61137,21 +59640,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"qyu" = (
-/obj/structure/machinery/vending/coffee{
- density = 0;
- pixel_y = 18
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
-"qyw" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
"qyD" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
@@ -61159,21 +59647,13 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"qyF" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+"qyG" = (
+/obj/structure/sign/safety/hazard{
+ desc = "A sign that warns of a hazardous environment nearby";
+ name = "\improper Warning: Hazardous Environment"
},
-/area/almayer/hallways/vehiclehangar)
+/turf/closed/wall/almayer,
+/area/almayer/maint/hull/lower/l_f_p)
"qyK" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -61181,6 +59661,21 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"qyP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"qyW" = (
/obj/structure/bed/chair{
dir = 4
@@ -61189,6 +59684,13 @@
icon_state = "emeraldfull"
},
/area/almayer/squads/charlie_delta_shared)
+"qyX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"qyZ" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/view_objectives,
@@ -61212,26 +59714,12 @@
icon_state = "plating"
},
/area/almayer/shipboard/port_point_defense)
-"qzm" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/structure/machinery/computer/med_data/laptop{
- dir = 8
- },
-/obj/item/device/flashlight/lamp{
- pixel_x = -5;
- pixel_y = 16
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = 8;
- pixel_y = -32
- },
-/obj/structure/machinery/light/small{
- dir = 4
- },
+"qzA" = (
+/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/lower/p_bow)
"qAs" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -61241,6 +59729,16 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
+"qAy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"qAA" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
@@ -61261,6 +59759,29 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"qAG" = (
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"qAK" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/ashtray/plastic,
+/obj/item/trash/cigbutt{
+ pixel_x = 4
+ },
+/obj/item/trash/cigbutt{
+ pixel_x = -10;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"qAT" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
@@ -61283,6 +59804,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"qBl" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"qBq" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
@@ -61295,12 +59822,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/commandbunks)
-"qBE" = (
-/obj/structure/closet,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"qBM" = (
/obj/item/storage/fancy/crayons{
layer = 3.1;
@@ -61312,6 +59833,18 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"qBS" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/stern)
"qCc" = (
/obj/structure/sign/safety/security{
pixel_x = 15;
@@ -61339,6 +59872,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"qCH" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "Secretroom";
+ indestructible = 1;
+ unacidable = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"qCU" = (
/obj/structure/machinery/light{
dir = 4
@@ -61373,6 +59916,12 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
+"qDB" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"qDN" = (
/obj/structure/machinery/light{
dir = 8
@@ -61391,10 +59940,19 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_four)
-"qEa" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+"qDS" = (
+/obj/item/stack/tile/carpet{
+ amount = 20
+ },
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"qEc" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"qEk" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -61408,6 +59966,15 @@
icon_state = "plating"
},
/area/almayer/command/cic)
+"qEl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"qEn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -61429,6 +59996,25 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/processing)
+"qEz" = (
+/obj/structure/machinery/door_control{
+ id = "laddersouthwest";
+ name = "South West Ladders Shutters";
+ pixel_y = -21;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"qEA" = (
/obj/structure/bed,
/obj/structure/machinery/flasher{
@@ -61453,53 +60039,34 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"qEP" = (
-/obj/structure/largecrate/random/case/small,
+"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{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/stern)
-"qFb" = (
-/obj/structure/sign/safety/storage{
- pixel_y = -32
+/area/almayer/hallways/lower/port_fore_hallway)
+"qEZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
/turf/open/floor/almayer{
- icon_state = "green"
+ icon_state = "dark_sterile"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/upper/u_a_s)
"qFi" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/chief_mp_office)
-"qFm" = (
-/obj/structure/machinery/door/airlock/almayer/medical{
- dir = 1;
- name = "Medical Storage"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/medical/lower_medical_medbay)
-"qFp" = (
-/obj/structure/surface/table/almayer,
-/obj/item/attachable/lasersight,
-/obj/item/reagent_container/food/drinks/cans/souto/vanilla{
- pixel_x = 10;
- pixel_y = 11
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"qFr" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 2
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"qFu" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -61537,6 +60104,16 @@
icon_state = "bluefull"
},
/area/almayer/squads/delta)
+"qFS" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"qGc" = (
/turf/open/floor/almayer{
dir = 1;
@@ -61560,46 +60137,45 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/workshop/hangar)
+"qGC" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
"qGF" = (
/obj/structure/machinery/optable,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_two)
-"qGS" = (
+"qGP" = (
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "red"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/area/almayer/living/cryo_cells)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
"qGU" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/south2)
+"qGZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"qHg" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha_bravo_shared)
-"qHl" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = -28
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
"qHq" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
dir = 2;
@@ -61610,30 +60186,20 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
-"qHK" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
+"qHu" = (
+/obj/structure/machinery/light{
+ dir = 1
},
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -16;
- pixel_y = 13
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
+"qHG" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
-/obj/structure/sign/safety/water{
- pixel_x = -17
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/maint/hull/upper/p_stern)
"qHM" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -61644,16 +60210,23 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"qHZ" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 2;
- id = "OuterShutter";
- name = "\improper Saferoom Shutters"
+"qIa" = (
+/obj/structure/platform{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/shipboard/panic)
+/area/almayer/maint/hull/upper/u_a_s)
+"qIf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"qIx" = (
/obj/structure/machinery/door/airlock/almayer/maint{
access_modified = 1;
@@ -61665,18 +60238,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
-"qIB" = (
-/obj/structure/machinery/light,
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "sterile_green_corner"
- },
-/area/almayer/medical/medical_science)
"qIL" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/camera/autoname/almayer{
@@ -61726,18 +60287,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/perma)
-"qJr" = (
-/obj/structure/platform_decoration{
- dir = 8
- },
-/obj/item/reagent_container/glass/bucket/mopbucket{
- pixel_x = 7;
- pixel_y = -3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"qJx" = (
/obj/structure/machinery/vending/cola,
/turf/open/floor/almayer{
@@ -61758,14 +60307,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/hydroponics)
-"qJN" = (
-/obj/structure/surface/rack,
-/obj/item/device/radio,
-/obj/item/tool/weldpack,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"qJS" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
density = 0;
@@ -61809,6 +60350,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
+"qKb" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/box/lights/tubes{
+ pixel_x = -8
+ },
+/obj/item/storage/box/lights/tubes{
+ pixel_x = 5
+ },
+/obj/item/storage/box/lights/tubes{
+ pixel_y = 10
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"qKi" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -61821,6 +60375,15 @@
icon_state = "plating"
},
/area/almayer/engineering/upper_engineering)
+"qKl" = (
+/obj/structure/sign/safety/intercom{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"qKz" = (
/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
@@ -61828,29 +60391,15 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
-"qKM" = (
-/obj/structure/machinery/door_control{
- id = "laddersouthwest";
- name = "South West Ladders Shutters";
- pixel_x = 25;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
+"qKK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/almayer/hallways/port_hallway)
-"qKT" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/camera,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
+/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/lower/l_a_p)
"qKY" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -61883,23 +60432,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/containment)
-"qLj" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"qLo" = (
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"qLp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"qLs" = (
/obj/effect/landmark/start/maint,
/turf/open/floor/plating/plating_catwalk,
@@ -61933,26 +60465,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
-"qLK" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"qLO" = (
-/obj/structure/machinery/conveyor{
- id = "lower_garbage"
- },
-/obj/structure/machinery/recycler,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "plating_striped"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"qLS" = (
/obj/structure/pipes/standard/manifold/hidden/supply/no_boom,
/turf/open/floor/almayer/no_build{
@@ -61967,6 +60479,13 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
+"qLY" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"qMD" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/flashbangs,
@@ -62017,6 +60536,20 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/port)
+"qNK" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"qNR" = (
/obj/structure/disposalpipe/junction,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -62051,17 +60584,43 @@
/obj/structure/disposalpipe/junction,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/gym)
-"qPC" = (
-/obj/structure/largecrate/random/barrel/blue,
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = -32
+"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
},
-/obj/structure/sign/safety/security{
- pixel_x = 15;
- pixel_y = -32
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"qOY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"qPk" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"qPn" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
+"qPv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"qPD" = (
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/perma)
@@ -62090,6 +60649,10 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"qPU" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"qPX" = (
/obj/structure/machinery/light,
/obj/effect/decal/warning_stripes{
@@ -62123,6 +60686,13 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower)
+"qQG" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"qQS" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
@@ -62135,6 +60705,19 @@
icon_state = "tcomms"
},
/area/almayer/command/airoom)
+"qRb" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"qRd" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"qRj" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -62164,12 +60747,24 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
+"qRx" = (
+/obj/structure/sign/safety/stairs{
+ pixel_x = -15
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"qSm" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/shipboard/port_point_defense)
+"qSw" = (
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_m_p)
"qSE" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/cholula,
@@ -62177,6 +60772,14 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"qSI" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tank/oxygen/red,
+/obj/item/tool/screwdriver,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"qSK" = (
/obj/item/stack/sheet/metal{
layer = 2.9;
@@ -62198,17 +60801,14 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"qTv" = (
-/obj/structure/closet,
-/obj/item/device/flashlight/pen,
-/obj/item/attachable/reddot,
-/obj/structure/machinery/light/small{
+"qTu" = (
+/obj/structure/machinery/power/apc/almayer{
dir = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/hallways/lower/port_umbilical)
"qTQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -62221,12 +60821,6 @@
/obj/structure/machinery/gibber,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
-"qTZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_umbilical)
"qUh" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_x = -17
@@ -62285,15 +60879,11 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"qUT" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
+"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{
@@ -62316,6 +60906,12 @@
icon_state = "plate"
},
/area/almayer/living/captain_mess)
+"qVE" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"qVF" = (
/turf/open/floor/almayer{
icon_state = "cargo"
@@ -62353,12 +60949,34 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
+"qWx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "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{
+ dir = 8;
+ icon_state = "emerald"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"qWL" = (
+/obj/structure/prop/holidays/string_lights{
+ pixel_y = 27
+ },
+/obj/item/frame/rack,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"qWQ" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -62373,32 +60991,43 @@
dir = 4
},
/area/almayer/medical/containment/cell/cl)
-"qXe" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"qWS" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/pill/happy{
+ pixel_x = 6;
+ pixel_y = -4
},
-/area/almayer/maint/hull/upper/u_m_s)
-"qXg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = 9
},
-/obj/structure/bed/chair{
- dir = 1
+/obj/item/tool/surgery/bonegel/empty{
+ pixel_y = 15;
+ pixel_x = 4
+ },
+/obj/item/tool/surgery/bonegel/empty{
+ pixel_y = 13;
+ pixel_x = -8
+ },
+/obj/item/tool/surgery/bonegel/empty{
+ pixel_y = 19;
+ pixel_x = -5;
+ layer = 3.01
+ },
+/obj/item/storage/box/gloves{
+ layer = 3.2;
+ pixel_x = -5;
+ pixel_y = 2
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"qXk" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "sterile_green_corner"
},
-/area/almayer/engineering/lower/workshop)
-"qXm" = (
-/obj/structure/largecrate/random/barrel/green,
+/area/almayer/medical/lower_medical_medbay)
+"qXk" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/area/almayer/engineering/lower/workshop)
"qXo" = (
/obj/structure/machinery/seed_extractor,
/obj/structure/machinery/light{
@@ -62494,15 +61123,6 @@
allow_construction = 0
},
/area/almayer/stair_clone/upper)
-"qYt" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"qYu" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
@@ -62521,6 +61141,17 @@
icon_state = "mono"
},
/area/almayer/command/lifeboat)
+"qYN" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/toy/deck,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/living/offices/flight)
"qYQ" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -62544,9 +61175,20 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"qZx" = (
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_s)
+"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{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"qZA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -62584,6 +61226,21 @@
icon_state = "greenfull"
},
/area/almayer/living/offices)
+"qZK" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"qZT" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"qZX" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -62598,6 +61255,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower/engine_core)
+"raE" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"raK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62610,14 +61273,24 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"raT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"raO" = (
+/obj/structure/bed/sofa/south/grey/right,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/u_f_p)
+"rbd" = (
+/obj/structure/barricade/handrail{
+ dir = 8
+ },
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"rbi" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/ids{
@@ -62634,6 +61307,13 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"rbp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"rby" = (
/obj/structure/machinery/door_control{
id = "ARES Mainframe Left";
@@ -62651,18 +61331,6 @@
icon_state = "silvercorner"
},
/area/almayer/command/computerlab)
-"rbE" = (
-/obj/structure/platform{
- dir = 4
- },
-/obj/item/reagent_container/glass/rag,
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"rbF" = (
/obj/effect/landmark/late_join,
/obj/effect/landmark/ert_spawns/distress_cryo,
@@ -62696,16 +61364,6 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/execution)
-"rbX" = (
-/obj/structure/sign/safety/manualopenclose{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"rbY" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -62717,14 +61375,6 @@
},
/turf/open/floor/plating,
/area/almayer/squads/req)
-"rcw" = (
-/obj/structure/platform_decoration{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"rcx" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -62738,6 +61388,13 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
+"rcG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"rcS" = (
/obj/structure/machinery/computer/cryopod/eng{
dir = 8
@@ -62758,6 +61415,18 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
+"rdo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"rdt" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -62797,6 +61466,12 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/general_equipment)
+"rdN" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"rdS" = (
/obj/structure/machinery/light{
dir = 8
@@ -62811,15 +61486,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"rdY" = (
-/obj/structure/machinery/light{
- dir = 8
- },
+"rdT" = (
+/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
+ icon_state = "plate"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/port_fore_hallway)
"rec" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 1
@@ -62840,17 +61512,21 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"reF" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/firstaid/adv{
- pixel_x = 6;
- pixel_y = 6
+"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)
+"reH" = (
+/obj/structure/noticeboard{
+ pixel_x = -10;
+ pixel_y = 31
},
-/obj/item/storage/firstaid/regular,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/squads/req)
"reL" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/snacks/sliceable/bread{
@@ -62864,6 +61540,24 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
+"reM" = (
+/obj/structure/machinery/power/smes/buildable,
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
+"reN" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/cryo_cells)
"rfa" = (
/obj/effect/landmark/start/marine/medic/alpha,
/obj/effect/landmark/late_join/alpha,
@@ -62877,6 +61571,11 @@
icon_state = "containment_window_h"
},
/area/almayer/medical/containment/cell/cl)
+"rfB" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"rfI" = (
/obj/structure/sign/safety/airlock{
pixel_y = -32
@@ -62889,6 +61588,10 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
+"rfQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"rfT" = (
/obj/item/frame/camera{
desc = "The Staff Officer insisted he needed to monitor everyone at all times.";
@@ -62919,18 +61622,23 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cryo)
+"rgk" = (
+/obj/structure/platform_decoration{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"rgt" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/lower/port_umbilical)
"rgy" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"rgC" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"rgK" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
@@ -62951,22 +61659,13 @@
},
/area/almayer/living/auxiliary_officer_office)
"rgL" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/upper/u_f_p)
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_p)
"rgW" = (
/turf/open/floor/almayer{
icon_state = "emeraldcorner"
},
/area/almayer/living/briefing)
-"rhf" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"rhl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62978,6 +61677,18 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/main_office)
+"rhm" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
+"rht" = (
+/obj/structure/machinery/vending/cola,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
"rhy" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp{
@@ -62992,6 +61703,12 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"rhD" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"rhO" = (
/obj/structure/machinery/vending/cola/research{
pixel_x = 4
@@ -63006,16 +61723,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
-"rhW" = (
+"rhX" = (
/obj/structure/sign/safety/maint{
+ pixel_x = 8;
pixel_y = 32
},
-/obj/structure/sign/safety/storage{
- pixel_x = 15;
- pixel_y = 32
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"rib" = (
/obj/structure/sink{
dir = 8;
@@ -63026,26 +61743,41 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/perma)
-"riv" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
+"rir" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced,
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_f_p)
-"riw" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+/area/almayer/maint/hull/upper/s_bow)
+"riB" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
+"riC" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/shipboard/panic)
"riE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -63058,20 +61790,18 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"riI" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_22";
- pixel_y = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"riJ" = (
/turf/open/floor/almayer{
dir = 5;
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"riK" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"riP" = (
/obj/structure/machinery/light,
/obj/structure/sign/safety/rewire{
@@ -63090,12 +61820,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/stern_point_defense)
-"rji" = (
-/obj/structure/platform_decoration{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
"rjn" = (
/obj/structure/machinery/light,
/obj/structure/reagent_dispensers/water_cooler/stacks,
@@ -63103,6 +61827,17 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"rjF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"rjG" = (
/obj/structure/pipes/standard/tank/oxygen,
/turf/open/floor/almayer{
@@ -63173,26 +61908,6 @@
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer,
/area/almayer/living/gym)
-"rkF" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/flashlight/lamp{
- layer = 3.1;
- pixel_x = 7;
- pixel_y = 10
- },
-/obj/item/paper_bin/uscm,
-/obj/item/tool/pen,
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
-"rkS" = (
-/obj/structure/sign/safety/storage{
- pixel_x = -17
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
"rlc" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -63229,24 +61944,21 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
-"rlO" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
+"rlD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 4;
+ icon_state = "silver"
},
-/area/almayer/maint/hull/upper/s_stern)
+/area/almayer/hallways/lower/repair_bay)
"rlQ" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"rlY" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
"rlZ" = (
/turf/open/floor/almayer{
icon_state = "dark_sterile"
@@ -63292,38 +62004,18 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/general_equipment)
-"rmB" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/pill/happy{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/prop/helmetgarb/prescription_bottle{
- pixel_x = 9
- },
-/obj/item/tool/surgery/bonegel/empty{
- pixel_y = 15;
- pixel_x = 4
- },
-/obj/item/tool/surgery/bonegel/empty{
- pixel_y = 13;
- pixel_x = -8
- },
-/obj/item/tool/surgery/bonegel/empty{
- pixel_y = 19;
- pixel_x = -5;
- layer = 3.01
- },
-/obj/item/storage/box/gloves{
- layer = 3.2;
- pixel_x = -5;
- pixel_y = 2
+"rmz" = (
+/obj/structure/sign/safety/conference_room{
+ pixel_x = 14;
+ pixel_y = 32
},
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"rmB" = (
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_corner"
+ icon_state = "blue"
},
-/area/almayer/medical/lower_medical_medbay)
+/area/almayer/hallways/upper/aft_hallway)
"rmD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -63344,9 +62036,18 @@
"rna" = (
/turf/closed/wall/almayer/white,
/area/almayer/command/airoom)
-"rng" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_m_p)
+"rnd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"rnF" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -63383,10 +62084,25 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
+"rnO" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"rob" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/starboard)
+"roj" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"rou" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -63398,10 +62114,6 @@
icon_state = "cargo"
},
/area/almayer/squads/bravo)
-"row" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/cryo_cells)
"roG" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -63431,23 +62143,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
-"rpd" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
-"rph" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+"roY" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
},
/turf/open/floor/almayer{
- icon_state = "redfull"
+ dir = 9;
+ icon_state = "red"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"rpp" = (
/obj/effect/landmark/start/executive,
/turf/open/floor/plating/plating_catwalk,
@@ -63461,6 +62165,14 @@
icon_state = "sterile_green_side"
},
/area/almayer/shipboard/brig/surgery)
+"rpG" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"rpK" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -63486,15 +62198,38 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"rqw" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
+"rqv" = (
+/obj/structure/sign/poster/safety,
+/turf/closed/wall/almayer,
+/area/almayer/maint/lower/s_bow)
+"rqz" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_y = 32
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+/obj/structure/sign/safety/water{
+ pixel_x = 15;
+ pixel_y = 32
},
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
+"rqD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/mess)
"rqE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -63506,6 +62241,13 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
+"rqQ" = (
+/obj/structure/machinery/door/poddoor/railing{
+ id = "vehicle_elevator_railing_aux"
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"rqS" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/red{
@@ -63521,12 +62263,15 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/evidence_storage)
-"rrp" = (
-/obj/structure/largecrate/supply/supplies/mre,
+"rrh" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "Under Construction Shutters";
+ name = "\improper Construction Site"
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/lower/constr)
"rrq" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -63557,6 +62302,13 @@
icon_state = "test_floor4"
},
/area/almayer/living/bridgebunks)
+"rrG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"rrK" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -63582,30 +62334,25 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/offices)
-"rrV" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
-"rsr" = (
-/obj/structure/surface/rack,
-/obj/item/tool/wirecutters,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"rrU" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
},
-/area/almayer/maint/hull/upper/u_a_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"rsK" = (
/obj/structure/sign/safety/hvac_old,
/turf/closed/wall/almayer,
/area/almayer/squads/req)
+"rsL" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"rsM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -63619,6 +62366,31 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
+"rsP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
+"rsS" = (
+/obj/structure/machinery/door_control{
+ id = "panicroomback";
+ name = "\improper Safe Room";
+ pixel_x = -25;
+ req_one_access_txt = "3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"rsV" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"rtd" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -63628,6 +62400,12 @@
"rth" = (
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
+"rtj" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
"rtA" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/flashlight/pen{
@@ -63715,37 +62493,57 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
-"ruD" = (
-/obj/structure/machinery/vending/coffee,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
"ruL" = (
/obj/structure/window/framed/almayer/hull/hijack_bustable,
/turf/open/floor/plating,
/area/almayer/engineering/lower/workshop/hangar)
-"ruS" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_stern)
"rvA" = (
/turf/open/floor/almayer,
/area/almayer/living/numbertwobunks)
+"rvI" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"rvT" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"rwh" = (
-/obj/structure/largecrate/random/barrel/white,
+"rwe" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = -16
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
+"rwf" = (
+/obj/structure/sign/safety/analysis_lab{
+ pixel_y = 26
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 15;
+ pixel_y = 26
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "silver"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/hallways/upper/aft_hallway)
+"rwj" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"rwq" = (
/obj/structure/sign/safety/cryo{
pixel_x = 7;
@@ -63781,24 +62579,26 @@
},
/turf/open/floor/plating,
/area/almayer/living/pilotbunks)
-"rxm" = (
-/obj/structure/largecrate/random/case/double,
-/obj/structure/machinery/light{
- dir = 4
- },
+"rwZ" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_f_p)
+"rxe" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_p)
-"rxG" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = -32
+/area/almayer/maint/hull/lower/l_m_p)
+"rxq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/open/floor/almayer{
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/maint/hull/lower/l_m_p)
"rxK" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
@@ -63814,17 +62614,6 @@
/obj/structure/largecrate/supply/generator,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/port)
-"rye" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
-"ryg" = (
-/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
"ryt" = (
/obj/structure/pipes/standard/manifold/visible,
/turf/open/floor/almayer{
@@ -63851,13 +62640,20 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/port)
-"rzK" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+"rzk" = (
+/obj/item/tool/screwdriver,
+/obj/structure/platform_decoration{
+ dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/turf/open/floor/almayer{
+ icon_state = "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)
"rzN" = (
/turf/open/floor/almayer{
icon_state = "dark_sterile"
@@ -63877,9 +62673,28 @@
icon_state = "bluecorner"
},
/area/almayer/living/briefing)
-"rAk" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/hull/lower/p_bow)
+"rAo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"rAw" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 8
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 32;
+ pixel_y = -7
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/lower/l_f_s)
"rAx" = (
/obj/structure/disposalpipe/junction{
dir = 4
@@ -63959,16 +62774,6 @@
/obj/structure/machinery/processor,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
-"rBk" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/vents/pump{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_umbilical)
"rBv" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/almayer{
@@ -63986,6 +62791,12 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
+"rBD" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_m_p)
"rBH" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_2"
@@ -64001,6 +62812,15 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"rCh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"rCi" = (
/obj/structure/machinery/camera/autoname/almayer/containment/ares{
dir = 8
@@ -64105,20 +62925,15 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"rDk" = (
+"rDf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
-"rDp" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_21";
- pixel_y = 11
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/lower/starboard_umbilical)
+"rDm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"rDr" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
@@ -64155,15 +62970,34 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"rDC" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+"rDH" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"rDO" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
"rDQ" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/shipboard/brig/cryo)
+"rDR" = (
+/obj/structure/machinery/vending/coffee,
+/obj/item/toy/bikehorn/rubberducky{
+ desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!";
+ name = "Quackers";
+ pixel_x = 5;
+ pixel_y = 17
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"rDV" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -64185,15 +63019,17 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/chief_mp_office)
"rEd" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -12;
- pixel_y = 13
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddersouthwest";
+ name = "\improper South West Ladders Shutters"
},
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/hallways/lower/port_fore_hallway)
"rEf" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -64219,19 +63055,16 @@
},
/area/space)
"rEs" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "orange"
},
/area/almayer/maint/hull/upper/u_a_s)
-"rEu" = (
-/obj/structure/largecrate/random/case/double,
+"rEt" = (
+/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/hallways/vehiclehangar)
+/area/almayer/maint/hull/lower/l_f_s)
"rEv" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -64245,13 +63078,19 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
-"rEF" = (
+"rEK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = 12;
pixel_y = 12
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/lower/l_f_p)
"rEL" = (
/obj/structure/machinery/cm_vending/gear/intelligence_officer,
/turf/open/floor/almayer{
@@ -64310,15 +63149,6 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/upper_engineering/starboard)
-"rFB" = (
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_umbilical)
"rFH" = (
/obj/structure/machinery/body_scanconsole,
/obj/structure/disposalpipe/segment{
@@ -64332,32 +63162,32 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"rFS" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"rFY" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "orange"
- },
-/area/almayer/hallways/stern_hallway)
-"rGg" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+"rGc" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
},
/turf/open/floor/almayer{
- dir = 9;
- icon_state = "green"
+ dir = 10;
+ icon_state = "red"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"rGj" = (
/turf/open/floor/almayer{
icon_state = "red"
},
/area/almayer/squads/alpha)
+"rGr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
+"rGz" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"rGE" = (
/obj/structure/machinery/door/airlock/almayer/command{
name = "\improper Conference Room"
@@ -64382,6 +63212,15 @@
icon_state = "test_floor4"
},
/area/almayer/command/cichallway)
+"rGL" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
"rGU" = (
/obj/structure/machinery/computer/skills{
req_one_access_txt = "200"
@@ -64389,13 +63228,6 @@
/obj/structure/surface/table/woodentable/fancy,
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
-"rGZ" = (
-/obj/structure/machinery/computer/arcade,
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "green"
- },
-/area/almayer/squads/req)
"rHc" = (
/turf/open/floor/carpet,
/area/almayer/command/cichallway)
@@ -64406,6 +63238,13 @@
icon_state = "plate"
},
/area/almayer/squads/alpha_bravo_shared)
+"rHn" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"rHo" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
layer = 1.9
@@ -64425,6 +63264,19 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
+"rHq" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"rHr" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"rHw" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -64436,17 +63288,17 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"rHA" = (
-/obj/item/storage/backpack/marine/satchel{
- desc = "It's the heavy-duty black polymer kind. Time to take out the trash!";
- icon = 'icons/obj/janitor.dmi';
- icon_state = "trashbag3";
- name = "trash bag";
- pixel_x = -4;
- pixel_y = 6
+"rHB" = (
+/obj/item/ammo_box/magazine/misc/mre/empty{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/reagent_container/food/drinks/cans/aspen{
+ pixel_x = 11;
+ pixel_y = -3
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/maint/hull/upper/p_stern)
"rHN" = (
/obj/structure/pipes/vents/pump/on,
/turf/open/floor/plating/plating_catwalk,
@@ -64479,26 +63331,27 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_lobby)
+"rIw" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/s_bow)
"rID" = (
/turf/open/floor/almayer{
dir = 6;
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"rIG" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
+"rIE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/l42a,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
},
-/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/upper/u_m_s)
"rIH" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -64516,6 +63369,27 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"rIP" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"rIV" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"rIW" = (
/obj/structure/machinery/cm_vending/gear/synth,
/obj/effect/decal/cleanable/cobweb2,
@@ -64524,11 +63398,11 @@
},
/area/almayer/living/synthcloset)
"rJf" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+/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!";
@@ -64583,12 +63457,6 @@
/obj/structure/machinery/cm_vending/own_points/experimental_tools,
/turf/open/floor/almayer,
/area/almayer/living/synthcloset)
-"rJF" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"rJK" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
@@ -64626,6 +63494,14 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"rJY" = (
+/obj/item/book/manual/medical_diagnostics_manual,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"rKd" = (
/turf/open/floor/almayer/uscm/directional{
dir = 5
@@ -64644,13 +63520,6 @@
icon_state = "rasputin15"
},
/area/almayer/powered/agent)
-"rKy" = (
-/obj/structure/machinery/firealarm{
- dir = 1;
- pixel_y = -28
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"rKA" = (
/obj/structure/bed{
can_buckle = 0
@@ -64677,25 +63546,11 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"rLi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"rLk" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
-"rLl" = (
-/obj/structure/closet/fireaxecabinet{
- pixel_y = -32
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"rLp" = (
/obj/structure/machinery/chem_dispenser/soda{
pixel_y = 20
@@ -64708,6 +63563,30 @@
icon_state = "containment_window_h"
},
/area/almayer/medical/containment/cell/cl)
+"rLH" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/binoculars{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/device/binoculars,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 4;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
+"rLK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/cryo_cells)
"rLP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -64720,35 +63599,25 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"rLQ" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"rLU" = (
/turf/open/floor/almayer/research/containment/floor2{
dir = 8
},
/area/almayer/medical/containment/cell/cl)
-"rMk" = (
-/obj/structure/sign/poster/ad{
- pixel_x = 30
- },
-/obj/structure/closet,
-/obj/item/clothing/mask/cigarette/weed,
+"rMj" = (
+/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
-"rMG" = (
-/obj/structure/largecrate/random/secure,
+/area/almayer/hallways/lower/vehiclehangar)
+"rMO" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/lower/s_bow)
"rMT" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -64828,15 +63697,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"rOj" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/port_hallway)
"rOs" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/clipboard,
@@ -64846,6 +63706,14 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
+"rOv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"rOC" = (
/obj/structure/machinery/light{
dir = 1
@@ -64854,15 +63722,6 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"rOD" = (
-/obj/structure/surface/rack,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"rOI" = (
/obj/structure/pipes/vents/pump{
dir = 8;
@@ -64877,9 +63736,14 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"rOR" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/u_m_s)
+"rPq" = (
+/obj/structure/machinery/constructable_frame{
+ icon_state = "box_2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"rPt" = (
/turf/open/floor/wood/ship,
/area/almayer/engineering/ce_room)
@@ -64919,6 +63783,14 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
+"rQs" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"rQt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -64926,6 +63798,20 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
+"rQw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/panic)
"rQy" = (
/turf/closed/wall/almayer/white/reinforced,
/area/almayer/medical/hydroponics)
@@ -64960,18 +63846,21 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"rRg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
+"rRb" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Starboard Railguns and Viewing Room"
+/area/almayer/maint/hull/upper/u_m_s)
+"rRf" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 4;
+ icon_state = "red"
},
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/upper/aft_hallway)
"rRq" = (
/turf/closed/wall/almayer,
/area/almayer/lifeboat_pumps/south2)
@@ -64996,25 +63885,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"rRP" = (
-/obj/structure/surface/table/almayer,
-/obj/item/clothing/head/hardhat/orange{
- pixel_x = -9;
- pixel_y = 16
- },
-/obj/item/clothing/suit/storage/hazardvest/blue{
- pixel_x = -7;
- pixel_y = -4
- },
-/obj/item/clothing/head/hardhat{
- pixel_x = 10;
- pixel_y = 1
- },
-/obj/item/clothing/suit/storage/hazardvest{
- pixel_x = 1
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"rRU" = (
/obj/structure/machinery/light{
dir = 8
@@ -65053,6 +63923,30 @@
icon_state = "orangefull"
},
/area/almayer/squads/alpha_bravo_shared)
+"rSx" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/rods/plasteel{
+ amount = 36
+ },
+/obj/item/stack/catwalk{
+ amount = 60;
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/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{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"rSG" = (
/obj/structure/toilet{
pixel_y = 16
@@ -65067,18 +63961,37 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
-"rTj" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+"rSR" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/sign/safety/cryo{
+ pixel_x = 36
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/cryo_cells)
+"rTe" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"rTk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
+"rTA" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"rTJ" = (
/obj/effect/decal/cleanable/blood/oil/streak,
/turf/open/floor/almayer{
@@ -65100,12 +64013,25 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
+"rUi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/s_bow)
"rUk" = (
/obj/structure/bed/chair/wood/normal{
dir = 1
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
+"rUq" = (
+/obj/effect/landmark/start/nurse,
+/obj/effect/landmark/late_join/nurse,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
"rUy" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -65114,6 +64040,20 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
+"rUN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
+"rVc" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"rVm" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -65124,12 +64064,38 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/main_office)
+"rVt" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/structure/machinery/part_fabricator/dropship,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"rVC" = (
+/obj/structure/pipes/vents/pump/on,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"rVN" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "red"
},
/area/almayer/shipboard/port_missiles)
+"rWb" = (
+/obj/item/tool/minihoe{
+ pixel_x = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"rWn" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -65149,6 +64115,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
+"rWv" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"rWz" = (
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_s)
"rWF" = (
/obj/structure/machinery/firealarm{
dir = 4;
@@ -65165,6 +64140,12 @@
icon_state = "cargo"
},
/area/almayer/living/cryo_cells)
+"rWP" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"rWT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -65178,15 +64159,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/general_equipment)
-"rXg" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/sign/safety/hvac_old{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/cryo_cells)
"rXj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -65204,21 +64176,6 @@
icon_state = "cargo"
},
/area/almayer/living/cryo_cells)
-"rXs" = (
-/obj/structure/surface/rack,
-/obj/item/roller,
-/obj/item/roller,
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/item/clothing/glasses/disco_fever{
- pixel_x = 5;
- pixel_y = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
"rXv" = (
/obj/structure/machinery/door/airlock/almayer/maint,
/obj/structure/disposalpipe/segment{
@@ -65228,18 +64185,28 @@
icon_state = "test_floor4"
},
/area/almayer/living/gym)
-"rXM" = (
-/obj/structure/surface/rack,
-/obj/item/paper{
- pixel_x = 3;
- pixel_y = 3
+"rXF" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
},
-/obj/item/folder/yellow,
-/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
+"rXH" = (
+/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/lower/stern)
+"rXQ" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"rXS" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/disposalpipe/segment{
@@ -65252,6 +64219,23 @@
icon_state = "test_floor4"
},
/area/almayer/squads/delta)
+"rXU" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"rXV" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"rYh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -65267,13 +64251,6 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"rYj" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"rYp" = (
/obj/effect/landmark/start/marine/medic/delta,
/obj/effect/landmark/late_join/delta,
@@ -65293,46 +64270,52 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
-"rYJ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/taperecorder,
+"rYG" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "green"
},
-/area/almayer/living/offices/flight)
-"rYK" = (
-/obj/structure/machinery/light/small{
- dir = 8
+/area/almayer/hallways/upper/aft_hallway)
+"rYI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_f_p)
-"rYM" = (
-/obj/item/storage/box/donkpockets,
-/obj/structure/surface/rack,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"rYJ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/taperecorder,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"rYT" = (
-/obj/structure/largecrate/supply/supplies/flares,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
+/area/almayer/living/offices/flight)
+"rZt" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"rZz" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+/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/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = -30
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
/turf/open/floor/almayer{
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/lower/port_fore_hallway)
"rZB" = (
/obj/structure/pipes/standard/simple/visible{
dir = 9
@@ -65341,6 +64324,15 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
+"rZC" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"rZP" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/weldpack,
@@ -65349,12 +64341,18 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
-"saa" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"sab" = (
+/obj/effect/landmark/start/doctor,
+/obj/effect/landmark/late_join/doctor,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
+"sai" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/hallways/lower/port_fore_hallway)
"saL" = (
/obj/structure/machinery/door/airlock/almayer/generic/corporate{
name = "Corporate Liaison's Closet"
@@ -65363,15 +64361,13 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
-"sbb" = (
-/obj/structure/machinery/door/airlock/almayer/security{
- dir = 2;
- name = "\improper Security Checkpoint"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"saT" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
},
-/area/almayer/shipboard/panic)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"sbq" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
icon_state = "almayer_pdoor";
@@ -65381,33 +64377,30 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/notunnel)
-"sbA" = (
-/obj/structure/janitorialcart,
-/obj/item/tool/mop,
+"sbt" = (
+/obj/structure/machinery/door/airlock/almayer/security{
+ dir = 2;
+ name = "\improper Security Checkpoint"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "safe_armory";
+ name = "\improper Hangar Armory Shutters"
+ },
/turf/open/floor/almayer{
- icon_state = "orange"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/shipboard/panic)
+"sbE" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"sbJ" = (
/turf/closed/wall/almayer/white/hull,
/area/almayer/powered/agent)
-"sbM" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 4
- },
-/obj/structure/sign/safety/storage{
- pixel_y = 7;
- pixel_x = -17
- },
-/obj/structure/sign/safety/commline_connection{
- pixel_x = -17;
- pixel_y = -7
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/squads/req)
"sbP" = (
/obj/effect/landmark/start/police,
/obj/effect/decal/warning_stripes{
@@ -65416,30 +64409,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cryo)
-"sbU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
- },
-/obj/structure/bed/sofa/south/white/left{
- pixel_y = 16
- },
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "silver"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"sce" = (
-/obj/structure/surface/rack,
-/obj/item/tool/shovel/etool{
- pixel_x = 6
- },
-/obj/item/tool/shovel/etool,
-/obj/item/tool/wirecutters,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"sco" = (
/obj/structure/sign/prop1{
layer = 3.1
@@ -65450,6 +64419,19 @@
/obj/structure/surface/table/reinforced/black,
/turf/open/floor/carpet,
/area/almayer/command/cichallway)
+"sct" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/lower/engine_core)
"scu" = (
/obj/structure/stairs/perspective{
dir = 1;
@@ -65519,6 +64501,15 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"scX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/tray,
+/obj/item/reagent_container/food/drinks/bottle/whiskey,
+/obj/item/toy/deck{
+ pixel_x = -9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"sdf" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -65585,24 +64576,13 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"sdP" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"seL" = (
+/obj/structure/pipes/vents/pump{
+ dir = 8;
+ id_tag = "mining_outpost_pump"
},
-/area/almayer/maint/hull/upper/p_bow)
-"sen" = (
-/obj/structure/largecrate/random/case/small,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
-"sep" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/hallways/lower/port_fore_hallway)
"sfT" = (
/turf/open/floor/almayer,
/area/almayer/hallways/upper/port)
@@ -65690,19 +64670,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/stern_point_defense)
-"sgw" = (
-/obj/structure/surface/table/almayer,
-/obj/item/prop/almayer/flight_recorder{
- pixel_x = 9
- },
-/obj/item/tool/weldingtool{
- pixel_x = -7;
- pixel_y = 3
- },
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"sgD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -65722,6 +64689,16 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
+"sgL" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "southcheckpoint";
+ name = "\improper Checkpoint Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"sgR" = (
/obj/structure/surface/table/almayer,
/obj/item/toy/deck{
@@ -65738,6 +64715,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south1)
+"she" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"shh" = (
/obj/structure/machinery/autolathe,
/turf/open/floor/almayer,
@@ -65777,14 +64760,6 @@
"sht" = (
/turf/open/floor/almayer,
/area/almayer/living/pilotbunks)
-"shJ" = (
-/obj/structure/platform_decoration{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"shL" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/electrical,
@@ -65796,12 +64771,36 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/engine_core)
-"sic" = (
-/obj/structure/sign/safety/nonpress_ag{
- pixel_x = 32
+"sir" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "panicroomback";
+ name = "\improper Safe Room Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"sit" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
+/area/almayer/maint/hull/upper/u_f_s)
+"siy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"siz" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/hangar{
@@ -65818,6 +64817,12 @@
icon_state = "redfull"
},
/area/almayer/living/offices/flight)
+"siC" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"siN" = (
/obj/structure/machinery/light{
dir = 1
@@ -65833,21 +64838,23 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"siP" = (
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = -8;
- pixel_y = 18
+"siS" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
},
-/obj/structure/filingcabinet{
- density = 0;
- pixel_x = 8;
- pixel_y = 18
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"siT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/maint/hull/lower/l_f_p)
"siW" = (
/obj/structure/machinery/body_scanconsole,
/obj/structure/disposalpipe/segment{
@@ -65864,6 +64871,9 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/main_office)
+"sje" = (
+/turf/open/floor/almayer/empty,
+/area/almayer/hallways/lower/vehiclehangar)
"sjj" = (
/obj/structure/machinery/keycard_auth{
pixel_x = -7;
@@ -65893,6 +64903,16 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
+"sjw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"sjz" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -65902,19 +64922,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"sjC" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
-"sjZ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
"skj" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -65962,13 +64969,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower/workshop)
-"skO" = (
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"skR" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
@@ -66006,48 +65006,91 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
-"slu" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+"slo" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"slx" = (
-/obj/structure/sign/safety/hvac_old{
+/obj/structure/sign/safety/maint{
pixel_x = 8;
- pixel_y = 32
+ pixel_y = -32
},
-/obj/structure/largecrate/supply/supplies/flares,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"slv" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/engineering/lower/engine_core)
"slF" = (
/turf/open/floor/almayer{
dir = 9;
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"slG" = (
+"smi" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/living/grunt_rnr)
+"smw" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/obj/item/device/flashlight/lamp{
+ pixel_x = -5;
+ pixel_y = 16
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = -32
+ },
/obj/structure/machinery/light/small{
- dir = 1
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_s)
-"smi" = (
+/area/almayer/maint/hull/upper/u_a_s)
+"smA" = (
+/obj/item/trash/cigbutt{
+ pixel_x = -10;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice10";
+ pixel_x = -16;
+ pixel_y = 16
+ },
/turf/open/floor/almayer{
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
-"smn" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = -32
+/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,
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
+"smU" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/shipboard/panic)
"smW" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -66087,18 +65130,6 @@
icon_state = "orange"
},
/area/almayer/command/cic)
-"snm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"snt" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
/turf/open/floor/almayer{
@@ -66117,6 +65148,10 @@
icon_state = "plate"
},
/area/almayer/squads/req)
+"snx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"snE" = (
/obj/structure/machinery/cryopod/right,
/obj/effect/decal/warning_stripes{
@@ -66152,6 +65187,25 @@
icon_state = "plate"
},
/area/almayer/command/cic)
+"snM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
+"snN" = (
+/obj/structure/curtain/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"snR" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
@@ -66177,27 +65231,6 @@
icon_state = "cargo"
},
/area/almayer/living/synthcloset)
-"sos" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
- },
-/obj/structure/blocker/forcefield/multitile_vehicles,
-/obj/structure/sign/safety/stairs{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
-"sou" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"sov" = (
/turf/open/floor/almayer{
dir = 1;
@@ -66210,9 +65243,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/gym)
-"soC" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/s_bow)
"soK" = (
/obj/item/storage/firstaid/fire/empty,
/obj/item/storage/firstaid/o2/empty,
@@ -66228,16 +65258,34 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/port)
+"soT" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/lattice_prop{
+ icon_state = "lattice1";
+ pixel_x = 16;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"soX" = (
/obj/structure/window/reinforced/toughened,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/command/cic)
-"spn" = (
-/obj/structure/largecrate/random/case,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+"spd" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"spF" = (
/obj/structure/surface/table/almayer,
/obj/structure/flora/pottedplant{
@@ -66272,6 +65320,39 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
+"spT" = (
+/obj/structure/closet/crate{
+ desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service.";
+ name = "special operations crate"
+ },
+/obj/item/clothing/mask/gas/swat,
+/obj/item/clothing/mask/gas/swat,
+/obj/item/clothing/mask/gas/swat,
+/obj/item/clothing/mask/gas/swat,
+/obj/item/attachable/suppressor,
+/obj/item/attachable/suppressor,
+/obj/item/attachable/suppressor,
+/obj/item/attachable/suppressor,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/obj/item/explosive/grenade/smokebomb,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"spW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"sqa" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -66307,6 +65388,16 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
+"sqP" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"sqW" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/seeds/tomatoseed,
@@ -66315,12 +65406,39 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"sro" = (
-/obj/structure/machinery/light/small,
+"srh" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_umbilical)
+"srl" = (
+/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/lower/l_a_p)
+"srO" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/mess)
+"srR" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"srT" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 8
@@ -66332,28 +65450,28 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/evidence_storage)
-"ssa" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "DeployWorkR";
- name = "\improper Workshop Shutters"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"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
},
-/area/almayer/hallways/repair_bay)
-"ssx" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/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{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/maint/hull/lower/l_m_p)
"ssD" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -66363,38 +65481,20 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"ssE" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/machinery/door_control{
- id = "laddersouthwest";
- name = "South West Ladders Shutters";
- pixel_x = 25;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/turf/open/floor/almayer{
- icon_state = "greencorner"
- },
-/area/almayer/hallways/port_hallway)
"ssF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/l42a,
-/obj/item/weapon/gun/rifle/l42a{
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32;
pixel_y = 6
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"ssH" = (
-/obj/structure/machinery/light/small{
- dir = 4
+/obj/structure/sign/safety/reduction{
+ pixel_x = 32;
+ pixel_y = -8
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "red"
},
-/area/almayer/maint/hull/lower/stern)
+/area/almayer/hallways/upper/aft_hallway)
"ssU" = (
/obj/structure/machinery/constructable_frame,
/turf/open/floor/almayer{
@@ -66426,6 +65526,15 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/shipboard/navigation)
+"stk" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"str" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down3";
@@ -66445,6 +65554,12 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
+"stA" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"stO" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine/uscm/brig,
@@ -66456,27 +65571,25 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/perma)
-"stY" = (
-/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"
- },
+"stP" = (
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/lower/l_f_s)
+"stR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"sub" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/hallways/lower/vehiclehangar)
"suc" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/disposalpipe/segment{
@@ -66502,6 +65615,18 @@
},
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
+"suH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"suJ" = (
/obj/structure/machinery/door/airlock/almayer/maint{
name = "\improper Core Hatch"
@@ -66514,10 +65639,18 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower/engine_core)
-"suV" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
+"suU" = (
+/obj/structure/stairs,
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"suY" = (
/obj/structure/platform_decoration,
/turf/open/floor/almayer{
@@ -66539,6 +65672,43 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"svt" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"svw" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"svF" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/effect/landmark/yautja_teleport,
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"svV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/l42a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"swn" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -66561,6 +65731,12 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"swG" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"swH" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/radio/intercom{
@@ -66596,21 +65772,15 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering)
-"sxu" = (
-/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
+"sxD" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ dir = 2;
+ name = "\improper Officer's Bunk"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/living/bridgebunks)
"sxE" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -66624,6 +65794,10 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"sxS" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"sxW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -66635,6 +65809,12 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"syj" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"syH" = (
/obj/structure/machinery/firealarm{
pixel_y = -28
@@ -66644,13 +65824,13 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/delta)
-"syP" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+"szb" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"szf" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -66665,12 +65845,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"szs" = (
-/obj/structure/bed/sofa/south/grey/left{
- pixel_y = 12
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"szE" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -66708,14 +65882,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/main_office)
-"szS" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass{
- name = "Brig"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/p_bow)
"szU" = (
/obj/structure/toilet{
dir = 8
@@ -66745,18 +65911,32 @@
icon_state = "orange"
},
/area/almayer/engineering/ce_room)
+"sAD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
+"sAS" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"sBg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/general_equipment)
-"sBD" = (
-/obj/structure/largecrate/random/barrel/white,
+"sBK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "redfull"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/hallways/upper/stern_hallway)
"sBL" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/machinery/light,
@@ -66764,30 +65944,20 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"sBP" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/surface/table/almayer,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"sCi" = (
-/obj/structure/machinery/pipedispenser/orderable,
+"sBY" = (
+/obj/item/tool/wet_sign,
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"sCs" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_21";
- pixel_y = 11
- },
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
+/area/almayer/maint/hull/lower/l_m_s)
+"sCg" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"sCA" = (
/obj/structure/bed/chair/comfy/delta{
dir = 4
@@ -66825,6 +65995,12 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"sCT" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"sCV" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -66838,12 +66014,47 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"sCW" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/surface/table/almayer,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"sDe" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ layer = 3.33;
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ layer = 3.33;
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"sDu" = (
/obj/item/clothing/under/marine/dress,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
+"sDx" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"sDA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/bed/chair/comfy/charlie{
@@ -66853,19 +66064,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"sDC" = (
-/obj/structure/sign/safety/analysis_lab{
- pixel_y = 26
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = 15;
- pixel_y = 26
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"sDD" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
@@ -66899,6 +66097,15 @@
icon_state = "cargo"
},
/area/almayer/squads/bravo)
+"sEg" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"sEi" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -66952,19 +66159,13 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
-"sEC" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"sEu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"sEE" = (
-/obj/structure/prop/invuln/joey,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/lower/l_a_p)
"sEK" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
@@ -66992,6 +66193,15 @@
icon_state = "plate"
},
/area/almayer/command/cic)
+"sER" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/stern)
"sEZ" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 26
@@ -67013,13 +66223,6 @@
icon_state = "cargo"
},
/area/almayer/shipboard/starboard_missiles)
-"sFh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"sFC" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -67029,38 +66232,15 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/brig/main_office)
-"sFO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"sGh" = (
/turf/open/floor/almayer/uscm/directional,
/area/almayer/command/lifeboat)
-"sGm" = (
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"sGD" = (
-/obj/structure/platform{
- dir = 4
- },
-/obj/item/storage/firstaid/rad,
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
+"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)
"sGL" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -67077,6 +66257,12 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/port)
+"sGQ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/s_bow)
"sGU" = (
/obj/structure/mirror,
/turf/closed/wall/almayer,
@@ -67087,6 +66273,10 @@
icon_state = "silverfull"
},
/area/almayer/command/airoom)
+"sHe" = (
+/obj/structure/largecrate/supply/supplies/tables_racks,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"sHm" = (
/obj/structure/disposalpipe/up/almayer{
id = "almayerlink_OT_req"
@@ -67152,11 +66342,10 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
-"sIw" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
+"sIu" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
"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.";
@@ -67175,21 +66364,30 @@
icon_state = "silver"
},
/area/almayer/engineering/port_atmos)
+"sIR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"sIU" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"sJa" = (
+/obj/structure/sign/safety/cryo{
+ pixel_y = -26
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"sJm" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/chief_mp_office)
-"sJo" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"sJC" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -67259,6 +66457,13 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"sLk" = (
+/obj/structure/ladder{
+ height = 2;
+ id = "cicladder4"
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/medical/medical_science)
"sLo" = (
/obj/structure/stairs/perspective{
dir = 1;
@@ -67269,15 +66474,15 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"sLs" = (
-/obj/structure/largecrate/supply,
-/obj/structure/sign/safety/bulkhead_door{
- pixel_y = 32
+"sLx" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/maint/hull/upper/u_f_p)
"sLA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -67285,25 +66490,12 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
-"sLE" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"sLJ" = (
-/obj/docking_port/stationary/escape_pod/cl,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_p)
-"sMe" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
+"sLX" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "emeraldcorner"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/lower/port_midship_hallway)
"sMu" = (
/obj/item/trash/uscm_mre,
/obj/structure/bed/chair/comfy/charlie{
@@ -67313,15 +66505,6 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
-"sMC" = (
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"sMM" = (
/obj/structure/cable/heavyduty{
icon_state = "4-8"
@@ -67348,19 +66531,22 @@
dir = 1
},
/area/almayer/medical/containment/cell)
-"sNC" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
-"sNF" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/l_f_p)
"sNI" = (
/obj/structure/bed/chair/comfy/delta,
/turf/open/floor/almayer{
icon_state = "bluefull"
},
/area/almayer/living/briefing)
+"sNL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"sNO" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal3"
@@ -67371,6 +66557,12 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
+"sNP" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"sNR" = (
/turf/closed/wall/almayer/research/containment/wall/corner,
/area/almayer/medical/containment/cell/cl)
@@ -67384,9 +66576,22 @@
icon_state = "test_floor4"
},
/area/almayer/command/cic)
-"sOq" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/s_bow)
+"sOr" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "3;22;19"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_f_s)
"sOt" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/machinery/status_display{
@@ -67430,17 +66635,22 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"sOH" = (
-/obj/structure/ladder{
- height = 1;
- id = "ForeStarboardMaint"
+"sOD" = (
+/obj/structure/machinery/light/small{
+ dir = 4
},
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = 32
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
+"sOL" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/lower/s_bow)
+/obj/structure/closet/toolcloset,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
"sOZ" = (
/obj/structure/sign/safety/ammunition{
pixel_y = 32
@@ -67479,6 +66689,23 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"sPY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_fore_hallway)
+"sQu" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"sQF" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -67490,14 +66717,20 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"sRk" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/drinks/cans/souto/blue{
- pixel_x = 2;
- pixel_y = 3
+"sRM" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_a_s)
+"sRP" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"sSa" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
dir = 2;
@@ -67555,21 +66788,6 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"sSP" = (
-/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_29"
- },
-/turf/open/floor/wood/ship,
-/area/almayer/command/corporateliaison)
-"sSY" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/port_umbilical)
"sTd" = (
/turf/open/floor/almayer{
dir = 4;
@@ -67595,9 +66813,13 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"sTT" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/u_a_s)
+"sTU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"sTV" = (
/obj/structure/machinery/power/apc/almayer/hardened{
cell_type = /obj/item/cell/hyper;
@@ -67615,6 +66837,12 @@
icon_state = "silverfull"
},
/area/almayer/shipboard/brig/cic_hallway)
+"sUi" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"sUj" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -67625,15 +66853,15 @@
icon_state = "bluefull"
},
/area/almayer/squads/delta)
-"sUq" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
+"sUk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
},
-/area/almayer/maint/hull/lower/stern)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"sUs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -67650,28 +66878,6 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
-"sUF" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
-"sUI" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -19;
- pixel_y = -6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = -19;
- pixel_y = 6
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"sUO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -67695,27 +66901,15 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"sVf" = (
-/obj/structure/sign/safety/escapepod{
- pixel_x = 8;
- pixel_y = -32
+"sVA" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
},
/turf/open/floor/almayer{
+ dir = 8;
icon_state = "green"
},
-/area/almayer/hallways/port_hallway)
-"sVv" = (
-/obj/structure/surface/table/almayer,
-/obj/effect/spawner/random/toolbox,
-/obj/effect/spawner/random/technology_scanner,
-/obj/effect/spawner/random/technology_scanner,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/upper/aft_hallway)
"sVT" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/mechanical,
@@ -67736,22 +66930,23 @@
"sVV" = (
/turf/open/floor/almayer,
/area/almayer/hallways/upper/starboard)
-"sWb" = (
-/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
- dir = 1
+"sWp" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_s)
-"sWy" = (
+/area/almayer/maint/hull/upper/u_a_s)
+"sWw" = (
/obj/structure/largecrate/random/case/double,
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"sWC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -67791,20 +66986,12 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/containment)
-"sXg" = (
-/obj/structure/surface/table/almayer,
-/obj/item/frame/table,
-/obj/item/storage/toolbox/electrical,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"sXh" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
+"sXq" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"sXt" = (
/obj/structure/machinery/cm_vending/clothing/tl/alpha{
density = 0;
@@ -67820,22 +67007,6 @@
/obj/effect/landmark/late_join/bravo,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/bravo)
-"sXy" = (
-/obj/item/device/camera{
- pixel_x = 4;
- pixel_y = 8
- },
-/obj/structure/surface/table/almayer,
-/obj/item/device/camera_film{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/item/device/camera_film,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/shipboard/brig/main_office)
"sXB" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -67849,6 +67020,15 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"sXC" = (
+/obj/structure/sign/safety/storage{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"sXE" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Auxiliary Support Officer's Room"
@@ -67868,17 +67048,6 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"sYe" = (
-/obj/structure/surface/rack,
-/obj/item/stack/cable_coil,
-/obj/item/attachable/flashlight/grip,
-/obj/item/ammo_box/magazine/l42a{
- pixel_y = 14
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"sYh" = (
/turf/open/floor/almayer{
dir = 1;
@@ -67904,6 +67073,28 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"sYj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"sYr" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"sYw" = (
/obj/structure/platform{
dir = 8
@@ -67960,6 +67151,18 @@
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/medical/upper_medical)
+"sZc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
+"sZe" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"sZq" = (
/obj/structure/machinery/cm_vending/sorted/marine_food{
density = 0;
@@ -68020,12 +67223,6 @@
icon_state = "blue"
},
/area/almayer/living/port_emb)
-"sZQ" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"tab" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/storage/box/flashbangs{
@@ -68050,15 +67247,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"tal" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/aft_hallway)
"tan" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -68091,15 +67279,9 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/perma)
-"taA" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/starboard_hallway)
+"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";
@@ -68128,11 +67310,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/containment/cell)
-"taM" = (
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"taV" = (
/obj/effect/projector{
name = "Almayer_Down1";
@@ -68144,51 +67321,43 @@
icon_state = "plate"
},
/area/almayer/hallways/upper/starboard)
-"tbd" = (
-/obj/structure/machinery/light{
- unacidable = 1;
- unslashable = 1
+"tbD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
+"tbF" = (
/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
+ icon_state = "silvercorner"
},
-/area/almayer/medical/lockerroom)
-"tbz" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+/area/almayer/hallways/upper/aft_hallway)
+"tcd" = (
+/obj/structure/surface/table/almayer,
+/obj/item/device/radio{
+ pixel_x = -6;
+ pixel_y = 3
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"tcm" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
-/area/almayer/maint/hull/lower/l_a_p)
-"tcn" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"tcP" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/largecrate/random/barrel/white,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"tcY" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
+/area/almayer/maint/hull/lower/l_a_s)
+"tcO" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/l_a_p)
+"tcS" = (
/obj/structure/disposalpipe/segment{
- layer = 5.1;
- name = "water pipe"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Hangar Lockdown";
- name = "\improper Hangar Lockdown Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 4
},
-/area/almayer/maint/lower/constr)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"tcZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -68225,6 +67394,14 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"tdi" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"tdv" = (
/obj/structure/surface/table/almayer,
/obj/structure/sign/safety/terminal{
@@ -68265,33 +67442,21 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha_bravo_shared)
+"tdH" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/obj/item/bedsheet/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"tdI" = (
/turf/open/floor/almayer{
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"tdK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/airlock{
- pixel_y = -32
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_umbilical)
-"tdN" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"tdT" = (
/obj/structure/bed/chair/comfy/beige{
dir = 1
@@ -68315,13 +67480,14 @@
},
/area/almayer/lifeboat_pumps/north1)
"ter" = (
-/obj/structure/surface/rack,
-/obj/item/tool/weldpack,
-/obj/effect/spawner/random/tool,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/almayer/maint/hull/lower/l_f_p)
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
"teu" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/gun/shotgun/pump{
@@ -68329,6 +67495,10 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
+"tey" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"tez" = (
/obj/effect/landmark/ert_spawns/distress_cryo,
/obj/effect/landmark/late_join,
@@ -68343,9 +67513,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"teI" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/u_f_p)
"teY" = (
/obj/structure/machinery/light{
dir = 1
@@ -68367,39 +67534,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/lobby)
-"tfj" = (
-/obj/structure/machinery/conveyor{
- id = "lower_garbage"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "plating_striped"
- },
-/area/almayer/maint/hull/lower/l_a_p)
-"tfl" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"tfw" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"tfH" = (
/obj/structure/machinery/light/containment,
/obj/effect/decal/warning_stripes{
@@ -68409,6 +67543,10 @@
dir = 1
},
/area/almayer/medical/containment/cell)
+"tfQ" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
"tge" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -68420,16 +67558,37 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
-"tgh" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
+"tgm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
+"tgy" = (
+/obj/structure/machinery/light,
/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 2
+ icon_state = "SW-out"
+ },
+/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
+ req_one_access = null;
+ req_one_access_txt = "7;23;27;102"
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"tgz" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/manualopenclose{
+ pixel_x = 15;
+ pixel_y = -32
},
/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/lower/port_midship_hallway)
"tgK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -68472,12 +67631,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"tht" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"thv" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -68500,12 +67653,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha_bravo_shared)
-"thK" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"thL" = (
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
@@ -68534,6 +67681,12 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha)
+"tih" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"tii" = (
/obj/structure/machinery/firealarm{
pixel_x = 6;
@@ -68564,13 +67717,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"tit" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
"tiE" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -68622,6 +67768,32 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"tiX" = (
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
+"tiY" = (
+/obj/structure/closet,
+/obj/item/reagent_container/food/drinks/bottle/sake,
+/obj/item/newspaper,
+/obj/item/clothing/gloves/yellow,
+/obj/item/stack/tile/carpet{
+ amount = 20
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"tiZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"tjj" = (
/turf/open/floor/almayer{
dir = 5;
@@ -68646,13 +67818,40 @@
},
/turf/open/floor/almayer,
/area/almayer/living/tankerbunks)
-"tki" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
+"tjz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 4;
+ pixel_y = -3
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
+"tjH" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/radio/headset/almayer/mt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"tjO" = (
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"tkg" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"tkn" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/mechanical,
@@ -68689,16 +67888,6 @@
icon_state = "redfull"
},
/area/almayer/hallways/upper/starboard)
-"tkX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"tla" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/hull/upper/s_bow)
"tld" = (
/obj/structure/machinery/prop/almayer/computer{
dir = 8;
@@ -68754,13 +67943,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"tlX" = (
-/obj/structure/largecrate/random/barrel/red,
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"tmg" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/hypospray,
@@ -68772,27 +67954,22 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"tms" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 4;
- id = "officers_mess";
- name = "\improper Privacy Shutters"
- },
-/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
- access_modified = 1;
- req_one_access = null;
- req_one_access_txt = "19;30"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/mess)
+"tml" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"tmB" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
+"tmE" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"tmH" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/camera/autoname/almayer{
@@ -68826,34 +68003,38 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"tmQ" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
+"tmX" = (
+/obj/effect/landmark/start/professor,
+/obj/effect/landmark/late_join/cmo,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/offices)
"tnb" = (
/obj/structure/bed/chair/comfy/black,
/turf/open/floor/almayer{
icon_state = "redfull"
},
/area/almayer/shipboard/port_missiles)
+"tne" = (
+/obj/structure/machinery/door_control/cl/quarter/backdoor{
+ pixel_x = -25;
+ pixel_y = 23
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"tni" = (
/turf/open/floor/almayer{
dir = 1;
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_three)
-"tnl" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = 32
- },
-/obj/structure/sign/safety/north{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"tnD" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/s_bow)
"tnY" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -68865,10 +68046,9 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha)
-"toh" = (
-/obj/structure/machinery/light/small,
+"tob" = (
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/upper/u_m_s)
"tos" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -68880,6 +68060,12 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/engine_core)
+"tot" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
"tou" = (
/obj/structure/bed/chair{
dir = 4
@@ -68895,6 +68081,17 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
+"toD" = (
+/obj/structure/largecrate/supply/generator,
+/obj/item/reagent_container/food/drinks/bottle/whiskey{
+ layer = 2.9;
+ pixel_x = -10;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"toO" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/engineering_construction,
@@ -68915,6 +68112,20 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"toQ" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ id = "laddernorthwest";
+ name = "\improper North West Ladders Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"tpa" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/window/reinforced{
@@ -68931,15 +68142,37 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"tpk" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"tpj" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
},
-/area/almayer/maint/hull/upper/p_stern)
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/aft_hallway)
"tpn" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/brig/evidence_storage)
+"tpB" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/poddoor/almayer{
+ dir = 4;
+ id = "hangarentrancesouth";
+ name = "\improper South Hangar Podlock"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"tpD" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -68950,70 +68183,29 @@
icon_state = "silver"
},
/area/almayer/living/bridgebunks)
-"tpQ" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/clothing/gloves/yellow,
-/obj/item/device/multitool,
-/obj/item/tool/screwdriver{
- icon_state = "screwdriver7"
+"tpG" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
-/obj/item/tool/crowbar/red,
-/obj/item/book/manual/engineering_hacking,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"tqg" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+/area/almayer/hallways/lower/port_umbilical)
+"tpR" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"tqf" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = -16
},
/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/machinery/door_control{
- id = "DeployWorkR";
- name = "Workshop Shutters";
- pixel_x = -7;
- pixel_y = -26;
- req_one_access_txt = "3;22;2;19;7"
- },
-/obj/structure/surface/rack,
-/obj/item/rappel_harness{
- pixel_y = 8
- },
-/obj/item/rappel_harness,
-/obj/item/rappel_harness{
- pixel_y = -6
- },
-/obj/structure/sign/safety/bulkhead_door{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "silverfull"
- },
-/area/almayer/hallways/repair_bay)
-"tqs" = (
-/obj/structure/surface/table/almayer,
-/obj/item/clothing/head/hardhat{
- pixel_x = 10;
- pixel_y = 1
- },
-/obj/item/clothing/suit/storage/hazardvest{
- pixel_x = -8;
- pixel_y = 6
- },
-/obj/item/clothing/suit/storage/hazardvest/yellow,
-/obj/item/clothing/suit/storage/hazardvest{
- pixel_x = 8;
- pixel_y = 7
+ icon_state = "N";
+ pixel_y = 2
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"tqt" = (
-/obj/item/tool/wet_sign,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"tqE" = (
/obj/structure/machinery/light{
dir = 8
@@ -69024,9 +68216,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"tqG" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
"tqO" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -69039,6 +68228,47 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"tqQ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
+"tqV" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 9
+ },
+/obj/item/storage/toolbox/mechanical/green,
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"tra" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 2;
+ req_one_access = null;
+ req_one_access_txt = "19;34;30"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"trb" = (
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
@@ -69115,6 +68345,9 @@
/obj/item/clothing/suit/chef/classic,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
+"tsr" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/upper/mess)
"tst" = (
/obj/structure/machinery/cryopod/right,
/obj/effect/decal/warning_stripes{
@@ -69155,12 +68388,10 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/upper_medical)
-"tsI" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
+"tsE" = (
+/obj/structure/largecrate/random/barrel/blue,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"tsM" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -69193,6 +68424,24 @@
},
/turf/open/floor/plating,
/area/almayer/powered/agent)
+"tty" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/paper,
+/obj/item/clothing/glasses/mgoggles,
+/obj/item/clothing/glasses/mgoggles,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
+"ttB" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
+"ttD" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"ttE" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin{
@@ -69207,17 +68456,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"ttM" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/port_hallway)
"ttS" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_sn_full_cap"
@@ -69284,9 +68522,45 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"tup" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"tuA" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/port_missiles)
+"tuC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
+"tuJ" = (
+/obj/item/reagent_container/glass/bucket{
+ pixel_x = 4;
+ pixel_y = 9
+ },
+/obj/item/tool/shovel/spade{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"tuN" = (
/turf/open/floor/almayer{
icon_state = "orange"
@@ -69299,12 +68573,26 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/weapon_room)
-"tvm" = (
-/obj/structure/closet/emcloset,
+"tvl" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"tvr" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/hull/upper/u_a_s)
+"tvt" = (
+/obj/structure/window/framed/almayer/hull,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_f_s)
"tvw" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -69313,6 +68601,13 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"tvA" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"tvM" = (
/obj/structure/bed/chair{
dir = 1
@@ -69344,16 +68639,21 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"twi" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+"tvS" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_m_s)
+"twp" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "AftStarboardMaint"
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/lower/l_a_s)
"twq" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/hand_labeler{
@@ -69398,20 +68698,13 @@
icon_state = "cargo"
},
/area/almayer/command/cic)
-"twO" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
-"twT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/cryo{
- pixel_x = 8;
- pixel_y = -26
+"twQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"twW" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -69426,26 +68719,47 @@
},
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
-"txe" = (
+"txd" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
+ dir = 5
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"txi" = (
-/obj/structure/machinery/light{
- dir = 8
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
},
-/obj/effect/projector{
- name = "Almayer_Up3";
- vector_x = -1;
- vector_y = 102
+/area/almayer/hallways/upper/stern_hallway)
+"txp" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"txy" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
},
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/area/almayer/maint/hull/upper/u_f_s)
+"txE" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"txH" = (
+/obj/structure/bed/stool,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"txO" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
@@ -69460,6 +68774,17 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"txS" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/lower/engine_core)
"tyb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -69474,9 +68799,6 @@
dir = 4
},
/area/almayer/medical/containment/cell)
-"tyH" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
"tyK" = (
/obj/effect/spawner/random/toolbox,
/obj/structure/machinery/light{
@@ -69487,13 +68809,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/shipboard/starboard_missiles)
-"tyY" = (
-/obj/structure/sign/safety/autoopenclose{
- pixel_x = 7;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
"tzd" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -69501,30 +68816,28 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/brig/processing)
-"tzf" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"tzw" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+/obj/structure/machinery/light{
+ dir = 1
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
+"tzx" = (
+/obj/structure/machinery/light{
+ unacidable = 1;
+ unslashable = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
-"tzC" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
},
+/area/almayer/medical/lockerroom)
+"tzF" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "mono"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/hallways/upper/aft_hallway)
"tzL" = (
/obj/structure/sign/safety/waterhazard{
pixel_x = 8;
@@ -69541,10 +68854,14 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"tzZ" = (
-/obj/effect/landmark/start/reporter,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+"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)
"tAq" = (
/obj/structure/surface/table/reinforced/black,
/obj/item/clothing/mask/breath{
@@ -69588,6 +68905,13 @@
icon_state = "cargo"
},
/area/almayer/medical/lower_medical_medbay)
+"tAW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"tBq" = (
/obj/item/tool/crowbar,
/turf/open/floor/plating/plating_catwalk,
@@ -69599,32 +68923,42 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
-"tBz" = (
+"tBU" = (
+/obj/structure/platform,
+/obj/structure/largecrate/random/case/double{
+ layer = 2.98
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"tBY" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/mess)
+"tCd" = (
+/obj/item/folder/red{
+ desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup.";
+ name = "folder: 28";
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/toy/crayon{
+ pixel_x = 9;
+ pixel_y = -2
},
-/area/almayer/hallways/vehiclehangar)
-"tBF" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"tBL" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
-"tCi" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/upper/u_m_p)
"tCx" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/sign/safety/maint{
@@ -69643,12 +68977,25 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/port)
-"tCN" = (
+"tCC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/almayer{
dir = 8;
icon_state = "orange"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/upper/u_a_s)
+"tCD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"tCT" = (
/obj/structure/bed/chair/comfy/blue{
dir = 8
@@ -69657,17 +69004,6 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"tDq" = (
-/obj/structure/largecrate/random,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
-"tDw" = (
-/obj/structure/largecrate/supply/ammo/m41a/half,
-/obj/structure/largecrate/supply/ammo/pistol/half{
- pixel_y = 12
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
"tDZ" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -69701,27 +69037,15 @@
icon_state = "plating"
},
/area/almayer/medical/upper_medical)
-"tEk" = (
-/obj/structure/surface/table/almayer,
-/obj/item/circuitboard{
- pixel_x = 12;
- pixel_y = 7
- },
-/obj/item/tool/crowbar{
- pixel_x = 6;
- pixel_y = 1
+"tEu" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_p)
-"tEo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/mess)
+/area/almayer/maint/hull/lower/l_m_s)
"tEB" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -69763,6 +69087,11 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"tFQ" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"tFS" = (
/obj/structure/machinery/computer/supplycomp,
/obj/structure/sign/safety/terminal{
@@ -69819,14 +69148,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
-"tGq" = (
-/obj/effect/projector{
- name = "Almayer_Up4";
- vector_x = -19;
- vector_y = 104
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"tGG" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 1
@@ -69835,23 +69156,47 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"tGO" = (
-/obj/effect/projector{
- name = "Almayer_Up3";
- vector_x = -1;
- vector_y = 102
+"tGH" = (
+/obj/structure/sign/safety/restrictedarea,
+/obj/structure/sign/safety/security{
+ pixel_x = 15
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"tHh" = (
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = -32
+/turf/closed/wall/almayer,
+/area/almayer/shipboard/panic)
+"tGS" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
},
/turf/open/floor/almayer{
- icon_state = "blue"
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"tGT" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/photocopier{
+ anchored = 0
+ },
+/obj/structure/sign/poster/art{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/ship,
+/area/almayer/command/corporateliaison)
+"tGW" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/upper/stern_hallway)
+"tHk" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"tHr" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/status_display{
@@ -69878,27 +69223,12 @@
icon_state = "orangecorner"
},
/area/almayer/living/briefing)
-"tHw" = (
-/obj/structure/largecrate/random/case/double,
+"tHF" = (
+/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/stern)
-"tHA" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/station_alert,
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "orange"
- },
-/area/almayer/maint/upper/mess)
+/area/almayer/hallways/lower/starboard_aft_hallway)
"tHQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -69926,6 +69256,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
+"tIl" = (
+/obj/structure/pipes/vents/pump/on,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"tIp" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Dorms"
@@ -69941,12 +69280,12 @@
icon_state = "test_floor4"
},
/area/almayer/living/port_emb)
-"tIE" = (
-/obj/structure/girder/displaced,
+"tIF" = (
+/obj/structure/largecrate/random/barrel/green,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/l_a_s)
"tIK" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal3";
@@ -69959,15 +69298,13 @@
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
"tIN" = (
-/obj/structure/prop/invuln/lattice_prop{
- icon_state = "lattice13";
- pixel_x = 16;
- pixel_y = 16
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
},
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"tIQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -69983,10 +69320,17 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"tJa" = (
-/obj/docking_port/stationary/escape_pod/east,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_p)
+"tIX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"tJi" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/paper_bin/uscm,
@@ -69995,12 +69339,24 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
+"tJq" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"tJz" = (
/obj/structure/machinery/firealarm{
pixel_y = -28
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
+"tJH" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"tJM" = (
/obj/structure/toilet{
pixel_y = 13
@@ -70062,16 +69418,6 @@
icon_state = "cargo"
},
/area/almayer/living/bridgebunks)
-"tKu" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lockerroom)
"tLa" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -70123,22 +69469,11 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"tLA" = (
+"tLZ" = (
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
- },
-/area/almayer/squads/req)
-"tLD" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
- },
-/obj/item/bedsheet/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "green"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"tMc" = (
/obj/structure/machinery/chem_master/industry_mixer,
/turf/open/floor/almayer{
@@ -70167,6 +69502,22 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/chief_mp_office)
+"tMT" = (
+/obj/item/tool/weldingtool,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"tMU" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"tMW" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -70176,15 +69527,19 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"tNf" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/s_bow)
-"tNy" = (
-/obj/structure/machinery/light/small{
- dir = 4
+"tNw" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/pouch/tools/full,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/hull/upper/u_m_p)
+"tNB" = (
+/obj/structure/bed/sofa/south/grey/left,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"tNP" = (
/obj/structure/sign/safety/debark_lounge{
pixel_x = 15;
@@ -70231,12 +69586,52 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
+"tON" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"tOW" = (
/turf/open/floor/almayer{
dir = 10;
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"tPc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"tPj" = (
+/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
+ access_modified = 1;
+ name = "\improper Requisition's Office";
+ req_one_access = null;
+ req_one_access_txt = "1;26"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
"tPm" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -70250,6 +69645,20 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
+"tPz" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
+"tPB" = (
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/aft_hallway)
"tPI" = (
/obj/structure/bed/chair{
dir = 4
@@ -70265,6 +69674,16 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
+"tQe" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"tQi" = (
/obj/effect/landmark/start/warrant,
/obj/effect/decal/warning_stripes{
@@ -70282,58 +69701,30 @@
icon_state = "sterile_green_side"
},
/area/almayer/shipboard/brig/surgery)
-"tQo" = (
-/obj/structure/machinery/status_display{
- pixel_y = -30
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 8;
- id = "laddersoutheast";
- name = "\improper South East Ladders Shutters"
+"tQA" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/port_hallway)
-"tQw" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/maint/upper/u_m_s)
"tQL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"tQM" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/sign/poster/pinup{
- pixel_x = -30
+"tQO" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = -32
},
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "green"
},
-/area/almayer/command/corporateliaison)
-"tQN" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/p_bow)
+/area/almayer/hallways/upper/aft_hallway)
"tQV" = (
/turf/closed/wall/almayer/outer,
/area/almayer/lifeboat_pumps/south1)
-"tRd" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"tRs" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/spray/cleaner,
@@ -70353,6 +69744,15 @@
icon_state = "bluecorner"
},
/area/almayer/living/basketball)
+"tSm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldingtool{
+ pixel_x = 6;
+ pixel_y = -16
+ },
+/obj/item/clothing/head/welding,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"tSp" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -70363,12 +69763,6 @@
/obj/effect/decal/cleanable/blood,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
-"tSw" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/hallways/stern_hallway)
"tSB" = (
/turf/open/floor/almayer{
dir = 1;
@@ -70381,6 +69775,15 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"tSY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
"tTk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -70403,6 +69806,9 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"tTC" = (
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"tTD" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/storage/box/uscm_mre,
@@ -70416,6 +69822,13 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
+"tTG" = (
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"tUh" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -70468,13 +69881,12 @@
icon_state = "bluefull"
},
/area/almayer/living/bridgebunks)
-"tVl" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
+"tVn" = (
+/obj/structure/platform{
+ dir = 1
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/u_a_p)
"tVq" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -70484,38 +69896,84 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha)
-"tVJ" = (
-/obj/structure/surface/rack,
-/obj/item/tool/weldpack,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 1;
- pixel_y = 7
+"tVs" = (
+/obj/structure/closet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/item/storage/toolbox/mechanical/green{
- pixel_x = 1;
- pixel_y = -1
+/area/almayer/maint/upper/u_m_s)
+"tVx" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
+"tVZ" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo_arrow"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/hallways/lower/repair_bay)
+"tWd" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"tWf" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"tWi" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"tWL" = (
-/obj/structure/sign/poster{
- desc = "It says DRUG.";
- icon_state = "poster2";
- pixel_y = 30
+"tWl" = (
+/obj/structure/machinery/door/airlock/almayer/engineering{
+ name = "\improper Disposals"
},
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"tWp" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"tWF" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_one_access = null;
+ req_one_access_txt = "2;30;34"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/mess)
+"tWL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"tWM" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_s)
"tWY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -70572,20 +70030,11 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
-"tXA" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
+"tXo" = (
+/turf/open/floor/almayer{
+ icon_state = "redcorner"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"tXM" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -70629,22 +70078,6 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
-"tXX" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/firstaid/o2,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"tYh" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
"tYi" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70656,6 +70089,15 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"tYr" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"tYw" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottomleft";
@@ -70677,6 +70119,12 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"tYV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"tYX" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
@@ -70705,16 +70153,12 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/port)
-"tZO" = (
-/obj/structure/sign/safety/autodoc{
- pixel_x = 20;
- pixel_y = -32
- },
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
+"tZM" = (
+/obj/structure/sink{
+ pixel_y = 24
},
-/area/almayer/medical/lower_medical_medbay)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"tZP" = (
/obj/structure/surface/rack,
/obj/item/clothing/glasses/meson,
@@ -70748,6 +70192,12 @@
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
+"uag" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/mess)
"uah" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -70758,13 +70208,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"uai" = (
-/obj/structure/window/framed/almayer,
-/obj/structure/curtain/open/shower{
- name = "hypersleep curtain"
- },
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_p)
"ual" = (
/obj/structure/sink{
pixel_y = 24
@@ -70788,6 +70231,15 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
+"uaA" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
+"uaG" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/lower/starboard_umbilical)
"uaI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/processor{
@@ -70823,19 +70275,6 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"ubB" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- dir = 1;
- name = "\improper Brig Maintenance"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/p_bow)
"ubI" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random{
@@ -70849,6 +70288,27 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"ubQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"uch" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"ucp" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -70859,6 +70319,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
+"ucy" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/l_a_p)
"ucz" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/overwatch/almayer{
@@ -70881,12 +70349,23 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"ucU" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"udf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
-/area/almayer/maint/hull/lower/p_bow)
+/obj/structure/sign/safety/maint{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/storage{
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"udi" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -70910,15 +70389,6 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
-"udF" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/starboard_hallway)
"udG" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes{
@@ -70929,13 +70399,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
-"udH" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/power/apc/almayer,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"udK" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -70991,6 +70454,12 @@
icon_state = "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)
"ueG" = (
/obj/item/bedsheet/orange,
/obj/structure/bed{
@@ -71004,12 +70473,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/engineering/ce_room)
-"ueH" = (
-/obj/structure/sink{
- pixel_y = 24
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/s_bow)
"ueJ" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -71061,15 +70524,12 @@
icon_state = "test_floor4"
},
/area/almayer/command/cic)
-"ugt" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
- },
+"ugj" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 4;
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/maint/hull/lower/l_m_s)
"ugu" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer,
@@ -71090,6 +70550,21 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"ugZ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
+"uhh" = (
+/obj/structure/machinery/vending/cola{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"uhl" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -71100,14 +70575,22 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/offices)
-"uhn" = (
-/obj/structure/platform{
+"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{
- icon_state = "plate"
+ icon_state = "redfull"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"uhE" = (
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle,
/turf/open/floor/plating/plating_catwalk,
@@ -71126,13 +70609,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/offices)
-"uhS" = (
-/obj/structure/sign/safety/hazard{
- desc = "A sign that warns of a hazardous environment nearby";
- name = "\improper Warning: Hazardous Environment"
- },
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/lower/l_f_p)
"uhW" = (
/turf/open/floor/almayer{
dir = 1;
@@ -71160,6 +70636,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"uiK" = (
+/obj/item/ammo_box/magazine/misc/mre,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"uiR" = (
/obj/structure/prop/invuln{
desc = "An inflated membrane. This one is puncture proof. Wow!";
@@ -71188,23 +70670,12 @@
icon_state = "test_floor4"
},
/area/almayer/command/cichallway)
-"ujc" = (
-/obj/structure/largecrate/random/case/double,
+"ujf" = (
+/obj/structure/largecrate/random/barrel/yellow,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_s)
-"ujr" = (
-/obj/structure/surface/table/almayer,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/engineering/lower/engine_core)
+/area/almayer/maint/upper/u_m_s)
"ujz" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -71223,25 +70694,19 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
-"ukh" = (
-/obj/structure/sign/safety/rewire{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
-"ukk" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- req_one_access = null;
- req_one_access_txt = "2;30;34"
+"uky" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_umbilical)
+"ukC" = (
+/obj/effect/decal/cleanable/blood/drip,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/maint/hull/upper/u_m_p)
"ukP" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/almayer{
@@ -71288,27 +70753,16 @@
icon_state = "plating_striped"
},
/area/almayer/squads/req)
-"ulG" = (
-/obj/item/tool/weldpack{
- pixel_y = 15
- },
-/obj/structure/surface/table/almayer,
-/obj/item/clothing/head/welding,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"ulI" = (
-/obj/structure/ladder{
- height = 1;
- id = "AftPortMaint"
+"ulH" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
},
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = -32
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
},
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/lower/l_a_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"ulZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -71324,6 +70778,15 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
+"umk" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"umm" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light/small,
@@ -71340,6 +70803,22 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"umD" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"umI" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"umS" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -71392,18 +70871,13 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"unI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 4;
- name = "ship-grade camera"
- },
+"unQ" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/effect/spawner/random/tool,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_bow)
+/area/almayer/maint/hull/upper/u_a_p)
"unT" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/tool/crowbar,
@@ -71415,6 +70889,16 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"unU" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"unZ" = (
/obj/structure/platform{
dir = 1
@@ -71436,19 +70920,18 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
+"uoj" = (
+/obj/item/tool/pen,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/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)
-"uoF" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"uoH" = (
/obj/structure/machinery/firealarm{
dir = 1;
@@ -71458,15 +70941,13 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"upv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"uoO" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
},
-/area/almayer/maint/upper/mess)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
"upM" = (
/obj/structure/machinery/light{
dir = 4
@@ -71494,6 +70975,10 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"upS" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"uqd" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/warning_stripes{
@@ -71524,6 +71009,13 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
+"uqg" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"uqh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71563,23 +71055,60 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"uqW" = (
-/obj/item/tool/wet_sign,
-/obj/effect/decal/cleanable/blood,
+"uqJ" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"urg" = (
+/obj/docking_port/stationary/escape_pod/east,
/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"urD" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/powercell,
-/obj/effect/spawner/random/powercell,
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = -32
+/area/almayer/maint/hull/upper/u_m_p)
+"urk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
+"urs" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"ury" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_p)
+"urL" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"urM" = (
/obj/structure/machinery/light{
dir = 8
@@ -71594,14 +71123,6 @@
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"urZ" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -16;
- pixel_y = 13
- },
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/l_a_p)
"usm" = (
/obj/structure/machinery/light,
/obj/structure/sign/safety/waterhazard{
@@ -71612,6 +71133,19 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"usq" = (
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/shipboard/panic)
"usy" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -71673,6 +71207,15 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering)
+"utC" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"utK" = (
/obj/structure/machinery/light{
dir = 4
@@ -71747,6 +71290,12 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower)
+"uuI" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"uuR" = (
/obj/structure/desertdam/decals/road_edge{
icon_state = "road_edge_decal8";
@@ -71770,13 +71319,15 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
-"uvt" = (
-/obj/structure/machinery/light,
+"uuT" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/bridgebunks)
-"uvu" = (
+/area/almayer/hallways/lower/port_aft_hallway)
+"uvh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
@@ -71784,27 +71335,48 @@
dir = 4
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orangecorner"
+ icon_state = "plate"
},
-/area/almayer/squads/bravo)
-"uvB" = (
-/obj/structure/machinery/light/small{
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
+"uvq" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/prop/invuln/overhead_pipe{
+/turf/open/floor/almayer{
dir = 4;
- pixel_y = 13
+ icon_state = "orange"
},
+/area/almayer/hallways/upper/stern_hallway)
+"uvt" = (
+/obj/structure/machinery/light,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/living/bridgebunks)
+"uvu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/squads/bravo)
"uvP" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -71839,19 +71411,10 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
-"uwi" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"uwk" = (
-/obj/structure/machinery/power/terminal,
-/turf/open/floor/almayer,
-/area/almayer/maint/upper/mess)
+"uwf" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"uws" = (
/obj/structure/machinery/light{
dir = 4
@@ -71872,12 +71435,6 @@
"uwv" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/weapon_room/notunnel)
-"uwJ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
"uwN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71922,6 +71479,18 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
+"uxb" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
+"uxl" = (
+/obj/item/cell/high/empty,
+/obj/item/cell/high/empty,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
"uxp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -71938,12 +71507,12 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"uxx" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+"uxs" = (
+/obj/structure/machinery/pipedispenser/orderable,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/upper/u_a_s)
"uxC" = (
/obj/structure/machinery/light{
dir = 4
@@ -71977,27 +71546,6 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"uxZ" = (
-/obj/structure/machinery/door_control{
- id = "laddersouthwest";
- name = "South West Ladders Shutters";
- pixel_x = 25;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/turf/open/floor/almayer{
- icon_state = "greencorner"
- },
-/area/almayer/hallways/port_hallway)
-"uyb" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"uyd" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -72027,19 +71575,13 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/chemistry)
-"uyK" = (
-/obj/structure/machinery/vending/cola{
- density = 0;
- pixel_y = 18
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
+"uzv" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
},
-/area/almayer/maint/hull/upper/u_f_p)
-"uyV" = (
-/obj/item/stack/sheet/metal,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/l_a_s)
"uzy" = (
/obj/item/reagent_container/glass/bucket,
/obj/effect/decal/cleanable/blood/oil,
@@ -72060,6 +71602,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"uAi" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"uAj" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
@@ -72078,12 +71629,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"uAx" = (
-/obj/structure/platform{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
"uAC" = (
/obj/item/bedsheet/purple{
layer = 3.2
@@ -72128,10 +71673,6 @@
/obj/item/toy/plush/farwa,
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
-"uAN" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
"uAW" = (
/obj/structure/machinery/cryopod{
layer = 3.1;
@@ -72150,36 +71691,37 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"uBn" = (
-/turf/open/floor/almayer{
- icon_state = "cargo_arrow"
+"uBj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 3
},
-/area/almayer/hallways/vehiclehangar)
-"uBw" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "green"
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"uBx" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
},
-/area/almayer/hallways/starboard_hallway)
-"uBz" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
},
-/area/almayer/hallways/stern_hallway)
-"uBE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/sign/safety/water{
+ pixel_x = -17
},
-/area/almayer/maint/hull/lower/l_a_s)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"uBM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -72208,15 +71750,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
-"uBS" = (
-/obj/structure/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"uCh" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/sign/safety/water{
@@ -72228,6 +71761,27 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"uCt" = (
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/escapepod{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"uCw" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_container/food/snacks/tomatomeat,
+/obj/item/reagent_container/food/snacks/tomatomeat,
+/obj/item/reagent_container/food/snacks/tomatomeat,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"uCM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -72246,13 +71800,12 @@
icon_state = "test_floor4"
},
/area/almayer/squads/charlie)
-"uCU" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
+"uCR" = (
+/obj/item/tool/warning_cone{
+ pixel_y = 13
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"uCW" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -72260,20 +71813,9 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/cichallway)
-"uDl" = (
-/obj/structure/closet,
-/obj/item/stack/sheet/glass/large_stack,
-/obj/item/device/lightreplacer,
-/obj/item/reagent_container/spray/cleaner,
-/obj/item/stack/rods{
- amount = 40
- },
-/obj/item/tool/weldingtool,
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/s_bow)
+"uDg" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/s_bow)
"uDn" = (
/obj/structure/ladder{
height = 1;
@@ -72291,19 +71833,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lockerroom)
-"uDT" = (
-/obj/structure/surface/table/almayer,
-/obj/item/circuitboard/airlock,
-/obj/item/circuitboard/airlock{
- pixel_x = 7;
- pixel_y = 7
- },
-/obj/item/stack/cable_coil{
- pixel_x = -7;
- pixel_y = 11
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"uDW" = (
/obj/structure/machinery/cm_vending/clothing/tl/delta{
density = 0;
@@ -72313,15 +71842,36 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"uFb" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- dir = 1;
- name = "\improper Port Viewing Room"
+"uEO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 3
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
+"uES" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/structure/machinery/recharge_station{
+ layer = 2.9
+ },
+/obj/structure/sign/safety/high_voltage{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "silver"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/lower/repair_bay)
"uFd" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -72352,6 +71902,12 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lockerroom)
+"uFp" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/s_bow)
"uFq" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -72362,36 +71918,11 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/lobby)
-"uFE" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/obj/item/clothing/head/helmet/marine/tech/tanker,
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"uFH" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/map_item,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"uFL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
-"uFP" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/port_hallway)
"uGc" = (
/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
/obj/structure/sign/safety/hazard{
@@ -72409,19 +71940,18 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/port)
-"uGt" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
+"uGf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"uGy" = (
-/obj/structure/ladder{
- height = 2;
- id = "AftPortMaint"
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
},
-/turf/open/floor/plating/almayer,
-/area/almayer/maint/hull/upper/u_a_p)
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"uGN" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
@@ -72432,52 +71962,54 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
+"uGU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
+"uHk" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/lower/cryo_cells)
"uHr" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
-"uHZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/airlock/almayer/generic/press{
- dir = 1;
- name = "\improper Combat Correspondent Room"
- },
+"uHT" = (
/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/command/combat_correspondent)
-"uId" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+ icon_state = "plate"
},
-/obj/effect/step_trigger/clone_cleaner,
+/area/almayer/maint/lower/s_bow)
+"uIa" = (
/turf/open/floor/almayer{
- dir = 9;
- icon_state = "green"
+ icon_state = "greencorner"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"uIv" = (
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"uIw" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/upper/u_m_s)
"uIA" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"uIF" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
"uII" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -72498,20 +72030,19 @@
icon_state = "test_floor4"
},
/area/almayer/squads/alpha_bravo_shared)
-"uIZ" = (
-/obj/structure/largecrate/random/barrel/red,
-/obj/structure/sign/safety/high_voltage{
- pixel_x = 32;
- pixel_y = 7
+"uJb" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/airlock{
+ pixel_y = -32
},
-/obj/structure/sign/safety/fire_haz{
- pixel_x = 32;
- pixel_y = -8
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/hallways/lower/port_umbilical)
"uJk" = (
/obj/structure/prop/almayer/name_stencil{
icon_state = "almayer4"
@@ -72529,18 +72060,13 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/main_office)
-"uJP" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
+"uJM" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = -32
},
-/area/almayer/medical/upper_medical)
-"uJT" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"uJU" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -72575,13 +72101,11 @@
},
/area/almayer/living/gym)
"uKl" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
+/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/upper/u_a_s)
"uKv" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/multitool{
@@ -72592,13 +72116,12 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
-"uKA" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/machinery/light{
+"uKH" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/lower/l_f_p)
"uKV" = (
/obj/structure/sign/safety/storage{
pixel_x = 32;
@@ -72614,26 +72137,26 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/shipboard/starboard_point_defense)
-"uLu" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/stern_hallway)
-"uLv" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_y = -32
+"uLG" = (
+/obj/structure/closet/crate/freezer{
+ desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top."
},
-/obj/structure/sign/safety/manualopenclose{
- pixel_x = 15;
- pixel_y = -32
+/obj/item/reagent_container/food/snacks/mre_pack/xmas2,
+/obj/item/reagent_container/food/snacks/mre_pack/xmas1,
+/obj/item/reagent_container/food/snacks/mre_pack/xmas3,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/upper/s_stern)
"uMc" = (
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
/area/almayer/engineering/upper_engineering/starboard)
+"uMf" = (
+/obj/structure/machinery/light/small,
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
"uMj" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -72670,18 +72193,24 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"uNd" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"uNf" = (
+/obj/structure/sign/safety/conference_room{
+ pixel_y = 32
},
-/area/almayer/maint/hull/upper/u_f_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"uNg" = (
/obj/structure/machinery/cryopod,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/living/bridgebunks)
+"uNp" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"uNq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/light{
@@ -72696,6 +72225,10 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"uNz" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"uNB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -72717,25 +72250,34 @@
icon_state = "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{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"uNV" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"uOc" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/hallways/vehiclehangar)
"uOi" = (
/turf/closed/wall/almayer/outer,
/area/almayer/lifeboat_pumps/south2)
+"uOE" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"uOJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
@@ -72748,22 +72290,15 @@
icon_state = "blue"
},
/area/almayer/living/basketball)
-"uPD" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
+"uPE" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
+"uPN" = (
+/obj/item/tool/wirecutters/clippers,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_p)
-"uPI" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
+/area/almayer/maint/hull/upper/u_a_s)
"uPP" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -72774,6 +72309,13 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower)
+"uPQ" = (
+/obj/item/weapon/dart/green,
+/obj/structure/dartboard{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"uPW" = (
/obj/structure/bed/chair{
dir = 4
@@ -72782,19 +72324,23 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
+"uPX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"uQi" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"uQm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/perma)
-"uQn" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 3
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"uQo" = (
/obj/structure/machinery/disposal,
/obj/item/reagent_container/food/drinks/cans/beer{
@@ -72807,31 +72353,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
-"uQp" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_stern)
-"uQU" = (
-/obj/structure/stairs{
- dir = 1
- },
-/obj/structure/machinery/light{
- dir = 8
- },
-/obj/effect/projector{
- name = "Almayer_Up4";
- vector_x = -19;
- vector_y = 104
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/port_hallway)
-"uRh" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"uRo" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -72864,6 +72385,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
+"uRD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"uRM" = (
/obj/structure/bed{
can_buckle = 0
@@ -72891,6 +72418,14 @@
},
/turf/open/floor/plating,
/area/almayer/living/port_emb)
+"uRR" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/s_bow)
"uRY" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -72924,16 +72459,16 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"uSI" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
"uSS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
/area/almayer/medical/lockerroom)
+"uSU" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"uSW" = (
/obj/structure/stairs/perspective{
dir = 4;
@@ -72948,6 +72483,31 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"uSZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
+"uTk" = (
+/obj/structure/largecrate/random/secure,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"uTs" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"uTv" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -72956,6 +72516,13 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
+"uTE" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"uTN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
@@ -72963,10 +72530,16 @@
icon_state = "mono"
},
/area/almayer/living/pilotbunks)
-"uTS" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
+"uTP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_aft_hallway)
"uTU" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -72991,23 +72564,12 @@
icon_state = "orangefull"
},
/area/almayer/engineering/lower/workshop)
-"uTY" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"uTZ" = (
/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"uUa" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"uUe" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -73024,6 +72586,28 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/port)
+"uUf" = (
+/obj/structure/surface/table/almayer,
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = -7;
+ pixel_y = 9
+ },
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = 9
+ },
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = -9;
+ pixel_y = -4
+ },
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_y = -2
+ },
+/obj/item/reagent_container/pill/happy,
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"uUi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -73076,10 +72660,6 @@
},
/turf/open/floor/plating,
/area/almayer/engineering/upper_engineering/port)
-"uUD" = (
-/obj/structure/largecrate/supply/weapons/pistols,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
"uVc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -73094,12 +72674,30 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"uVg" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"uVh" = (
/obj/structure/filingcabinet/seeds,
/turf/open/floor/almayer{
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"uVp" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"uVv" = (
/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{
dir = 1
@@ -73108,18 +72706,6 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"uVx" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"uVA" = (
/turf/open/floor/almayer{
dir = 4;
@@ -73151,29 +72737,29 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"uVZ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"uWc" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
-"uWp" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"uWv" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/upper/stairs)
-"uWC" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
+"uWm" = (
+/obj/effect/projector{
+ name = "Almayer_Up4";
+ vector_x = -19;
+ vector_y = 104
},
/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
+ allow_construction = 0;
+ icon_state = "plate"
},
-/area/almayer/hallways/stern_hallway)
+/area/almayer/hallways/lower/port_midship_hallway)
"uWV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -73223,15 +72809,16 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/engine_core)
-"uXu" = (
+"uXm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"uXL" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -73241,6 +72828,13 @@
icon_state = "tcomms"
},
/area/almayer/engineering/upper_engineering/starboard)
+"uXU" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
+/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza,
+/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"uYa" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -73273,9 +72867,22 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"uZb" = (
-/turf/open/floor/almayer,
-/area/almayer/maint/upper/mess)
+"uYM" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
+"uZm" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"uZo" = (
/obj/structure/bed/stool,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -73301,10 +72908,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"uZQ" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/almayer/hallways/repair_bay)
+"uZI" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"uZV" = (
/obj/structure/reagent_dispensers/fueltank/gas/methane{
anchored = 1
@@ -73328,31 +72937,49 @@
icon_state = "test_floor4"
},
/area/almayer/living/basketball)
-"vag" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
+"vaq" = (
+/obj/structure/disposalpipe/junction{
dir = 4;
- pixel_x = -14;
- pixel_y = 13
+ icon_state = "pipe-j2"
},
+/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
-"vak" = (
-/obj/structure/sign/safety/security{
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"vaM" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
pixel_x = 15;
pixel_y = 32
},
-/turf/closed/wall/almayer,
-/area/almayer/hallways/starboard_umbilical)
-"vaH" = (
-/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,
-/area/almayer/maint/hull/upper/u_f_p)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
+"vaQ" = (
+/obj/structure/machinery/door/airlock/almayer/medical{
+ dir = 1;
+ name = "Medical Storage"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"vaV" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"vaZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -73374,10 +73001,16 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"vbk" = (
-/obj/docking_port/stationary/escape_pod/south,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/lower/l_m_s)
+"vbu" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldpack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"vbB" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south1)
@@ -73397,12 +73030,6 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"vbJ" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"vbM" = (
/obj/structure/flora/pottedplant{
desc = "It is made of Fiberbush(tm). It contains asbestos.";
@@ -73446,25 +73073,18 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"vcg" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/obj/structure/largecrate/random/barrel/green,
-/obj/structure/sign/safety/maint{
- pixel_x = 15;
- pixel_y = 32
+"vbZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/pipes/vents/scrubber{
+ dir = 1
},
-/area/almayer/maint/hull/upper/s_bow)
-"vcl" = (
-/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/hallways/lower/vehiclehangar)
"vcm" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -30
@@ -73495,41 +73115,22 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"vcL" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 2;
- id = "bot_armory";
- name = "\improper Armory Shutters"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- dir = 2;
- name = "\improper Armory"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 2;
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_x = -2;
- pixel_y = 1
+"vcI" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
+"vcO" = (
+/obj/structure/machinery/light{
+ dir = 4
},
-/area/almayer/shipboard/brig/armory)
-"vdc" = (
-/obj/item/tool/wet_sign,
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 9;
+ icon_state = "red"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/upper/aft_hallway)
"vdl" = (
/obj/structure/window/reinforced/ultra{
pixel_y = -12
@@ -73542,24 +73143,6 @@
icon_state = "plating_striped"
},
/area/almayer/shipboard/brig/execution)
-"vdJ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/pipe{
- dir = 9
- },
-/obj/item/tool/screwdriver{
- layer = 3.6;
- pixel_x = 9;
- pixel_y = 8
- },
-/obj/item/tool/crowbar/red{
- pixel_x = 17
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "silver"
- },
-/area/almayer/hallways/repair_bay)
"vdL" = (
/obj/structure/sign/safety/reception{
pixel_x = -17;
@@ -73595,29 +73178,26 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"vdW" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"vef" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
- name = "\improper Port Viewing Room"
+"vdT" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/maint/upper/u_m_s)
"ven" = (
/obj/structure/bed/chair,
/turf/open/floor/almayer{
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"veq" = (
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"veu" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -73628,16 +73208,27 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
-"veN" = (
-/obj/item/stool,
-/obj/effect/landmark/yautja_teleport,
+"veO" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/l42a,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = -6
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_s)
-"veX" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/shipboard/panic)
+/area/almayer/maint/hull/upper/u_m_s)
+"veW" = (
+/obj/structure/machinery/door/airlock/almayer/generic/glass{
+ name = "\improper Passenger Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"vfa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73650,20 +73241,6 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"vfn" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/obj/item/reagent_container/glass/bucket/mopbucket,
-/obj/item/tool/mop{
- pixel_x = -6;
- pixel_y = 14
- },
-/obj/structure/janitorialcart,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/lower/s_bow)
"vfo" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
dir = 2;
@@ -73709,21 +73286,20 @@
dir = 1
},
/area/almayer/medical/containment/cell)
+"vfS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
"vgi" = (
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/general_equipment)
-"vgk" = (
-/obj/structure/closet/firecloset,
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/port_hallway)
"vgn" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
@@ -73792,22 +73368,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"vgC" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/machinery/door_control{
- id = "hangarentrancenorth";
- name = "North Hangar Podlocks";
- pixel_y = -26;
- req_one_access_txt = "2;3;12;19";
- throw_range = 15
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/starboard_hallway)
"vgD" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -73817,20 +73377,6 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
-"vgF" = (
-/obj/structure/stairs{
- dir = 4
- },
-/obj/effect/projector{
- name = "Almayer_Up2";
- vector_x = -1;
- vector_y = 100
- },
-/obj/structure/machinery/light,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"vgO" = (
/turf/closed/wall/almayer/research/containment/wall/east,
/area/almayer/medical/containment/cell)
@@ -73847,31 +73393,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
-"vgY" = (
-/obj/structure/largecrate/random/case/double,
-/obj/item/tool/wet_sign{
- pixel_y = 18
- },
-/obj/item/trash/cigbutt/ucigbutt{
- desc = "A handful of rounds to reload on the go.";
- icon = 'icons/obj/items/weapons/guns/handful.dmi';
- icon_state = "bullet_2";
- name = "handful of pistol bullets (9mm)";
- pixel_x = -8;
- pixel_y = 10
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"vhb" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- dir = 8;
- req_one_access = list(2,34,30)
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"vhe" = (
/obj/structure/filingcabinet{
density = 0;
@@ -73897,15 +73418,10 @@
/obj/structure/machinery/disposal,
/turf/open/floor/almayer,
/area/almayer/living/offices/flight)
-"vhM" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
+"vhA" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"vhR" = (
/obj/structure/flora/pottedplant{
desc = "It is made of Fiberbush(tm). It contains asbestos.";
@@ -74056,19 +73572,29 @@
icon_state = "plating"
},
/area/almayer/shipboard/port_missiles)
-"vji" = (
-/obj/structure/surface/table/almayer,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
+"vjk" = (
/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
name = "ship-grade camera"
},
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
-/area/almayer/engineering/lower/engine_core)
+/area/almayer/hallways/lower/starboard_umbilical)
"vjv" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -74092,10 +73618,45 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"vjG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"vjK" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
/area/almayer/shipboard/port_missiles)
+"vjS" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ layer = 5.1;
+ name = "water pipe"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Hangar Lockdown";
+ name = "\improper Hangar Lockdown Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/lower/constr)
+"vjT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"vjW" = (
/obj/structure/reagent_dispensers/watertank{
anchored = 1
@@ -74130,6 +73691,27 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"vky" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/p_bow)
+"vkI" = (
+/obj/item/coin/silver{
+ desc = "A small coin, bearing the falling falcons insignia.";
+ name = "falling falcons challenge coin"
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"vkM" = (
/obj/structure/machinery/door/airlock/almayer/security/glass{
dir = 1;
@@ -74143,14 +73725,26 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/general_equipment)
-"vkQ" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
+"vkO" = (
+/obj/structure/closet,
+/obj/item/stack/sheet/glass/large_stack,
+/obj/item/device/lightreplacer,
+/obj/item/reagent_container/spray/cleaner,
+/obj/item/stack/rods{
+ amount = 40
},
+/obj/item/tool/weldingtool,
+/obj/item/clothing/glasses/welding,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/lower/s_bow)
+"vkQ" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"vkR" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -74161,27 +73755,9 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"vkW" = (
-/obj/structure/sink{
- pixel_y = 24
- },
+"vkV" = (
+/obj/effect/landmark/start/liaison,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
-"vlf" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/medical/medical_science)
-"vlj" = (
-/obj/structure/janitorialcart,
-/obj/item/tool/mop,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
/area/almayer/maint/hull/upper/u_m_p)
"vlk" = (
/obj/structure/closet/emcloset,
@@ -74257,6 +73833,13 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
+"vlR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"vlX" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
/turf/open/floor/almayer{
@@ -74279,6 +73862,15 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
+"vmq" = (
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/lower/l_m_s)
+"vmu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"vmE" = (
/turf/open/floor/almayer{
icon_state = "orangecorner"
@@ -74317,35 +73909,12 @@
icon_state = "red"
},
/area/almayer/shipboard/port_missiles)
-"vmZ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/kitchen/tray,
-/obj/item/reagent_container/food/drinks/bottle/whiskey,
-/obj/item/toy/deck{
- pixel_x = -9
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
-"vna" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/squads/req)
-"vnj" = (
-/obj/structure/largecrate/random/case/small,
-/obj/item/device/taperecorder{
- pixel_x = 7;
- pixel_y = 7
- },
-/obj/item/reagent_container/glass/bucket/mopbucket{
- pixel_x = -9;
- pixel_y = 8
- },
+"vno" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "blue"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/hallways/lower/port_midship_hallway)
"vnD" = (
/obj/structure/barricade/handrail{
dir = 1;
@@ -74355,35 +73924,35 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"vnE" = (
-/obj/structure/bed/chair{
+"vnY" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
+"vnZ" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
-"vnU" = (
-/obj/structure/closet/emcloset,
+/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "orange"
},
-/area/almayer/maint/hull/upper/s_bow)
-"voo" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = -32
+/area/almayer/hallways/upper/stern_hallway)
+"vop" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"voU" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- req_one_access = null;
- req_one_access_txt = "19;21"
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
},
+/area/almayer/hallways/lower/repair_bay)
+"vor" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/prop/broken_arcade,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/squads/req)
+/area/almayer/maint/hull/upper/u_m_p)
"vpe" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{
@@ -74394,6 +73963,11 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower/workshop/hangar)
+"vpf" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"vpn" = (
/turf/open/floor/almayer{
dir = 9;
@@ -74411,6 +73985,22 @@
/obj/item/clothing/mask/cigarette/weed,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
+"vpI" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
+"vpT" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/computer/cameras/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"vpV" = (
/turf/open/floor/almayer{
dir = 10;
@@ -74436,6 +74026,19 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/processing)
+"vqz" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"vqC" = (
/obj/structure/pipes/vents/pump{
dir = 4
@@ -74505,10 +74108,6 @@
"vra" = (
/turf/closed/wall/almayer,
/area/almayer/squads/charlie_delta_shared)
-"vrb" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"vrx" = (
/obj/structure/machinery/status_display{
pixel_x = -32;
@@ -74516,17 +74115,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"vrG" = (
-/obj/item/ammo_box/magazine/misc/mre/empty{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/reagent_container/food/drinks/cans/aspen{
- pixel_x = 11;
- pixel_y = -3
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_stern)
"vrI" = (
/obj/structure/machinery/cryopod{
layer = 3.1;
@@ -74576,10 +74164,19 @@
icon_state = "bluecorner"
},
/area/almayer/living/briefing)
-"vsa" = (
-/obj/structure/barricade/handrail,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_stern)
+"vrZ" = (
+/obj/structure/largecrate/machine/bodyscanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"vsd" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"vse" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -74589,10 +74186,32 @@
icon_state = "cargo"
},
/area/almayer/living/offices)
+"vsf" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/door_control{
+ id = "laddernortheast";
+ name = "North East Ladders Shutters";
+ pixel_y = -25;
+ req_one_access_txt = "2;3;12;19";
+ throw_range = 15
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"vsh" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/lifeboat)
+"vsi" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/stern)
"vsz" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -74653,19 +74272,6 @@
icon_state = "rasputin3"
},
/area/almayer/powered/agent)
-"vts" = (
-/obj/item/reagent_container/glass/bucket{
- pixel_x = 4;
- pixel_y = 9
- },
-/obj/item/tool/shovel/spade{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"vtx" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Bathroom"
@@ -74674,20 +74280,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/upper_medical)
-"vtB" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 8;
- id = "laddersoutheast";
- name = "\improper South East Ladders Shutters"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/port_hallway)
"vtD" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 26
@@ -74705,23 +74297,12 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/perma)
-"vtH" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
-"vtL" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
-"vtZ" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
+"vtJ" = (
+/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/l_f_s)
"vub" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/sea_office)
@@ -74730,27 +74311,6 @@
/obj/effect/landmark/late_join/alpha,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/alpha)
-"vuw" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{
- access_modified = 1;
- dir = 2;
- name = "\improper Requisitions Break Room";
- req_one_access_txt = "19;21"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/squads/req)
"vuA" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -74764,6 +74324,16 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"vuE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"vuF" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
access_modified = 1;
@@ -74797,6 +74367,15 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
+"vuV" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_aft_hallway)
"vuZ" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -74806,10 +74385,6 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/weapon_room)
-"vvj" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
"vvp" = (
/obj/structure/pipes/vents/pump,
/obj/structure/sign/safety/intercom{
@@ -74855,6 +74430,26 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
+"vvH" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"vvX" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 2;
+ id = "OuterShutter";
+ name = "\improper Saferoom Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/panic)
"vvY" = (
/obj/structure/sink{
dir = 1;
@@ -74909,44 +74504,16 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
"vwJ" = (
-/obj/structure/machinery/shower{
- pixel_y = 16
- },
-/obj/item/tool/soap,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
-"vwP" = (
-/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,
+/obj/structure/largecrate/random/case/double,
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
- dir = 6;
- icon_state = "silver"
+ icon_state = "plate"
},
-/area/almayer/hallways/repair_bay)
+/area/almayer/maint/hull/upper/u_m_p)
"vwU" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- dir = 8;
- req_one_access = list(2,34,30)
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/lower/l_m_s)
+/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
@@ -75009,6 +74576,17 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
+"vxY" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"vyg" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/secure_data,
@@ -75016,6 +74594,14 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"vyh" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"vyi" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -75037,6 +74623,12 @@
icon_state = "cargo"
},
/area/almayer/living/offices)
+"vyr" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"vyu" = (
/obj/structure/bed/sofa/south/white/right,
/turf/open/floor/almayer{
@@ -75044,6 +74636,9 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
+"vyB" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/vehiclehangar)
"vyH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -75053,22 +74648,13 @@
"vyI" = (
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/port)
-"vyS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 4;
- pixel_y = -3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
-"vyZ" = (
-/obj/structure/largecrate/guns/merc{
- name = "\improper dodgy crate"
+"vzi" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 3
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"vzj" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 8
@@ -75089,19 +74675,6 @@
"vzp" = (
/turf/open/floor/almayer/research/containment/entrance,
/area/almayer/medical/containment/cell/cl)
-"vzq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 3
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
-"vzu" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
"vzz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
@@ -75111,9 +74684,24 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
+"vzB" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"vzK" = (
/turf/open/floor/almayer,
/area/almayer/engineering/ce_room)
+"vzO" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_one_access = null;
+ req_one_access_txt = "2;30;34"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_m_s)
"vzP" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/cups,
@@ -75133,6 +74721,17 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"vAg" = (
+/obj/structure/largecrate/random/barrel/blue,
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"vAq" = (
/obj/structure/bed/chair{
dir = 1
@@ -75142,24 +74741,20 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
-"vAu" = (
-/obj/structure/sign/safety/life_support{
- pixel_x = 8;
- pixel_y = 32
+"vAx" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"vAw" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/lower/constr)
-"vAB" = (
-/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/area/almayer/maint/hull/lower/l_m_p)
+"vAz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/maint/hull/lower/s_bow)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"vAE" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -75214,12 +74809,6 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
-"vBa" = (
-/obj/structure/bed/chair/comfy/orange,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"vBm" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/main_office)
@@ -75235,6 +74824,10 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
+"vBC" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"vBJ" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/pen,
@@ -75295,19 +74888,10 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"vCB" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "plating_striped"
- },
-/area/almayer/maint/hull/lower/l_a_p)
+"vCE" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"vCO" = (
/obj/effect/landmark/start/bridge,
/turf/open/floor/plating/plating_catwalk,
@@ -75320,28 +74904,53 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/hydroponics)
-"vDk" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+"vDh" = (
+/obj/structure/largecrate/random,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/area/almayer/maint/hull/upper/s_bow)
+"vDo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
+"vDt" = (
+/obj/item/stool,
+/obj/effect/landmark/yautja_teleport,
/turf/open/floor/almayer{
icon_state = "plate"
},
+/area/almayer/maint/upper/u_m_s)
+"vDz" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
+"vDN" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_p)
-"vDZ" = (
+"vDR" = (
/obj/structure/surface/rack,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/powercell,
-/obj/effect/spawner/random/powercell,
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign,
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/maint/hull/upper/u_a_p)
"vEf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -75357,10 +74966,6 @@
/obj/effect/landmark/start/synthetic,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/synthcloset)
-"vEq" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
"vEr" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -75372,20 +74977,15 @@
},
/area/almayer/medical/medical_science)
"vEv" = (
-/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/machinery/door/poddoor/shutters/almayer{
+ id = "laddernorthwest";
+ name = "\improper North West Ladders Shutters"
},
+/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"vEx" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -75409,17 +75009,10 @@
/obj/structure/machinery/vending/coffee,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"vEQ" = (
-/obj/structure/surface/rack,
-/obj/item/tool/shovel/etool{
- pixel_x = 6
- },
-/obj/item/tool/shovel/etool,
-/obj/item/tool/wirecutters,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
+"vEI" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"vEV" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -75437,10 +75030,15 @@
icon_state = "plating"
},
/area/almayer/shipboard/stern_point_defense)
-"vFr" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
+"vFp" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"vFv" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
@@ -75456,41 +75054,38 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
-"vFB" = (
+"vFy" = (
/obj/effect/decal/warning_stripes{
- icon_state = "S"
+ icon_state = "NW-out"
},
-/obj/structure/machinery/light/small{
- dir = 1
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 8;
+ icon_state = "green"
},
-/area/almayer/maint/hull/upper/p_bow)
+/area/almayer/hallways/upper/aft_hallway)
"vFH" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"vFS" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/radio/intercom/normandy{
- layer = 3.5
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
+"vFI" = (
+/obj/structure/largecrate/random/secure,
+/obj/item/weapon/baseballbat/metal{
+ pixel_x = -2;
+ pixel_y = 8
},
-/area/almayer/living/offices/flight)
-"vGw" = (
-/obj/structure/largecrate/random/barrel/red,
-/obj/structure/machinery/light/small{
- dir = 8
+/obj/item/clothing/glasses/sunglasses{
+ pixel_y = 5
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/maint/hull/lower/l_f_p)
"vGA" = (
/obj/structure/bed/sofa/south/grey/right,
/turf/open/floor/almayer{
@@ -75498,14 +75093,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"vGC" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"vGG" = (
/obj/structure/bed/chair/comfy/bravo,
/turf/open/floor/almayer{
@@ -75521,13 +75108,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/numbertwobunks)
-"vGV" = (
-/obj/structure/largecrate/supply,
-/obj/item/tool/crowbar,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/upper/u_f_p)
"vHa" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/ares_console{
@@ -75550,6 +75130,33 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
+"vHn" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/u_m_s)
+"vHp" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_x = 9;
+ pixel_y = 3
+ },
+/obj/item/prop/helmetgarb/flair_io{
+ pixel_x = -10;
+ pixel_y = 6
+ },
+/obj/item/prop/magazine/boots/n160{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/obj/structure/transmitter/rotary{
+ name = "Flight Deck Telephone";
+ phone_category = "Almayer";
+ phone_id = "Flight Deck";
+ pixel_y = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/repair_bay)
"vHq" = (
/obj/item/device/assembly/mousetrap/armed,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -75567,13 +75174,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
-"vHs" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 2
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
"vHt" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/door_control{
@@ -75654,15 +75254,6 @@
icon_state = "redfull"
},
/area/almayer/command/cic)
-"vHZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"vIf" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
@@ -75672,43 +75263,26 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"vIm" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
+"vIg" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
+"vIr" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"vIu" = (
/obj/structure/machinery/light{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/command/cichallway)
-"vIE" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
-"vIN" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/intercom{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"vJg" = (
/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
@@ -75726,32 +75300,10 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"vJq" = (
-/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"vJJ" = (
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
- },
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
- },
+"vJR" = (
+/obj/structure/barricade/handrail,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_s)
-"vJO" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/hull/lower/l_f_s)
+/area/almayer/maint/hull/upper/p_stern)
"vJV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75794,16 +75346,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"vKo" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
"vKB" = (
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle,
/obj/structure/machinery/light/small{
@@ -75811,59 +75353,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"vKF" = (
-/obj/structure/stairs{
- dir = 8;
- icon_state = "ramptop"
- },
+"vKI" = (
/obj/structure/machinery/light{
dir = 1
},
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/aft_hallway)
-"vKG" = (
-/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{
- dir = 8;
- icon_state = "sterile_green_corner"
- },
-/area/almayer/medical/lower_medical_medbay)
-"vKU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
-"vLd" = (
-/obj/structure/surface/table/almayer,
-/obj/item/organ/lungs/prosthetic,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"vLg" = (
/obj/item/trash/uscm_mre,
/obj/structure/bed/chair/comfy/charlie,
@@ -75886,6 +75381,15 @@
icon_state = "test_floor4"
},
/area/almayer/medical/upper_medical)
+"vLp" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"vLA" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -75900,23 +75404,13 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie)
-"vLO" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
-"vLX" = (
-/obj/item/robot_parts/arm/l_arm,
-/obj/item/robot_parts/leg/l_leg,
-/obj/item/robot_parts/arm/r_arm,
-/obj/item/robot_parts/leg/r_leg,
-/obj/structure/surface/rack,
-/obj/effect/decal/cleanable/cobweb{
- dir = 8
+"vMb" = (
+/obj/item/stool{
+ pixel_x = -15;
+ pixel_y = 6
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/synthcloset)
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"vMo" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/operating_room_four)
@@ -75924,32 +75418,15 @@
/obj/effect/landmark/start/otech,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/offices)
-"vMv" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"vMw" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
+"vMA" = (
+/obj/structure/machinery/firealarm{
pixel_y = 28
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
-"vMx" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
+/obj/structure/machinery/light{
+ dir = 1
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/lower/port_midship_hallway)
"vME" = (
/turf/open/floor/almayer{
dir = 9;
@@ -75989,6 +75466,20 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"vMQ" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_m_p)
+"vMU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"vNp" = (
/obj/structure/sign/safety/three{
pixel_x = -17
@@ -76011,26 +75502,34 @@
dir = 9
},
/area/almayer/command/cic)
-"vOb" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/mess)
"vOh" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north2)
+"vOw" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/toolbox,
+/obj/effect/spawner/random/tool,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"vOy" = (
/turf/closed/wall/almayer/white/reinforced,
/area/almayer/medical/medical_science)
-"vOK" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"vOG" = (
+/obj/structure/largecrate/supply/ammo/m41a/half,
+/obj/structure/largecrate/supply/ammo/pistol/half{
+ pixel_y = 12
},
-/area/almayer/maint/hull/lower/l_m_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/p_bow)
+"vOM" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"vON" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -76049,6 +75548,38 @@
icon_state = "test_floor4"
},
/area/almayer/medical/upper_medical)
+"vOV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_umbilical)
+"vOY" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "2;7"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/mess)
+"vOZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"vPf" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -76122,6 +75653,15 @@
icon_state = "redfull"
},
/area/almayer/engineering/lower/workshop/hangar)
+"vPW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/vehiclehangar)
"vQe" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down2";
@@ -76191,22 +75731,16 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"vRF" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/kitchen/tray,
-/obj/item/tool/kitchen/tray{
- pixel_y = 6
- },
-/obj/item/reagent_container/food/snacks/sliceable/bread{
- pixel_y = 8
- },
-/obj/item/tool/kitchen/knife{
- pixel_x = 6
+"vRJ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ name = "\improper Emergency Air Storage"
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/u_a_s)
"vRR" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -76220,12 +75754,6 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"vRW" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_a_p)
"vRX" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/medical_diagnostics_manual,
@@ -76261,6 +75789,21 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"vSr" = (
+/obj/structure/largecrate/random/case/double,
+/obj/item/tool/wet_sign{
+ pixel_y = 18
+ },
+/obj/item/trash/cigbutt/ucigbutt{
+ desc = "A handful of rounds to reload on the go.";
+ icon = 'icons/obj/items/weapons/guns/handful.dmi';
+ icon_state = "bullet_2";
+ name = "handful of pistol bullets (9mm)";
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
"vSE" = (
/obj/structure/closet/secure_closet/personal,
/turf/open/floor/almayer{
@@ -76326,6 +75869,13 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
+"vTM" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/toolbox,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"vTS" = (
/obj/structure/machinery/light{
pixel_x = 16
@@ -76356,6 +75906,16 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"vTX" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/manualopenclose{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"vUb" = (
/obj/effect/landmark/start/marine/alpha,
/obj/effect/landmark/late_join/alpha,
@@ -76375,46 +75935,33 @@
/obj/structure/machinery/light,
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"vUs" = (
-/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"
+"vUJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/area/almayer/maint/lower/constr)
-"vUP" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/shipboard/brig/cic_hallway)
-"vUU" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
},
-/obj/structure/sign/safety/three{
- pixel_x = 31;
- pixel_y = -8
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/sign/safety/ammunition{
- pixel_x = 32;
- pixel_y = 7
+/area/almayer/maint/hull/lower/l_a_p)
+"vUO" = (
+/obj/structure/machinery/light{
+ dir = 8
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "emerald"
- },
-/area/almayer/hallways/port_hallway)
-"vUW" = (
-/obj/item/weapon/dart/green,
-/obj/structure/dartboard{
- pixel_y = 32
+ dir = 8;
+ icon_state = "green"
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/area/almayer/hallways/upper/aft_hallway)
+"vUP" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/shipboard/brig/cic_hallway)
"vVb" = (
/obj/structure/machinery/cm_vending/gear/tl{
density = 0;
@@ -76450,12 +75997,14 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/port)
-"vVD" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"vVy" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
},
-/area/almayer/maint/hull/lower/l_m_s)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"vVI" = (
/obj/structure/sign/safety/nonpress_0g{
pixel_x = 8;
@@ -76475,29 +76024,40 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"vWa" = (
-/obj/structure/mirror{
- pixel_x = 28
+"vVY" = (
+/turf/open/floor/plating,
+/area/almayer/maint/hull/upper/u_m_s)
+"vVZ" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
},
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
+/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{
- icon_state = "dark_sterile"
+ icon_state = "redfull"
},
-/area/almayer/maint/hull/upper/u_a_s)
-"vWb" = (
-/obj/structure/machinery/cryopod{
- pixel_y = 6
+/area/almayer/living/offices/flight)
+"vWs" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/sign/safety/fire_haz{
+ pixel_x = 8;
+ pixel_y = -32
},
/turf/open/floor/almayer{
- icon_state = "cargo"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_p)
+/area/almayer/hallways/lower/vehiclehangar)
"vWt" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/beaker/large,
@@ -76623,6 +76183,12 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"vXk" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"vXo" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -76633,24 +76199,33 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower)
-"vXr" = (
+"vXv" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "pottedplant_10";
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"vXF" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- layer = 2.5;
+ icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
-"vYi" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"vYk" = (
-/obj/structure/window/framed/almayer/hull,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/hallways/lower/port_umbilical)
+"vYd" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/vehiclehangar)
"vYm" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
@@ -76755,12 +76330,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"waa" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"wac" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 80
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_p)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"wan" = (
/obj/structure/surface/table/almayer,
/obj/item/facepaint/brown,
@@ -76769,29 +76347,11 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"wax" = (
-/obj/item/reagent_container/glass/bucket,
-/obj/item/tool/mop{
- pixel_x = -6;
- pixel_y = 24
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
"waD" = (
/turf/open/floor/almayer{
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_one)
-"waG" = (
-/obj/structure/surface/rack,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"waJ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -76801,37 +76361,17 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"waS" = (
-/obj/structure/prop/invuln/lattice_prop{
- dir = 1;
- icon_state = "lattice-simple";
- pixel_x = 16;
- pixel_y = -16
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
-"waY" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
-"wbh" = (
-/obj/structure/machinery/light{
- dir = 4
+"waV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
+ dir = 8;
+ icon_state = "red"
},
-/area/almayer/hallways/starboard_hallway)
-"wbm" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/hallways/upper/aft_hallway)
"wbu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname/almayer{
@@ -76842,6 +76382,18 @@
icon_state = "mono"
},
/area/almayer/living/pilotbunks)
+"wby" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
+ dir = 1;
+ name = "\improper Starboard Viewing Room"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_f_s)
"wbC" = (
/obj/structure/machinery/atm{
pixel_y = 32
@@ -76895,15 +76447,15 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/operating_room_four)
-"wbT" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
+"wbV" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "red"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/living/cryo_cells)
"wbX" = (
/obj/structure/closet/secure_closet/cmdcabinet{
pixel_y = 24
@@ -76923,12 +76475,6 @@
icon_state = "redfull"
},
/area/almayer/lifeboat_pumps/south2)
-"wcs" = (
-/obj/structure/largecrate/random/secure,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
"wct" = (
/obj/structure/closet/radiation,
/turf/open/floor/almayer{
@@ -76936,19 +76482,20 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"wcx" = (
-/obj/structure/sign/safety/ammunition{
- pixel_x = 15;
- pixel_y = 32
+"wcD" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
},
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
+/area/almayer/hallways/lower/port_midship_hallway)
+"wcJ" = (
+/obj/structure/machinery/light/small{
+ dir = 4
},
-/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun,
/turf/open/floor/almayer{
- icon_state = "redfull"
+ icon_state = "plate"
},
-/area/almayer/shipboard/panic)
+/area/almayer/maint/hull/lower/s_bow)
"wcN" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -76971,16 +76518,6 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"wdb" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/sign/safety/stairs{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
"wdf" = (
/obj/structure/bed/chair{
dir = 1
@@ -77038,14 +76575,19 @@
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"wdA" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/stairs)
"wdF" = (
/turf/open/floor/almayer{
allow_construction = 0
},
/area/almayer/shipboard/brig/processing)
+"wdG" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"wdI" = (
/turf/open/floor/almayer{
dir = 1;
@@ -77060,15 +76602,18 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
-"wdN" = (
-/obj/structure/machinery/light{
- dir = 8
+"wdQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
},
-/obj/structure/machinery/power/reactor,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_umbilical)
+"wdW" = (
+/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/engineering/lower/engine_core)
+/area/almayer/maint/hull/lower/l_m_p)
"wed" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/belt/utility/full,
@@ -77095,6 +76640,24 @@
icon_state = "test_floor4"
},
/area/almayer/medical/hydroponics)
+"wer" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"wes" = (
+/obj/structure/machinery/cm_vending/sorted/medical/marinemed,
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"wex" = (
/obj/structure/sign/safety/bathunisex{
pixel_x = 8;
@@ -77127,25 +76690,6 @@
icon_state = "cargo"
},
/area/almayer/living/offices)
-"weW" = (
-/obj/effect/landmark/start/doctor,
-/obj/structure/sign/safety/maint{
- pixel_y = 26
- },
-/obj/effect/landmark/late_join/doctor,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/offices)
-"wfd" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
- },
-/obj/structure/machinery/door/airlock/almayer/maint/reinforced,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/p_bow)
"wfn" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer{
@@ -77182,13 +76726,6 @@
"wfE" = (
/turf/closed/wall/almayer,
/area/almayer/living/gym)
-"wfG" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"wfZ" = (
/obj/structure/desertdam/decals/road_edge{
pixel_x = -12
@@ -77211,14 +76748,6 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
-"wgd" = (
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"wgf" = (
/obj/structure/sign/safety/nonpress_0g{
pixel_x = 32
@@ -77244,12 +76773,13 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"wgw" = (
-/obj/structure/largecrate/supply/supplies/mre,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"wgO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/maint/hull/lower/l_m_s)
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_p)
"wgR" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
@@ -77260,23 +76790,14 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
-"whr" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- dir = 2;
- req_one_access = null;
- req_one_access_txt = "19;34;30"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"whm" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
},
-/area/almayer/maint/hull/upper/u_m_p)
-"whv" = (
-/obj/structure/bed/sofa/south/grey/left,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_f_p)
+/area/almayer/maint/hull/lower/l_m_s)
"whA" = (
/turf/open/floor/almayer/uscm/directional,
/area/almayer/living/briefing)
@@ -77295,15 +76816,9 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"whX" = (
-/obj/structure/sign/safety/intercom{
- pixel_x = 32;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
+"wid" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/p_bow)
"wiz" = (
/obj/structure/bed/chair{
dir = 4
@@ -77345,6 +76860,27 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"wiO" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldingtool,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"wiQ" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "vehicle1door";
+ name = "Vehicle Bay One"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"wiW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -77401,9 +76937,38 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/starboard)
-"wjN" = (
-/turf/closed/wall/almayer/reinforced,
-/area/almayer/maint/hull/lower/s_bow)
+"wjL" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"wjP" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"wjQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -14;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/mess)
"wjY" = (
/obj/structure/closet/secure_closet/warrant_officer,
/turf/open/floor/wood/ship,
@@ -77431,10 +76996,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lockerroom)
-"wkw" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
"wky" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -77464,13 +77025,6 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
-"wkJ" = (
-/obj/structure/surface/rack,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
"wkM" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "ARES StairsLower";
@@ -77495,15 +77049,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"wkP" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/weldingtool{
- pixel_x = 6;
- pixel_y = -16
- },
-/obj/item/clothing/head/welding,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"wkX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -77541,9 +77086,32 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/execution)
-"wli" = (
+"wlh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
+/area/almayer/squads/req)
+"wlB" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
+"wlD" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_umbilical)
"wlE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -77570,12 +77138,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"wlQ" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"wmg" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -77593,6 +77155,12 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"wmH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"wmK" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
@@ -77651,11 +77219,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"wnQ" = (
-/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
"wnY" = (
/obj/item/tool/crowbar/red,
/obj/structure/disposalpipe/segment{
@@ -77692,21 +77255,9 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"woQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
- },
-/obj/structure/prop/invuln/lattice_prop{
- dir = 1;
- icon_state = "lattice-simple";
- pixel_x = 16;
- pixel_y = -15
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
+"woU" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/u_m_p)
"wpg" = (
/obj/structure/machinery/blackbox_recorder,
/turf/open/shuttle/dropship{
@@ -77723,6 +77274,20 @@
},
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
+"wpu" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/device/flashlight/lamp{
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/science{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/device/flash,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
"wpw" = (
/obj/structure/bed/chair/comfy/ares{
dir = 1
@@ -77762,6 +77327,12 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"wpT" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"wqc" = (
/obj/structure/sign/poster{
pixel_y = 32
@@ -77780,12 +77351,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"wqq" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
"wqr" = (
/obj/structure/sign/safety/terminal{
pixel_x = 7;
@@ -77796,18 +77361,15 @@
icon_state = "plate"
},
/area/almayer/command/combat_correspondent)
-"wqA" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
+"wqO" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/hallways/aft_hallway)
-"wqU" = (
-/turf/open/floor/plating,
-/area/almayer/maint/hull/upper/u_m_p)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"wqW" = (
/obj/structure/closet/secure_closet/CMO,
/obj/structure/machinery/light{
@@ -77818,27 +77380,55 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/upper_medical)
-"wqX" = (
-/obj/structure/surface/rack,
+"wra" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
-"wri" = (
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = -32
+"wrr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/structure/machinery/door_control/railings{
+ pixel_y = 24
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "plating"
},
-/area/almayer/maint/hull/lower/stern)
+/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,
/area/almayer/living/gym)
+"wrN" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/obj/structure/sign/safety/stairs{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"wrQ" = (
/obj/structure/sign/safety/storage{
pixel_x = 8;
@@ -77895,25 +77485,23 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
-"wst" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
"wsw" = (
-/obj/structure/machinery/vending/cola{
- density = 0;
- pixel_y = 18
+/obj/structure/machinery/light/small{
+ dir = 1
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/stern)
+"wsz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
"wsD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -77926,6 +77514,36 @@
icon_state = "test_floor4"
},
/area/almayer/squads/bravo)
+"wsS" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"wtk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
+"wtn" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/item/storage/firstaid{
+ pixel_x = -13;
+ pixel_y = 13
+ },
+/obj/item/clipboard,
+/obj/item/paper,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_s)
"wty" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -77935,6 +77553,14 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/delta)
+"wtD" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass{
+ name = "Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/p_bow)
"wtM" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -77960,6 +77586,14 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/chief_mp_office)
+"wub" = (
+/obj/structure/pipes/vents/pump{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
"wuc" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass{
name = "\improper Brig Medbay";
@@ -77985,6 +77619,26 @@
icon_state = "orangefull"
},
/area/almayer/engineering/lower/workshop)
+"wuh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"wup" = (
/obj/structure/supply_drop/echo,
/turf/open/floor/almayer,
@@ -78007,31 +77661,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
-"wuP" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -16;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
-"wuR" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_p)
"wuT" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -78064,10 +77693,6 @@
/obj/structure/filingcabinet,
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"wvt" = (
-/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
"wvE" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/almayer_network{
@@ -78112,15 +77737,18 @@
icon_state = "cargo"
},
/area/almayer/squads/charlie)
-"wwu" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
+"wwv" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"wwE" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"wwJ" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
@@ -78129,14 +77757,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"wwV" = (
-/obj/structure/sign/safety/storage{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"wwW" = (
/obj/structure/machinery/camera/autoname/almayer/containment/hidden{
dir = 8;
@@ -78168,15 +77788,11 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"wxn" = (
+"wxp" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/mess)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"wxq" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -78185,6 +77801,20 @@
icon_state = "plate"
},
/area/almayer/medical/lower_medical_medbay)
+"wxu" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
+"wxy" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/p_stern)
+"wxD" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
"wxU" = (
/obj/item/ashtray/bronze{
pixel_x = 7;
@@ -78219,6 +77849,32 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
+"wyz" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"wyE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"wyG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"wyQ" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/door_control{
@@ -78231,23 +77887,46 @@
icon_state = "plating"
},
/area/almayer/command/airoom)
-"wzC" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
+"wzy" = (
+/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
-"wAR" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/area/almayer/hallways/lower/port_fore_hallway)
+"wzJ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
+"wzL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/machinery/light,
/turf/open/floor/almayer{
- dir = 4;
+ dir = 8;
icon_state = "green"
},
-/area/almayer/hallways/port_hallway)
+/area/almayer/hallways/upper/aft_hallway)
+"wzZ" = (
+/obj/structure/machinery/door/airlock/almayer/medical/glass{
+ dir = 1;
+ id = "medcryobeds";
+ id_tag = "medcryobeds";
+ name = "Medical Wheelchair Storage";
+ req_access = null;
+ req_one_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"wAK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_umbilical)
"wBd" = (
/obj/structure/machinery/status_display{
pixel_x = 32
@@ -78262,22 +77941,16 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/lobby)
-"wBl" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 8
+"wBw" = (
+/obj/structure/pipes/vents/pump,
+/obj/structure/machinery/status_display{
+ pixel_y = 30
},
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/shipboard/panic)
-"wBy" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
+ dir = 1;
+ icon_state = "green"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"wBI" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/sign/safety/maint{
@@ -78301,12 +77974,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"wCF" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"wCI" = (
/turf/open/floor/almayer{
dir = 4;
@@ -78339,6 +78006,25 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
+"wDp" = (
+/obj/structure/machinery/photocopier,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/shipboard/brig/main_office)
+"wDq" = (
+/obj/structure/largecrate/random/case/small,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"wDr" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/lower/stairs)
"wDs" = (
/obj/structure/machinery/seed_extractor,
/obj/structure/sign/safety/terminal{
@@ -78376,6 +78062,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
+"wDG" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"wDH" = (
/obj/structure/morgue,
/obj/structure/machinery/light{
@@ -78403,6 +78098,14 @@
"wDM" = (
/turf/closed/wall/almayer/reinforced/temphull,
/area/almayer/engineering/upper_engineering)
+"wDP" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"wEd" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -78427,23 +78130,6 @@
icon_state = "rasputin3"
},
/area/almayer/powered/agent)
-"wEp" = (
-/obj/structure/bookcase/manuals/medical,
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_f_s)
-"wEA" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_p)
"wEI" = (
/obj/structure/surface/table/reinforced/black,
/obj/item/tool/pen,
@@ -78457,6 +78143,12 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/port)
+"wEK" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"wEO" = (
/obj/structure/platform_decoration{
dir = 4
@@ -78499,21 +78191,34 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"wFG" = (
-/obj/effect/landmark/yautja_teleport,
+"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{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
+/area/almayer/shipboard/panic)
"wFR" = (
/turf/open/floor/almayer,
/area/almayer/living/gym)
-"wGa" = (
-/obj/structure/machinery/light/small{
- dir = 1
+"wFX" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/hull/upper/u_a_s)
+"wGa" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"wGb" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
@@ -78529,14 +78234,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"wGA" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
+"wGe" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/lower/l_f_p)
"wGE" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/marine/leader/delta,
@@ -78569,6 +78272,13 @@
icon_state = "emerald"
},
/area/almayer/living/port_emb)
+"wHn" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"wHo" = (
/turf/open/floor/almayer{
icon_state = "emerald"
@@ -78592,13 +78302,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"wIg" = (
-/obj/structure/disposalpipe/segment{
- layer = 5.1;
- name = "water pipe"
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"wIr" = (
/obj/structure/machinery/cm_vending/clothing/senior_officer{
req_access = list();
@@ -78612,12 +78315,12 @@
icon_state = "cargo"
},
/area/almayer/squads/req)
-"wIz" = (
-/obj/structure/largecrate/random/case/small,
+"wIu" = (
+/obj/structure/largecrate/random/case,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/s_stern)
+/area/almayer/maint/hull/upper/u_a_s)
"wIC" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/chief_mp_office)
@@ -78648,9 +78351,29 @@
icon_state = "silvercorner"
},
/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{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"wJb" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/lower_medical_medbay)
+"wJd" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"wJh" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -78670,22 +78393,16 @@
icon_state = "test_floor4"
},
/area/almayer/medical/upper_medical)
-"wJw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/machinery/computer/supplycomp/vehicle,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/vehiclehangar)
"wJB" = (
/obj/structure/machinery/cryopod/right,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/command/airoom)
+"wJC" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"wJD" = (
/obj/structure/bed/chair{
dir = 8;
@@ -78707,27 +78424,23 @@
"wJH" = (
/turf/closed/wall/almayer/research/containment/wall/east,
/area/almayer/medical/containment/cell/cl)
-"wJS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
-"wJT" = (
+"wKb" = (
/obj/structure/bed/chair{
- dir = 4
+ dir = 8
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"wKe" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_f_s)
+"wKm" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "green"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/hallways/lower/port_aft_hallway)
"wKF" = (
/obj/structure/machinery/power/apc/almayer{
cell_type = /obj/item/cell/hyper;
@@ -78746,6 +78459,15 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
+"wKN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_fore_hallway)
"wKP" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -78838,20 +78560,6 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"wLM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/supply/weapons/m39{
- pixel_x = 2
- },
-/obj/structure/largecrate/supply/weapons/m41a{
- layer = 3.1;
- pixel_x = 6;
- pixel_y = 17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"wLN" = (
/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{
dir = 8
@@ -78860,6 +78568,24 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
+"wMl" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/two{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"wMv" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -78868,6 +78594,21 @@
icon_state = "dark_sterile"
},
/area/almayer/living/auxiliary_officer_office)
+"wMB" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor5"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"wMF" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"wMG" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -78876,6 +78617,17 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha)
+"wMI" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"wMO" = (
/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
dir = 4
@@ -78915,12 +78667,27 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/processing)
-"wNN" = (
-/obj/structure/platform,
+"wNz" = (
+/obj/structure/stairs,
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"wNG" = (
+/obj/effect/projector{
+ name = "Almayer_Up2";
+ vector_x = -1;
+ vector_y = 100
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ allow_construction = 0
},
-/area/almayer/maint/hull/upper/u_a_s)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"wNS" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -78933,19 +78700,18 @@
/obj/structure/platform,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"wOh" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
"wOt" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/starboard)
+"wOv" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"wOK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -78955,6 +78721,18 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"wPa" = (
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/item/reagent_container/glass/rag,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"wPf" = (
/obj/structure/sign/safety/reception{
pixel_x = 32;
@@ -78964,6 +78742,27 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"wPi" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
+"wPm" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"wPz" = (
/turf/open/floor/almayer{
icon_state = "mono"
@@ -78990,12 +78789,26 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
-"wQg" = (
+"wPR" = (
+/obj/structure/closet,
+/obj/item/clothing/under/marine,
+/obj/item/clothing/suit/storage/marine,
+/obj/item/clothing/head/helmet/marine,
+/obj/item/clothing/head/beret/cm,
+/obj/item/clothing/head/beret/cm,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
+"wQu" = (
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
+ allow_construction = 0;
+ icon_state = "plate"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/lower/port_fore_hallway)
"wQA" = (
/obj/structure/pipes/standard/simple/visible{
dir = 5
@@ -79009,27 +78822,19 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
-"wQM" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"wRf" = (
+/obj/structure/machinery/light/small,
+/obj/structure/sign/safety/nonpress_0g{
+ pixel_x = 15;
+ pixel_y = -32
},
-/area/almayer/maint/hull/upper/u_m_p)
-"wQV" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/obj/structure/sign/safety/press_area_ag{
+ pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
-"wRn" = (
-/obj/structure/surface/rack,
-/obj/item/tool/crowbar,
-/obj/item/tool/weldingtool,
-/obj/item/tool/wrench,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/hallways/lower/port_umbilical)
"wRN" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/seeds/goldappleseed,
@@ -79069,15 +78874,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"wSk" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/stern_hallway)
"wSm" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -79102,6 +78898,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/lobby)
+"wSx" = (
+/obj/structure/platform_decoration,
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"wSK" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
@@ -79109,6 +78914,12 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/execution)
+"wSQ" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"wSR" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -79148,10 +78959,6 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
-"wTe" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_s)
"wTg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -79169,6 +78976,23 @@
icon_state = "red"
},
/area/almayer/living/briefing)
+"wTn" = (
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
+"wTu" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/extinguisher,
+/obj/item/tool/extinguisher,
+/obj/item/tool/crowbar,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/mess)
"wTw" = (
/obj/structure/machinery/cm_vending/sorted/attachments/squad{
req_access = null;
@@ -79186,6 +79010,20 @@
icon_state = "test_floor4"
},
/area/almayer/lifeboat_pumps/south1)
+"wTB" = (
+/obj/structure/surface/table/almayer,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/lower/engine_core)
"wTJ" = (
/obj/structure/barricade/handrail,
/obj/structure/barricade/handrail{
@@ -79205,10 +79043,6 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
-"wUc" = (
-/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
"wUd" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/gloves{
@@ -79218,16 +79052,12 @@
/obj/item/storage/fancy/candle_box,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/morgue)
-"wUz" = (
-/obj/structure/sign/safety/life_support{
- pixel_x = 8;
- pixel_y = 32
+"wUJ" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
-"wUB" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/hull/upper/p_stern)
+/area/almayer/maint/hull/upper/u_m_p)
"wUK" = (
/turf/open/floor/almayer{
dir = 8;
@@ -79263,6 +79093,13 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"wVm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
"wVt" = (
/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/plating/plating_catwalk,
@@ -79309,13 +79146,14 @@
icon_state = "bluefull"
},
/area/almayer/living/bridgebunks)
-"wVU" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/sign/safety/cryo{
- pixel_x = 36
+"wVN" = (
+/obj/item/roller,
+/obj/structure/surface/rack,
+/obj/item/roller,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/lower/cryo_cells)
+/area/almayer/shipboard/panic)
"wVW" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/command/cic)
@@ -79323,12 +79161,6 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/living/chapel)
-"wWk" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
"wWl" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/general_air_control/large_tank_control{
@@ -79350,6 +79182,14 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/port)
+"wWt" = (
+/obj/effect/projector{
+ name = "Almayer_Up1";
+ vector_x = -19;
+ vector_y = 98
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"wWz" = (
/turf/closed/wall/almayer/research/containment/wall/north,
/area/almayer/medical/containment/cell)
@@ -79359,10 +79199,6 @@
icon_state = "blue"
},
/area/almayer/living/pilotbunks)
-"wWD" = (
-/obj/docking_port/stationary/escape_pod/south,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_p)
"wWP" = (
/obj/structure/prop/cash_register/broken,
/obj/structure/machinery/light/small,
@@ -79370,12 +79206,6 @@
icon_state = "test_floor5"
},
/area/almayer/squads/req)
-"wWQ" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = -25
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
"wWR" = (
/obj/structure/machinery/medical_pod/bodyscanner{
dir = 8
@@ -79392,17 +79222,6 @@
/obj/effect/landmark/late_join/delta,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/delta)
-"wXb" = (
-/obj/structure/machinery/light/small,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"wXh" = (
/obj/structure/machinery/floodlight/landing{
name = "bolted floodlight"
@@ -79411,6 +79230,12 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
+"wXl" = (
+/obj/structure/platform,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"wXH" = (
/obj/structure/bed/chair{
dir = 1
@@ -79423,15 +79248,12 @@
icon_state = "greencorner"
},
/area/almayer/living/grunt_rnr)
-"wXS" = (
-/obj/structure/platform_decoration,
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
- },
+"wXJ" = (
+/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/upper/u_a_s)
"wXT" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
name = "\improper Engineering Storage"
@@ -79446,11 +79268,29 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
+"wYd" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
+"wYr" = (
+/obj/structure/machinery/gel_refiller,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"wYA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
+"wYG" = (
+/obj/structure/largecrate/random/barrel/white,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"wYK" = (
/obj/structure/barricade/handrail/medical,
/turf/open/floor/almayer{
@@ -79480,9 +79320,30 @@
},
/turf/open/floor/plating,
/area/almayer/engineering/ce_room)
-"wZa" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/maint/hull/lower/l_f_s)
+"wZk" = (
+/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{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"wZp" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/stern_hallway)
"wZv" = (
/obj/structure/prop/invuln{
desc = "An inflated membrane. This one is puncture proof. Wow!";
@@ -79496,15 +79357,6 @@
icon_state = "outerhull_dir"
},
/area/almayer/engineering/upper_engineering/port)
-"wZD" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_a_s)
"wZE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/book/manual/surgery,
@@ -79520,14 +79372,6 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/perma)
-"wZM" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/aft_hallway)
"wZN" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
@@ -79557,6 +79401,12 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
+"xas" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_bow)
"xaC" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/kitchen/utensil/pfork{
@@ -79622,35 +79472,24 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"xbg" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
"xbk" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/living/gym)
-"xbG" = (
-/obj/structure/surface/rack,
-/obj/effect/decal/cleanable/cobweb{
- dir = 8;
- plane = -6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_container/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
- },
-/obj/item/reagent_container/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
- },
-/obj/item/reagent_container/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
+"xbI" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
},
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "sterile_green_corner"
+ icon_state = "plate"
},
-/area/almayer/medical/lower_medical_medbay)
+/area/almayer/maint/hull/lower/l_m_s)
"xbN" = (
/obj/structure/surface/rack{
density = 0;
@@ -79666,24 +79505,60 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/starboard)
-"xcl" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+"xcs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
},
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
+"xcI" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/port_hallway)
-"xcC" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/tool,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/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{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
+"xcY" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"xdf" = (
+/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/port_midship_hallway)
+"xdl" = (
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xdx" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/regular/empty,
@@ -79723,27 +79598,53 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
-"xdT" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/effect/spawner/random/toolbox,
-/obj/item/stack/sheet/metal{
- desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew.";
- icon = 'icons/obj/structures/props/semiotic_standard.dmi';
- icon_state = "coffee";
- name = "coffee semiotic";
- pixel_x = 20;
- pixel_y = 12;
- singular_name = "coffee semiotic"
+"xee" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
+"xef" = (
+/obj/structure/surface/table/almayer,
+/obj/item/folder/yellow,
+/obj/structure/machinery/keycard_auth{
+ pixel_x = -8;
+ pixel_y = 25
+ },
+/obj/structure/sign/safety/high_rad{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/terminal{
+ pixel_x = 14;
+ pixel_y = 26
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"xeV" = (
-/obj/structure/sign/safety/hvac_old{
+/area/almayer/engineering/lower/workshop)
+"xeq" = (
+/obj/structure/sign/safety/distribution_pipes{
pixel_x = 8;
pixel_y = 32
},
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"xer" = (
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
+"xew" = (
+/obj/structure/surface/rack,
+/obj/item/facepaint/sniper,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -79753,20 +79654,24 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/living/cafeteria_officer)
-"xft" = (
-/obj/structure/platform_decoration{
- dir = 4
- },
+"xfo" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 10;
+ icon_state = "blue"
},
-/area/almayer/maint/hull/upper/u_a_p)
-"xfu" = (
-/obj/structure/largecrate/random/case/double,
+/area/almayer/hallways/upper/aft_hallway)
+"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{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_m_p)
+/area/almayer/maint/hull/lower/l_a_p)
"xfK" = (
/obj/structure/machinery/light{
dir = 1
@@ -79810,6 +79715,17 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/operating_room_one)
+"xfW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/m41a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/m41a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_s)
"xgh" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -79818,16 +79734,40 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lower_medical_lobby)
-"xgx" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
+"xgk" = (
+/obj/structure/pipes/vents/scrubber,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
},
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"xgm" = (
+/obj/structure/reagent_dispensers/fueltank/oxygentank,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+ icon_state = "plate"
+ },
+/area/almayer/engineering/upper_engineering/starboard)
+"xgr" = (
+/obj/structure/ladder{
+ height = 1;
+ id = "AftPortMaint"
+ },
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/almayer,
+/area/almayer/maint/hull/lower/l_a_p)
+"xgE" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
},
-/area/almayer/hallways/vehiclehangar)
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"xgI" = (
/obj/structure/closet/secure_closet/personal/cabinet{
req_access = null
@@ -79837,6 +79777,16 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/chief_mp_office)
+"xgJ" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
"xgN" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 1
@@ -79850,19 +79800,44 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"xgP" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/upper_medical)
+"xgS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"xhi" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"xhn" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
-"xhp" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_s)
"xhx" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -79876,12 +79851,24 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/main_office)
+"xhO" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"xhQ" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"xhW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"xhZ" = (
/obj/structure/bed/chair/comfy/beige{
dir = 4
@@ -79896,20 +79883,18 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"xiD" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/tool/wrench{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/tool/wrench{
- pixel_x = 2;
- pixel_y = 7
- },
+"xiH" = (
+/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/maint/hull/lower/l_f_s)
+"xiP" = (
+/obj/structure/closet/secure_closet/engineering_welding{
+ req_one_access_txt = "7;23;27"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"xiU" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/tool/minihoe{
@@ -79924,13 +79909,9 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"xiZ" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
-/area/almayer/maint/hull/lower/l_m_s)
+"xiV" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/maint/hull/upper/p_bow)
"xjb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
access_modified = 1;
@@ -79941,12 +79922,6 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"xjh" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"xjt" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/structure/machinery/computer/card{
@@ -80006,6 +79981,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/main_office)
+"xjI" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/stern_hallway)
"xjK" = (
/obj/structure/sign/safety/hazard{
pixel_y = 32
@@ -80018,9 +79999,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"xjU" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
"xjW" = (
/obj/structure/sign/safety/hazard{
desc = "A sign that warns of a hazardous environment nearby";
@@ -80032,9 +80010,34 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/shipboard/starboard_point_defense)
+"xkb" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
+"xkc" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"xkd" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/cells)
+"xky" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xkB" = (
/obj/structure/bed/chair/comfy/charlie{
dir = 1
@@ -80044,37 +80047,20 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"xkC" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "emerald"
- },
-/area/almayer/hallways/port_hallway)
-"xkE" = (
-/obj/structure/machinery/door/airlock/almayer/maint/reinforced,
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
+"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{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/s_bow)
-"xkZ" = (
-/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{
- icon_state = "test_floor4"
+ icon_state = "greencorner"
},
-/area/almayer/maint/lower/constr)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"xlk" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
@@ -80111,6 +80097,21 @@
icon_state = "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/item/storage/toolbox/mechanical/green{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_f_p)
"xmJ" = (
/obj/structure/closet,
/obj/structure/sign/safety/bathunisex{
@@ -80137,11 +80138,6 @@
icon_state = "dark_sterile"
},
/area/almayer/shipboard/brig/surgery)
-"xnn" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_m_s)
"xns" = (
/obj/structure/machinery/door_control{
id = "ARES JoeCryo";
@@ -80164,13 +80160,6 @@
icon_state = "red"
},
/area/almayer/command/lifeboat)
-"xnG" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_p)
"xnI" = (
/obj/effect/landmark/start/requisition,
/turf/open/floor/plating/plating_catwalk,
@@ -80202,15 +80191,28 @@
icon_state = "bluecorner"
},
/area/almayer/squads/delta)
+"xog" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xoj" = (
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop)
-"xow" = (
-/obj/structure/sign/safety/nonpress_ag{
- pixel_x = 32
+"xos" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_fore_hallway)
+"xoB" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/hull/upper/u_f_s)
"xoJ" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -80225,6 +80227,15 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"xpc" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"xpi" = (
/obj/structure/sink{
dir = 8;
@@ -80242,6 +80253,24 @@
icon_state = "dark_sterile"
},
/area/almayer/living/commandbunks)
+"xpl" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/structure/sign/safety/four{
+ pixel_x = 31;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/ammunition{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"xpo" = (
/obj/structure/closet/secure_closet/cmdcabinet{
desc = "A bulletproof cabinet containing communications equipment.";
@@ -80259,19 +80288,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"xpI" = (
-/obj/structure/stairs{
+"xpL" = (
+/obj/structure/machinery/light/small{
dir = 4
},
-/obj/effect/projector{
- name = "Almayer_Up2";
- vector_x = -1;
- vector_y = 100
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_p)
"xpT" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -80292,12 +80314,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"xqm" = (
-/obj/structure/sign/safety/security{
- pixel_x = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/s_bow)
"xqp" = (
/obj/structure/machinery/body_scanconsole{
dir = 8;
@@ -80357,6 +80373,19 @@
icon_state = "plate"
},
/area/almayer/command/corporateliaison)
+"xrg" = (
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/stern)
"xrq" = (
/obj/structure/closet/firecloset,
/obj/item/clothing/mask/gas,
@@ -80365,12 +80394,6 @@
icon_state = "cargo"
},
/area/almayer/command/lifeboat)
-"xrr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/stern_hallway)
"xrt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -80397,6 +80420,17 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"xrC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/lower/starboard_fore_hallway)
"xrI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -80405,17 +80439,20 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
+"xrT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/platform{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/repair_bay)
"xsg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/main_office)
-"xsj" = (
-/obj/structure/surface/rack,
-/obj/item/tool/weldpack,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"xsl" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -80425,19 +80462,28 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
+"xss" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/lower/cryo_cells)
+"xsv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"xsw" = (
/turf/open/floor/almayer{
dir = 6;
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"xsy" = (
-/obj/item/pipe{
- dir = 4;
- layer = 3.5
- },
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
"xsz" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
@@ -80447,41 +80493,27 @@
icon_state = "plating"
},
/area/almayer/medical/upper_medical)
-"xsW" = (
-/obj/structure/machinery/cm_vending/gear/vehicle_crew,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/vehiclehangar)
-"xtk" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"xtr" = (
-/obj/effect/landmark/start/nurse,
-/obj/effect/landmark/late_join/nurse,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/offices)
-"xtI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
+"xsQ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -14;
- pixel_y = 13
+/obj/item/weapon/dart,
+/obj/item/weapon/dart,
+/obj/item/weapon/dart,
+/obj/item/weapon/dart/green,
+/obj/item/weapon/dart/green,
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
+"xsX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/mess)
+/area/almayer/hallways/upper/stern_hallway)
"xtM" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -80489,17 +80521,26 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"xtU" = (
+"xtO" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"xub" = (
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/structure/surface/rack,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/obj/item/frame/table,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_midship_hallway)
"xuc" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -80507,13 +80548,23 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
-"xun" = (
-/obj/structure/largecrate/supply/supplies/water,
-/obj/item/toy/deck{
- pixel_y = 12
+"xui" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_aft_hallway)
+"xuy" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"xuE" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{
dir = 1;
@@ -80560,13 +80611,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"xvh" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/aft_hallway)
"xvE" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{
@@ -80590,6 +80634,16 @@
icon_state = "silver"
},
/area/almayer/command/airoom)
+"xvO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xvQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/sentencing{
@@ -80606,6 +80660,15 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"xwd" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"xwl" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -80619,6 +80682,18 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha_bravo_shared)
+"xwm" = (
+/obj/structure/sign/safety/security{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"xwp" = (
/obj/item/storage/box/matches{
pixel_x = -11;
@@ -80650,13 +80725,14 @@
},
/area/almayer/living/briefing)
"xwU" = (
-/obj/item/roller,
-/obj/structure/surface/rack,
-/obj/item/roller,
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = -32
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "green"
},
-/area/almayer/shipboard/panic)
+/area/almayer/hallways/upper/aft_hallway)
"xwX" = (
/turf/open/floor/almayer{
dir = 9;
@@ -80738,16 +80814,19 @@
},
/turf/open/floor/plating,
/area/almayer/living/port_emb)
-"xxr" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/binoculars,
-/obj/item/device/whistle{
- pixel_y = 5
+"xxG" = (
+/obj/structure/prop/holidays/string_lights{
+ pixel_y = 27
+ },
+/obj/structure/largecrate/random/barrel/red,
+/obj/item/reagent_container/food/drinks/cans/cola{
+ pixel_x = -2;
+ pixel_y = 16
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/maint/hull/lower/l_m_s)
"xxI" = (
/obj/structure/cargo_container/wy/mid,
/obj/structure/sign/poster{
@@ -80846,6 +80925,12 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
+"xyQ" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/lower/repair_bay)
"xyY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -80857,6 +80942,11 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"xyZ" = (
+/obj/structure/machinery/light/small,
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/s_bow)
"xzf" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -80867,17 +80957,21 @@
icon_state = "blue"
},
/area/almayer/living/basketball)
-"xzx" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"xzh" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
+"xzB" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_s)
+"xzI" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 1;
+ icon_state = "green"
},
-/area/almayer/maint/hull/lower/l_m_p)
+/area/almayer/hallways/lower/port_midship_hallway)
"xzO" = (
/obj/structure/closet/secure_closet{
name = "\improper Execution Firearms"
@@ -80910,6 +81004,13 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
+"xAu" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/s_bow)
"xAB" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -80954,6 +81055,12 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/port)
+"xBK" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"xBQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -80961,12 +81068,14 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
-"xBT" = (
-/obj/structure/surface/rack,
+"xBS" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 4
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/upper/u_a_s)
"xBV" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -80996,6 +81105,17 @@
},
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
+"xCy" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -19;
+ pixel_y = -6
+ },
+/obj/structure/sign/safety/bulkhead_door{
+ pixel_x = -19;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
"xDe" = (
/obj/effect/projector{
name = "Almayer_Down4";
@@ -81012,10 +81132,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"xDy" = (
-/obj/item/ammo_casing/bullet,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_p)
"xDC" = (
/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
/turf/open/floor/almayer/no_build{
@@ -81029,6 +81145,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"xDG" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/u_a_s)
"xDV" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -81039,15 +81164,14 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"xEq" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
+"xEe" = (
+/obj/structure/prop/invuln/joey,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"xEs" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_p)
"xEz" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/book/manual/surgery,
@@ -81070,22 +81194,21 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"xFw" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
- },
-/area/almayer/hallways/aft_hallway)
+"xFt" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_f_p)
"xFP" = (
/turf/open/floor/almayer{
dir = 5;
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
+"xFW" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xFZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -81103,28 +81226,18 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"xGk" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+"xGm" = (
+/obj/structure/platform_decoration{
+ dir = 8
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/aft_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"xGo" = (
/obj/structure/machinery/autolathe,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/squads/req)
-"xGv" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"xGE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -81146,6 +81259,15 @@
icon_state = "test_floor4"
},
/area/almayer/squads/bravo)
+"xGF" = (
+/obj/structure/machinery/vending/snack{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_f_p)
"xGJ" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -81156,38 +81278,78 @@
icon_state = "red"
},
/area/almayer/living/briefing)
+"xGK" = (
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/item/storage/box/lights/tubes{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_y = 19
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
+"xGT" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"xHa" = (
+/obj/structure/surface/rack,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/powercell,
+/obj/effect/spawner/random/powercell,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_p)
+"xHl" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"xHp" = (
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/squads/alpha_bravo_shared)
-"xHr" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/box/lights/tubes{
- pixel_x = -8
+"xHD" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
},
-/obj/item/storage/box/lights/tubes{
- pixel_x = 5
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
},
-/obj/item/storage/box/lights/tubes{
- pixel_y = 10
+/area/almayer/maint/hull/upper/u_m_p)
+"xHS" = (
+/obj/structure/reagent_dispensers/fueltank/oxygentank{
+ anchored = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"xHx" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/maint/upper/u_m_s)
-"xHC" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
+/area/almayer/engineering/lower/workshop/hangar)
+"xHX" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_x = 8;
+ pixel_y = 32
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_f_p)
+/area/almayer/maint/hull/lower/p_bow)
"xId" = (
/obj/structure/surface/rack,
/obj/item/mortar_shell/he,
@@ -81204,14 +81366,6 @@
icon_state = "cargo"
},
/area/almayer/medical/lower_medical_medbay)
-"xIp" = (
-/obj/structure/surface/table/almayer,
-/obj/item/card/id/visa,
-/obj/item/tool/crew_monitor,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_s)
"xIq" = (
/obj/structure/machinery/firealarm{
dir = 4;
@@ -81236,24 +81390,15 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"xIy" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/lower/cryo_cells)
-"xIB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
"xIQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/turf/open/floor/almayer,
/area/almayer/living/offices)
+"xIV" = (
+/turf/open/floor/almayer,
+/area/almayer/maint/upper/mess)
"xIW" = (
/obj/structure/machinery/light{
dir = 4
@@ -81288,18 +81433,17 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"xJp" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_s)
"xJH" = (
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/squads/charlie_delta_shared)
-"xJK" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_p)
"xJR" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -81316,16 +81460,18 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"xKo" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
+"xKG" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/obj/structure/largecrate/random,
-/turf/open/floor/almayer{
- icon_state = "plate"
+/obj/structure/machinery/door_control{
+ id = "Under Construction Shutters";
+ name = "shutter-control";
+ pixel_x = -25
},
-/area/almayer/maint/hull/upper/s_bow)
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"xKM" = (
/obj/structure/machinery/status_display{
pixel_x = 16;
@@ -81372,9 +81518,28 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/general_equipment)
-"xLp" = (
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+"xLn" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/s_stern)
+"xLu" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
+"xLX" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"xMf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -81393,21 +81558,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"xMk" = (
-/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{
- allow_construction = 0
- },
-/area/almayer/hallways/aft_hallway)
"xMl" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -81418,6 +81568,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower)
+"xMm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/largecrate/random/barrel/green,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_a_p)
"xMs" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/operating_room_two)
@@ -81446,6 +81605,26 @@
dir = 6
},
/area/almayer/command/cic)
+"xMG" = (
+/obj/structure/machinery/door_control{
+ id = "OuterShutter";
+ name = "Outer Shutter";
+ pixel_x = 5;
+ pixel_y = -2;
+ req_one_access_txt = "1;3"
+ },
+/obj/structure/surface/table/reinforced/almayer_B,
+/obj/structure/machinery/door_control{
+ id = "OfficeSafeRoom";
+ name = "Office Safe Room";
+ pixel_x = 5;
+ pixel_y = 5;
+ req_one_access_txt = "1;3"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/shipboard/panic)
"xML" = (
/obj/structure/machinery/computer/cameras/wooden_tv/prop{
pixel_x = -4;
@@ -81513,6 +81692,12 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
+"xNl" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xNu" = (
/obj/structure/toilet{
dir = 1
@@ -81546,33 +81731,24 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
-"xNB" = (
-/obj/structure/machinery/light,
-/obj/structure/sign/safety/security{
- pixel_y = -32
- },
-/obj/structure/sign/safety/restrictedarea{
- pixel_x = 15;
- pixel_y = -32
+"xNM" = (
+/obj/structure/machinery/cm_vending/gear/vehicle_crew,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
-"xNL" = (
+/area/almayer/hallways/lower/vehiclehangar)
+"xOs" = (
/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_x = -1;
- pixel_y = 2
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/vehiclehangar)
-"xNY" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/p_bow)
-"xOb" = (
-/obj/docking_port/stationary/escape_pod/north,
-/turf/open/floor/plating,
-/area/almayer/maint/hull/lower/l_m_p)
+/obj/structure/sign/poster/pinup{
+ pixel_x = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/command/corporateliaison)
"xOL" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -81602,6 +81778,26 @@
dir = 4
},
/area/almayer/medical/containment/cell)
+"xPn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/stairs/perspective{
+ dir = 1;
+ icon_state = "p_stair_full"
+ },
+/obj/structure/platform{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/lower/repair_bay)
"xPq" = (
/obj/structure/filingcabinet,
/obj/item/folder/yellow,
@@ -81610,6 +81806,12 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"xPu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"xPZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -81625,6 +81827,24 @@
},
/turf/open/floor/almayer,
/area/almayer/command/cic)
+"xQd" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/l_m_p)
+"xQe" = (
+/obj/structure/machinery/vending/cigarette{
+ density = 0;
+ pixel_y = 18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_a_p)
"xQg" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -81634,17 +81854,40 @@
icon_state = "bluecorner"
},
/area/almayer/living/pilotbunks)
+"xQj" = (
+/obj/item/pipe{
+ dir = 4;
+ layer = 3.5
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"xQm" = (
/turf/open/floor/almayer/research/containment/floor2{
dir = 1
},
/area/almayer/medical/containment/cell)
+"xQz" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"xQV" = (
/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer/no_build{
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"xQW" = (
+/obj/structure/sign/safety/bathunisex{
+ pixel_x = -18
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"xRj" = (
/obj/structure/bed/chair{
dir = 8;
@@ -81678,6 +81921,12 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
+"xRn" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xRw" = (
/turf/open/floor/almayer/uscm/directional{
dir = 1
@@ -81703,15 +81952,16 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"xRU" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
+"xSl" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
+ dir = 4;
+ icon_state = "red"
},
-/area/almayer/hallways/aft_hallway)
+/area/almayer/hallways/upper/stern_hallway)
"xSw" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -81722,6 +81972,12 @@
},
/turf/open/floor/plating,
/area/almayer/squads/charlie)
+"xSx" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"xSz" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/status_display{
@@ -81732,15 +81988,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"xSI" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/emails{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/repair_bay)
"xSM" = (
/obj/structure/machinery/light{
dir = 8
@@ -81771,24 +82018,23 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/containment)
-"xTt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/stern_hallway)
"xTu" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
+"xTx" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/hull/upper/u_f_p)
+"xTG" = (
+/obj/structure/closet/emcloset,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/p_stern)
"xTH" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
@@ -81808,20 +82054,6 @@
icon_state = "plate"
},
/area/almayer/living/numbertwobunks)
-"xTQ" = (
-/obj/structure/surface/rack,
-/obj/structure/ob_ammo/ob_fuel,
-/obj/structure/ob_ammo/ob_fuel,
-/obj/structure/ob_ammo/ob_fuel,
-/obj/structure/ob_ammo/ob_fuel,
-/obj/structure/sign/safety/fire_haz{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/p_bow)
"xTR" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -81867,18 +82099,13 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"xUb" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/plating,
-/area/almayer/maint/lower/constr)
-"xUt" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
+"xUy" = (
+/obj/item/reagent_container/food/snacks/wrapped/barcardine,
+/obj/structure/surface/rack,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/stern)
+/area/almayer/maint/hull/upper/p_stern)
"xUA" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/pouch/tools/tank,
@@ -81895,23 +82122,25 @@
icon_state = "silver"
},
/area/almayer/command/cic)
-"xUS" = (
-/obj/structure/largecrate/random/secure,
-/obj/effect/decal/warning_stripes{
- icon_state = "E"
+"xUV" = (
+/obj/structure/bed/chair{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_a_p)
-"xUV" = (
-/obj/structure/bed/chair{
+/area/almayer/command/combat_correspondent)
+"xUY" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/command/combat_correspondent)
+/area/almayer/maint/hull/lower/l_f_p)
"xVc" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/machinery/door_control{
@@ -81974,18 +82203,28 @@
},
/turf/closed/wall/almayer,
/area/almayer/living/tankerbunks)
+"xVY" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/port_midship_hallway)
"xWd" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
icon_state = "orange"
},
/area/almayer/squads/alpha_bravo_shared)
-"xWh" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
+"xWo" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ req_one_access = null;
+ req_one_access_txt = "19;21"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
"xWp" = (
/turf/open/floor/almayer,
/area/almayer/living/offices/flight)
@@ -81995,17 +82234,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
-"xWI" = (
-/obj/structure/machinery/door_control{
- id = "panicroomback";
- name = "\improper Safe Room";
- pixel_x = -25;
- req_one_access_txt = "3"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"xWO" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = -25
@@ -82029,15 +82257,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
-"xWV" = (
-/obj/structure/surface/table/almayer,
-/obj/item/device/radio/intercom/alamo{
- layer = 2.9
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/living/offices/flight)
"xXa" = (
/turf/open/floor/almayer{
dir = 8;
@@ -82078,21 +82297,6 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"xXu" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
-"xXD" = (
-/obj/item/clothing/shoes/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_m_p)
-"xXG" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/lower/l_f_s)
"xXT" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -82108,13 +82312,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"xXX" = (
-/obj/structure/surface/rack,
-/obj/effect/spawner/random/toolbox,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
"xYf" = (
/obj/structure/machinery/cm_vending/clothing/sea,
/turf/open/floor/almayer{
@@ -82122,6 +82319,12 @@
icon_state = "plating"
},
/area/almayer/shipboard/sea_office)
+"xYr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/p_bow)
"xYB" = (
/obj/structure/sign/safety/storage{
pixel_x = 8;
@@ -82129,6 +82332,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/starboard_point_defense)
+"xYE" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"xYP" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/cryo_cells)
@@ -82157,6 +82366,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering)
+"xZf" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xZk" = (
/obj/item/prop/helmetgarb/gunoil{
layer = 4.2;
@@ -82184,15 +82399,10 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"xZs" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
+"xZz" = (
+/obj/item/paper/almayer_storage,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_p)
"xZG" = (
/obj/structure/machinery/light{
dir = 4
@@ -82201,6 +82411,28 @@
/obj/structure/bed,
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"xZH" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_p)
+"xZM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_umbilical)
+"xZR" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
"xZU" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -82212,12 +82444,6 @@
icon_state = "cargo"
},
/area/almayer/squads/charlie)
-"yaa" = (
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"yac" = (
/obj/structure/platform_decoration{
dir = 8
@@ -82227,22 +82453,18 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"yai" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"yap" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 2
+ icon_state = "E";
+ pixel_x = 1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_f_s)
-"yak" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/maint/hull/upper/u_f_s)
+/area/almayer/hallways/lower/starboard_fore_hallway)
"yaz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "\improper Officer's Study"
@@ -82277,6 +82499,31 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"yaR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/stern_hallway)
+"yaX" = (
+/obj/structure/machinery/door/poddoor/railing{
+ dir = 2;
+ id = "vehicle_elevator_railing"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"yaZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
@@ -82286,25 +82533,26 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
-"ybf" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
+"ybk" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/upper/stern_hallway)
+"ybm" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/hardhat{
+ pixel_x = 10;
+ pixel_y = 1
},
-/area/almayer/hallways/aft_hallway)
-"ybq" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/item/clothing/suit/storage/hazardvest{
+ pixel_x = -8;
+ pixel_y = 6
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
+/obj/item/clothing/suit/storage/hazardvest/yellow,
+/obj/item/clothing/suit/storage/hazardvest{
+ pixel_x = 8;
+ pixel_y = 7
},
-/area/almayer/shipboard/panic)
+/turf/open/floor/plating,
+/area/almayer/maint/lower/constr)
"ybz" = (
/obj/structure/machinery/brig_cell/cell_4{
pixel_x = 32;
@@ -82312,6 +82560,14 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
+"ybP" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_umbilical)
"ybU" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -82350,6 +82606,9 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
+"ycl" = (
+/turf/open/floor/plating,
+/area/almayer/maint/hull/lower/l_m_s)
"ycm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -82381,6 +82640,14 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"ycM" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"ycZ" = (
/obj/structure/sign/poster{
pixel_y = 32
@@ -82390,19 +82657,15 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"ydb" = (
-/obj/structure/machinery/light/small{
+"ydf" = (
+/obj/structure/platform{
dir = 1
},
-/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/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/stern)
+/area/almayer/maint/hull/upper/u_a_s)
"ydh" = (
/obj/structure/pipes/vents/pump{
dir = 1
@@ -82421,6 +82684,19 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
+"ydA" = (
+/obj/structure/stairs{
+ dir = 4
+ },
+/obj/effect/projector{
+ name = "Almayer_Up3";
+ vector_x = -1;
+ vector_y = 102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/lower/port_fore_hallway)
"ydE" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -82462,12 +82738,6 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"ydR" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/s_bow)
"ydY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -82476,18 +82746,6 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"yef" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/p_bow)
-"yen" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_p)
"yeu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -82525,16 +82783,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"yeO" = (
-/obj/structure/window/framed/almayer,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- id = "OfficeSafeRoom";
- name = "\improper Office Safe Room"
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/shipboard/panic)
"yeR" = (
/obj/structure/machinery/cm_vending/clothing/senior_officer{
req_access = null;
@@ -82543,6 +82791,12 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/chief_mp_office)
+"yfd" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/vehiclehangar)
"yff" = (
/obj/structure/machinery/cm_vending/clothing/dress{
density = 0;
@@ -82555,6 +82809,13 @@
icon_state = "cargo"
},
/area/almayer/command/cic)
+"yfg" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/lower/starboard_midship_hallway)
"yfm" = (
/obj/effect/landmark/start/marine/delta,
/obj/effect/landmark/late_join/delta,
@@ -82562,24 +82823,13 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
-"yfv" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/aft_hallway)
-"yfw" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
+"yfy" = (
+/obj/structure/barricade/handrail{
+ dir = 1;
+ pixel_y = 2
},
-/area/almayer/hallways/starboard_hallway)
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/port_fore_hallway)
"yfG" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -82592,6 +82842,19 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"yfL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/bed/sofa/south/white/left{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
"yfS" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -82599,10 +82862,6 @@
},
/turf/open/floor/plating,
/area/almayer/living/grunt_rnr)
-"ygb" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_m_p)
"yge" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/almayer/vehicle{
@@ -82612,12 +82871,44 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"ygo" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+"ygp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"ygv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/safety/nonpress_ag{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = -32
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_p)
+"ygB" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/hallways/lower/starboard_midship_hallway)
+"ygP" = (
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/structure/surface/table/almayer,
+/obj/item/fuel_cell,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/engineering/lower/engine_core)
"yhg" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -82626,39 +82917,42 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"yhx" = (
-/obj/structure/surface/table/reinforced/almayer_B,
-/obj/item/clothing/glasses/welding{
- pixel_x = 8;
- pixel_y = 3
- },
-/obj/item/tool/weldingtool{
- pixel_x = -11;
- pixel_y = 5
- },
-/obj/structure/machinery/light/small{
- dir = 1
+"yht" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "red"
},
-/area/almayer/maint/hull/upper/u_a_p)
+/area/almayer/living/cryo_cells)
"yhI" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"yiq" = (
-/obj/structure/sign/safety/north{
- pixel_x = -17;
- pixel_y = -8
+"yhR" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_m_s)
+"yhZ" = (
+/turf/closed/wall/almayer/reinforced,
+/area/almayer/maint/hull/lower/p_bow)
+"yia" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/lower/l_a_s)
+"yih" = (
+/obj/structure/machinery/light/small{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
+ icon_state = "plate"
},
-/area/almayer/hallways/starboard_hallway)
+/area/almayer/maint/hull/lower/l_m_s)
"yit" = (
/obj/structure/machinery/light{
dir = 4
@@ -82701,18 +82995,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/morgue)
-"yjf" = (
-/obj/structure/machinery/door/airlock/almayer/generic/glass{
- name = "\improper Passenger Cryogenics Bay"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_p)
-"yjl" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/p_bow)
"yjq" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
icon_state = "almayer_pdoor";
@@ -82722,6 +83004,15 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/notunnel)
+"yjE" = (
+/obj/structure/sign/safety/water{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/lower/stern)
"yjG" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -82745,9 +83036,6 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
-"ykg" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/upper/u_m_p)
"ykj" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -82759,12 +83047,27 @@
icon_state = "test_floor4"
},
/area/almayer/living/grunt_rnr)
-"ykB" = (
-/obj/structure/bed/chair{
+"yko" = (
+/obj/vehicle/powerloader,
+/obj/structure/platform{
+ dir = 4
+ },
+/obj/structure/platform{
dir = 8
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/lower/repair_bay)
+"ykv" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ id = "InnerShutter";
+ name = "\improper Saferoom Shutters"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/panic)
"ykI" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -82787,6 +83090,61 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/main_office)
+"ykY" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_m_s)
"ylc" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -82821,23 +83179,23 @@
icon_state = "test_floor5"
},
/area/almayer/engineering/lower/engine_core)
-"ylJ" = (
-/obj/structure/sign/safety/maint{
+"ylN" = (
+/obj/structure/sign/safety/galley{
pixel_x = 8;
pixel_y = 32
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
+/turf/open/floor/almayer,
+/area/almayer/hallways/lower/starboard_aft_hallway)
+"ymg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ layer = 2.5;
+ pixel_y = 1
},
-/area/almayer/hallways/stern_hallway)
-"yma" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/machinery/door/airlock/almayer/maint,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/hull/upper/u_m_s)
+/area/almayer/maint/hull/lower/l_f_p)
(1,1,1) = {"
aaa
@@ -90593,8 +90951,8 @@ aaa
aaa
aaa
aad
-sOq
-sOq
+uDg
+uDg
hPI
pQr
rib
@@ -90612,8 +90970,8 @@ jNT
jNT
wSK
feb
-lFL
-lFL
+xiV
+xiV
ajZ
aaa
aaa
@@ -90795,9 +91153,9 @@ aaf
aaf
aaf
aaf
-sOq
-sOq
-ryg
+uDg
+uDg
+lHk
naB
wnw
pHp
@@ -90815,9 +91173,9 @@ xzO
pNk
jIH
mtl
-ktH
-lFL
-lFL
+igS
+xiV
+xiV
aaf
aaf
aaf
@@ -90991,19 +91349,19 @@ aaa
aaa
aaa
aad
-sOq
-sOq
-sOq
-sOq
-sOq
-sOq
-sOq
-sOq
-nkE
-mjC
+uDg
+uDg
+uDg
+uDg
+uDg
+uDg
+uDg
+uDg
+aPN
+lSJ
naB
pQr
-jRH
+jeR
wvI
vPf
fvA
@@ -91018,16 +91376,16 @@ mtl
mtl
mtl
mtl
-vFB
-gWL
-lFL
-lFL
-lFL
-lFL
-lFL
-lFL
-lFL
-lFL
+iuf
+pnh
+xiV
+xiV
+xiV
+xiV
+xiV
+xiV
+xiV
+xiV
ajZ
aaa
aaa
@@ -91194,16 +91552,16 @@ aaa
aaa
aaa
aad
-sOq
-hNh
-sjC
-pjr
-fHY
-aXV
-pjr
-unI
-mIQ
-bKG
+uDg
+cth
+gkr
+xkc
+oGj
+hSj
+xkc
+mph
+nlh
+rGr
naB
naB
naB
@@ -91219,18 +91577,18 @@ rdA
alF
sql
alF
-kAk
-xXu
-ogI
-uwJ
-hIl
-xXu
-ubB
-csT
-xXu
-xXu
-jIU
-lFL
+rwe
+pdp
+hZw
+xYr
+mjs
+pdp
+ohu
+iUh
+pdp
+pdp
+kSn
+xiV
ajZ
bdH
bdH
@@ -91397,19 +91755,19 @@ bdH
aac
aaf
aag
-sOq
-sjC
-pjr
-sjC
-qPC
-tla
-vcg
-xqm
-pjr
-vnU
+uDg
+gkr
+xkc
+gkr
+vAg
+gxI
+kqC
+bBU
+xkc
+eeA
naB
pQr
-dFH
+ggS
wvI
piK
fvA
@@ -91425,15 +91783,15 @@ xkd
xkd
xkd
xkd
-wUc
-hfx
-kvj
-kWA
-idf
-tyH
-tyH
-xXu
-lFL
+lRt
+tsE
+iVG
+hmA
+hmZ
+oDh
+oDh
+pdp
+xiV
aag
aaf
ajY
@@ -91599,10 +91957,10 @@ bdH
bdH
aad
aag
-sOq
-sOq
-sjC
-pjr
+uDg
+uDg
+gkr
+xkc
vBm
vBm
vBm
@@ -91634,10 +91992,10 @@ xkd
xkd
xkd
xkd
-xXu
-tyH
-lFL
-lFL
+pdp
+oDh
+xiV
+xiV
aag
ajZ
bdH
@@ -91802,10 +92160,10 @@ bdH
bdH
aad
aag
-sOq
-pnI
-sjC
-hNh
+uDg
+pOp
+gkr
+cth
vBm
rBV
oPk
@@ -91837,10 +92195,10 @@ uns
vCy
eyV
xkd
-nWt
-tyH
-xXu
-lFL
+mkF
+oDh
+pdp
+xiV
aag
ajZ
bdH
@@ -92005,10 +92363,10 @@ bdH
bdH
aad
aag
-sOq
-naN
-pjr
-lHE
+uDg
+lDT
+xkc
+xyZ
vBm
ldu
wgi
@@ -92040,10 +92398,10 @@ xGh
jVa
wDs
xkd
-abN
-tyH
-xXu
-lFL
+oHf
+oDh
+pdp
+xiV
aag
ajZ
bdH
@@ -92208,9 +92566,9 @@ bdH
bdH
aad
aag
-sOq
-pjr
-sjC
+uDg
+xkc
+gkr
vBm
vBm
sFC
@@ -92220,10 +92578,10 @@ vBm
lOI
pJv
jLM
-sXy
+btn
cMb
rbi
-kwU
+wDp
xys
nkX
iQB
@@ -92244,9 +92602,9 @@ tUx
wRN
xkd
xkd
-xXu
-tyH
-lFL
+pdp
+oDh
+xiV
aag
ajZ
bdH
@@ -92314,10 +92672,10 @@ aaa
bdH
aad
aag
-tNf
-tNf
-tNf
-tNf
+nBJ
+nBJ
+nBJ
+nBJ
aag
dqw
uwv
@@ -92339,10 +92697,10 @@ dqw
aag
aag
aag
-tQN
-tQN
-tQN
-tQN
+wid
+wid
+wid
+wid
aag
ajZ
bdH
@@ -92411,9 +92769,9 @@ bdH
bdH
aad
aag
-ocS
-pjr
-sjC
+lrE
+xkc
+gkr
vBm
ykP
xAj
@@ -92447,9 +92805,9 @@ tUx
xJe
qLt
xkd
-xXu
-tyH
-pqG
+pdp
+oDh
+cPj
aag
etE
bdH
@@ -92517,9 +92875,9 @@ aaa
bdH
aad
aag
-tNf
-sOH
-dRN
+nBJ
+kJc
+jFt
bAs
bAs
bAs
@@ -92543,9 +92901,9 @@ bTT
bTT
bTT
bAs
-oFb
-obx
-tQN
+kOR
+jYM
+wid
aag
ajZ
bdH
@@ -92614,9 +92972,9 @@ bdH
bdH
aad
aag
-ocS
-sjC
-pjr
+lrE
+gkr
+xkc
vBm
ykP
xjG
@@ -92650,9 +93008,9 @@ ycm
qCo
pWr
xkd
-xXX
-tyH
-pqG
+aGa
+oDh
+cPj
aag
ajZ
bdH
@@ -92720,9 +93078,9 @@ aaa
bdH
aad
aag
-tNf
-jln
-vXr
+nBJ
+rUi
+grv
bBA
bAK
bCY
@@ -92746,9 +93104,9 @@ acr
bPG
acN
bBA
-nHN
-sjZ
-tQN
+gTK
+fWg
+wid
aag
ajZ
bdH
@@ -92817,9 +93175,9 @@ bdH
bdH
aad
aag
-ocS
-lYZ
-pjr
+lrE
+vDh
+xkc
lrq
lrq
lrq
@@ -92853,9 +93211,9 @@ cyZ
jVa
fJT
xkd
-mPQ
-xXu
-pqG
+rfB
+pdp
+cPj
aag
eSU
bdH
@@ -92923,9 +93281,9 @@ aaa
bdH
aad
aag
-tNf
-pDk
-wjN
+nBJ
+uRR
+mFQ
bBA
hWJ
bCY
@@ -92949,9 +93307,9 @@ bHP
bPG
hpk
bBA
-rAk
-szS
-tQN
+yhZ
+wtD
+wid
aag
ajZ
bdH
@@ -93020,9 +93378,9 @@ bdH
bdH
aad
aag
-sOq
-hNh
-vtH
+uDg
+cth
+qsp
lrq
kEc
chv
@@ -93056,9 +93414,9 @@ dfk
vzz
moB
xkd
-pVg
-xXu
-lFL
+gNZ
+pdp
+xiV
aag
ajZ
bdH
@@ -93126,9 +93484,9 @@ aaa
bdH
aad
aag
-tNf
-qqi
-fvs
+nBJ
+ecS
+eQR
gol
akb
bCY
@@ -93152,9 +93510,9 @@ bPn
bPG
ald
gol
-kuI
-lGZ
-tQN
+sGK
+hLu
+wid
aag
ajZ
bdH
@@ -93223,9 +93581,9 @@ bdH
bdH
aad
aag
-sOq
-tnD
-sjC
+uDg
+cUl
+gkr
lrq
heo
nqe
@@ -93259,9 +93617,9 @@ eZH
tUx
cXi
xkd
-vFr
-xXu
-lFL
+ttB
+pdp
+xiV
aag
twB
bdH
@@ -93329,9 +93687,9 @@ aaa
bdH
aad
aag
-tNf
-fvs
-neX
+nBJ
+eQR
+xAu
bBA
bAN
bCY
@@ -93355,9 +93713,9 @@ bPo
bPG
acs
bBA
-edx
-kuI
-tQN
+xHX
+sGK
+wid
aag
ajZ
bdH
@@ -93426,9 +93784,9 @@ bdH
bdH
aad
aag
-ocS
-nMT
-sjC
+lrE
+vOM
+gkr
lrq
kui
uqo
@@ -93462,9 +93820,9 @@ nYd
thL
jVa
fgR
-pwx
-tyH
-pqG
+nEc
+oDh
+cPj
aag
ajZ
bdH
@@ -93532,9 +93890,9 @@ aaa
bdH
aad
aag
-tNf
-cCG
-iWW
+nBJ
+ldF
+eox
bBA
bAO
bCZ
@@ -93558,9 +93916,9 @@ bDW
bPJ
iuz
bBA
-aGh
-bjh
-tQN
+mVh
+uMf
+wid
aag
ajZ
bdH
@@ -93629,16 +93987,16 @@ bdH
bdH
aad
aag
-ocS
-lFv
-pjr
+lrE
+etN
+xkc
lrq
sEZ
nqe
nqe
nqe
nqe
-vcL
+mza
eRL
wfB
tpn
@@ -93665,9 +94023,9 @@ liZ
rUk
jVa
fgR
-xGv
-tht
-pqG
+azg
+gKv
+cPj
aag
rEr
bdH
@@ -93735,9 +94093,9 @@ aaa
bdH
aad
aag
-tNf
-cCG
-fvs
+nBJ
+ldF
+eQR
bBA
bAP
aqu
@@ -93761,9 +94119,9 @@ aqu
aqu
bQz
bBA
-kuI
-tDw
-tQN
+sGK
+vOG
+wid
aag
ajZ
bdH
@@ -93832,9 +94190,9 @@ bdH
bdH
aad
aag
-ocS
-sjC
-pjr
+lrE
+gkr
+xkc
lrq
dEX
fxJ
@@ -93868,9 +94226,9 @@ uaU
rUk
xaM
fgR
-tDq
-xXu
-pqG
+hIG
+pdp
+cPj
aag
ajZ
bdH
@@ -93938,9 +94296,9 @@ aaa
bdH
aad
aag
-tNf
-uAN
-cCG
+nBJ
+vCE
+ldF
bBA
bBu
amg
@@ -93964,9 +94322,9 @@ amg
amg
rAD
bBA
-kuI
-aGh
-tQN
+sGK
+mVh
+wid
aag
ajZ
bdH
@@ -94035,9 +94393,9 @@ bdH
bdH
aad
aag
-sOq
-pjr
-pjr
+uDg
+xkc
+xkc
lrq
iwV
iwV
@@ -94071,9 +94429,9 @@ uxa
iZU
nhG
xkd
-tyH
-qnN
-lFL
+oDh
+uqg
+xiV
aag
uJk
bdH
@@ -94141,9 +94499,9 @@ aaa
bdH
aad
aag
-tNf
-pTQ
-fvs
+nBJ
+amu
+eQR
bBA
bBu
amg
@@ -94167,9 +94525,9 @@ amg
amg
rAD
bBA
-oac
-eEq
-tQN
+ozH
+flr
+wid
aag
ajZ
bdH
@@ -94238,9 +94596,9 @@ bdH
bdH
aad
aag
-sOq
-sjC
-lgM
+uDg
+gkr
+old
cQv
oVf
rmx
@@ -94274,9 +94632,9 @@ tov
thL
sUs
xkd
-pVg
-xXu
-lFL
+gNZ
+pdp
+xiV
aag
ajZ
bdH
@@ -94344,9 +94702,9 @@ aaa
bdH
aad
aag
-tNf
-bHC
-fvs
+nBJ
+kMW
+eQR
bBA
bBv
aqu
@@ -94370,9 +94728,9 @@ tkq
aqu
bQG
bBA
-irA
-aGh
-tQN
+uoO
+mVh
+wid
aag
ajZ
bdH
@@ -94441,9 +94799,9 @@ bdH
bdH
aad
aag
-ocS
-sjC
-ogi
+lrE
+gkr
+wJC
cQv
cBw
kde
@@ -94477,9 +94835,9 @@ tov
thL
xhx
fgR
-tyH
-xXu
-pqG
+oDh
+pdp
+cPj
aag
scz
bdH
@@ -94547,9 +94905,9 @@ aaa
bdH
aad
aag
-tNf
-eYN
-fvs
+nBJ
+iWJ
+eQR
bBA
bBx
amg
@@ -94573,9 +94931,9 @@ bPq
amg
rAD
bBA
-kuI
-ucU
-tQN
+sGK
+nhV
+wid
aag
ajZ
bdH
@@ -94644,9 +95002,9 @@ bdH
bdH
aad
aag
-ocS
-sjC
-eDN
+lrE
+gkr
+wMF
cQv
eaf
bEv
@@ -94680,9 +95038,9 @@ iFc
thL
tUx
fgR
-xXu
-tDq
-pqG
+pdp
+hIG
+cPj
aag
ajZ
bdH
@@ -94750,9 +95108,9 @@ aaa
aac
aag
aag
-tNf
-tzw
-pcY
+nBJ
+dKS
+ffN
bBA
bBy
amg
@@ -94776,9 +95134,9 @@ aoa
amg
bQE
bBA
-dkR
-kuI
-tQN
+bME
+sGK
+wid
aag
aag
ajY
@@ -94847,9 +95205,9 @@ bdH
bdH
aad
aag
-ocS
-pjr
-lYZ
+lrE
+xkc
+vDh
cQv
eaf
bEv
@@ -94883,9 +95241,9 @@ thL
thL
tUx
fgR
-xXu
-rlY
-pqG
+pdp
+aCA
+cPj
aag
okD
bdH
@@ -94952,10 +95310,10 @@ aaa
aaa
aad
aag
-tNf
-tNf
-fvs
-phn
+nBJ
+nBJ
+eQR
+bTW
bBA
bBz
aqu
@@ -94979,10 +95337,10 @@ bEx
aqu
bQI
bBA
-xTQ
-kuI
-tQN
-tQN
+gsy
+sGK
+wid
+wid
aag
ajZ
aaa
@@ -95050,9 +95408,9 @@ bdH
bdH
aad
aag
-sOq
-pjr
-pjr
+uDg
+xkc
+xkc
cQv
eaf
bEv
@@ -95086,9 +95444,9 @@ thL
thL
tUx
xkd
-xXu
-xNY
-lFL
+pdp
+vhA
+xiV
aag
ajZ
bdH
@@ -95155,10 +95513,10 @@ aaa
aaa
aad
aag
-tNf
-cCG
-cCG
-oVn
+nBJ
+ldF
+ldF
+xiP
bBA
lsV
amg
@@ -95182,10 +95540,10 @@ bPC
amg
pyL
bBA
-nrG
-kuI
-ucU
-tQN
+cDb
+sGK
+nhV
+wid
aag
ajZ
bdH
@@ -95253,9 +95611,9 @@ bdH
bdH
aad
aag
-sOq
-naN
-pjr
+uDg
+lDT
+xkc
cQv
eaf
bEv
@@ -95289,9 +95647,9 @@ thL
thL
tUx
xkd
-xXu
-tyH
-lFL
+pdp
+oDh
+xiV
aag
ajZ
bdH
@@ -95357,11 +95715,11 @@ aaf
aaf
aaf
aag
-tNf
-tNf
-cCG
-fvs
-grf
+nBJ
+nBJ
+ldF
+eQR
+uFp
bBA
bBA
tiR
@@ -95378,18 +95736,18 @@ cmJ
alU
alU
alU
-jAi
-jAi
-jAi
-jAi
-aib
-jAi
-jAi
-hNJ
-aGh
-kuI
-tQN
-tQN
+pzW
+pzW
+pzW
+pzW
+hNB
+pzW
+pzW
+ipB
+mVh
+sGK
+wid
+wid
aag
aaf
aaf
@@ -95456,9 +95814,9 @@ bdH
bdH
aad
aag
-sOq
-sjC
-vtH
+uDg
+gkr
+qsp
cQv
xLl
bEv
@@ -95492,9 +95850,9 @@ tUx
vsz
oEE
xkd
-pVg
-xXu
-lFL
+gNZ
+pdp
+xiV
aag
ajZ
bdH
@@ -95557,18 +95915,18 @@ aaa
aaa
aad
aag
-tNf
-tNf
-tNf
-tNf
-cCG
-cCG
-oZF
-oZF
-oZF
-hLW
-bOy
-cLk
+nBJ
+nBJ
+nBJ
+nBJ
+ldF
+ldF
+bos
+bos
+bos
+haR
+uHT
+jHn
kcp
bWJ
nar
@@ -95581,21 +95939,21 @@ aoi
grG
bXY
alU
-xsW
-uBn
-wJw
-bEz
-bzA
-dRw
-bzy
-bzy
-bzy
-aGh
-kuI
-tQN
-tQN
-tQN
-tQN
+xNM
+ikl
+eLp
+dFM
+lEV
+mZP
+sDx
+sDx
+sDx
+mVh
+sGK
+wid
+wid
+wid
+wid
aag
ajZ
aaa
@@ -95658,10 +96016,10 @@ aaa
bdH
bdH
aad
-sOq
-sOq
-pjr
-vnU
+uDg
+uDg
+xkc
+eeA
cQv
dzG
kde
@@ -95695,10 +96053,10 @@ smZ
wIC
tMH
wIC
-cBQ
-xXu
-lFL
-lFL
+pRs
+pdp
+xiV
+xiV
ajZ
bdH
bdH
@@ -95760,18 +96118,18 @@ aaa
aaa
aad
aag
-tNf
-naW
-cCG
-fvs
-cCG
-eFI
-oZF
-luJ
-bOy
-nrh
-bOy
-jrN
+nBJ
+fUz
+ldF
+eQR
+ldF
+ikA
+bos
+gpO
+uHT
+bKP
+uHT
+sGQ
kcp
wMv
nCR
@@ -95784,21 +96142,21 @@ aoi
bNk
ecZ
alU
-bNW
-uBn
-fut
-pqQ
-pqQ
-pqQ
-bzA
-rEu
-bzy
-aGh
-ffX
-aGh
-lHV
-ftA
-tQN
+odt
+ikl
+qAy
+mua
+mua
+mua
+lEV
+eQz
+sDx
+mVh
+fJu
+mVh
+roj
+qzA
+wid
aag
ajZ
aaa
@@ -95861,10 +96219,10 @@ aaa
bdH
bdH
aad
-sOq
-vvj
-sjC
-mzk
+uDg
+hzN
+gkr
+krG
cQv
rdM
gUg
@@ -95898,10 +96256,10 @@ crp
dco
dqZ
wIC
-fGB
-tyH
-xXu
-lFL
+uxb
+oDh
+pdp
+xiV
ajZ
bdH
bdH
@@ -95963,14 +96321,14 @@ aaa
aaa
aad
aag
-tNf
-cvL
-cCG
-fvs
-cCG
-sep
-oZF
-luJ
+nBJ
+lJM
+ldF
+eQR
+ldF
+lyP
+bos
+gpO
kcp
kcp
iqp
@@ -95987,21 +96345,21 @@ cmJ
alU
alU
alU
-bOe
-nrt
-qyF
-ecR
-uOc
-uOc
-uOc
-bPj
-bzy
-laB
-aGh
-kuI
-kuI
-ucU
-tQN
+wrr
+kjw
+hBr
+tqQ
+hgp
+hgp
+hgp
+nef
+sDx
+mXm
+mVh
+sGK
+sGK
+nhV
+wid
aag
ajZ
aaa
@@ -96064,9 +96422,9 @@ aaa
bdH
bdH
aad
-sOq
-vEq
-sjC
+uDg
+fHb
+gkr
vxM
vxM
vxM
@@ -96102,9 +96460,9 @@ vAG
jIo
wIC
wIC
-tyH
-xXu
-lFL
+oDh
+pdp
+xiV
ajZ
bdH
bdH
@@ -96166,14 +96524,14 @@ aaa
aaa
aad
aag
-tNf
-fvs
-fvs
-cCG
-fvs
-hdO
-oZF
-luJ
+nBJ
+eQR
+eQR
+ldF
+eQR
+sxS
+bos
+gpO
kcp
bBD
bTS
@@ -96181,30 +96539,30 @@ bTS
lxo
qcy
kcp
-kmk
-kmk
-mIJ
-bLt
-bXX
-bKh
-egq
-bKh
-bNp
-fsd
-bKj
-jjs
-jjs
-jjs
-jjs
-jjs
-jYd
+sub
+sub
+tqf
+pHF
+vYd
+ghF
+eSp
+ghF
+aFG
+pPQ
+juS
+mdk
+mdk
+mdk
+mdk
+mdk
+kCd
bSv
bSv
bSv
bSv
bSv
-kuI
-tQN
+sGK
+wid
aag
ajZ
aaa
@@ -96267,9 +96625,9 @@ aaa
bdH
bdH
aad
-sOq
-pjr
-sjC
+uDg
+xkc
+gkr
vxM
rfY
kGu
@@ -96305,9 +96663,9 @@ sJm
dqZ
rDY
wIC
-xXu
-wkw
-lFL
+pdp
+kIf
+xiV
ajZ
bdH
bdH
@@ -96369,14 +96727,14 @@ aaa
aaa
aad
aag
-tNf
-cCG
-cCG
-dzU
-vAB
-gsA
-oZF
-bOy
+nBJ
+ldF
+ldF
+wcJ
+jCr
+nQn
+bos
+uHT
kcp
bTR
iEg
@@ -96384,30 +96742,30 @@ oQM
aqI
aqI
kcp
-jaK
-jxP
-xNL
-bLu
-bBB
-bBB
-bBB
-bBB
-bNp
-mYY
-nka
-afz
-afz
-afz
-afz
-afz
-iDd
+bOw
+mYt
+jsR
+vPW
+vyB
+vyB
+vyB
+vyB
+aFG
+vFp
+yaX
+sje
+sje
+sje
+sje
+sje
+jhS
qih
bTH
foN
cDZ
bSv
-lGZ
-tQN
+hLu
+wid
aag
ajZ
aaa
@@ -96470,9 +96828,9 @@ aaa
bdH
aac
aag
-sOq
-oAr
-pjr
+uDg
+kac
+xkc
vxM
tQi
wee
@@ -96508,9 +96866,9 @@ rWF
uSB
lzY
wIC
-xXu
-xjh
-lFL
+pdp
+ome
+xiV
aag
ajY
bdH
@@ -96572,14 +96930,14 @@ aaa
aaa
aad
aag
-tNf
-qqi
-cCG
-oZF
-oZF
-oZF
-oZF
-bOy
+nBJ
+ecS
+ldF
+bos
+bos
+bos
+bos
+uHT
kcp
lxW
hPh
@@ -96587,30 +96945,30 @@ wGX
bFr
ppe
kcp
-bzA
-bKh
-bKh
-hcs
-kCS
-kCS
-kCS
-kCS
-hHJ
-iWL
-bkD
-afz
-afz
-afz
-afz
-afz
-iDd
+lEV
+ghF
+ghF
+jak
+jdC
+jdC
+jdC
+jdC
+wiQ
+dEo
+fGd
+sje
+sje
+sje
+sje
+sje
+jhS
bSv
tjw
bTH
bTV
bSv
-kuI
-tQN
+sGK
+wid
aag
ajZ
aaa
@@ -96673,9 +97031,9 @@ bdH
bdH
aad
aag
-sOq
-eUe
-vtH
+uDg
+fco
+qsp
vxM
jvP
rDQ
@@ -96711,9 +97069,9 @@ wIC
wIC
wHM
wIC
-pEp
-rlY
-lFL
+dJy
+aCA
+xiV
aag
ajZ
bdH
@@ -96775,14 +97133,14 @@ aaa
aaa
aad
aag
-tNf
-fvs
-cCG
-oZF
-uDl
-eZK
-oZF
-gzE
+nBJ
+eQR
+ldF
+bos
+vkO
+ibf
+bos
+rIw
kcp
wTN
kZN
@@ -96790,30 +97148,30 @@ rgK
hbu
iYe
bJl
-bKa
-bKa
-bKa
-gCl
-bzA
-bzA
-bzA
-bzA
-bNp
-pqQ
-nka
-afz
-afz
-afC
-afz
-afz
-bRx
+yfd
+yfd
+yfd
+kgS
+lEV
+lEV
+lEV
+lEV
+aFG
+mua
+yaX
+sje
+sje
+oiX
+sje
+sje
+rqQ
bSv
ifb
bTH
bSv
xVT
-eEq
-tQN
+flr
+wid
aag
ajZ
aaa
@@ -96876,9 +97234,9 @@ bdH
bdH
aad
aag
-sOq
-naN
-pjr
+uDg
+lDT
+xkc
vxM
sbP
sbP
@@ -96902,7 +97260,7 @@ xuZ
xuZ
xuZ
rEY
-lfa
+gxU
giR
vUP
wIC
@@ -96914,9 +97272,9 @@ wIC
xgI
dBQ
wIC
-gOu
-tDq
-lFL
+oLf
+hIG
+xiV
aag
ajZ
bdH
@@ -96978,14 +97336,14 @@ aaa
aaa
aad
aag
-tNf
-cCG
-fvs
-oZF
-ueH
-oTn
-oZF
-luJ
+nBJ
+ldF
+eQR
+bos
+lBl
+nEO
+bos
+gpO
kcp
oMi
bAZ
@@ -96993,30 +97351,30 @@ bTS
bTS
niR
kcp
-bzA
-bKh
-bKh
-bLt
-bzA
-bKh
-bKh
-bKh
-bNp
-pqQ
-fti
-afz
-afz
-afz
-afz
-afz
-iDd
+lEV
+ghF
+ghF
+pHF
+lEV
+ghF
+ghF
+ghF
+aFG
+mua
+hoc
+sje
+sje
+sje
+sje
+sje
+jhS
bSv
aIX
aIX
bSv
-gib
-yjl
-tQN
+xcI
+sIu
+wid
aag
ajZ
aaa
@@ -97079,9 +97437,9 @@ bdH
bdH
aad
aag
-sOq
-pjr
-sjC
+uDg
+xkc
+gkr
vxM
pas
ncf
@@ -97117,9 +97475,9 @@ wIC
qqV
nNg
wIC
-tyH
-yef
-lFL
+oDh
+xas
+xiV
aag
ajZ
bdH
@@ -97181,14 +97539,14 @@ aaa
aaa
aad
aag
-tNf
-cCG
-fvs
-jtv
-luJ
-luJ
-oZF
-luJ
+nBJ
+ldF
+eQR
+rqv
+gpO
+gpO
+bos
+gpO
kcp
kcp
kcp
@@ -97196,30 +97554,30 @@ sXE
kcp
kcp
kcp
-bzA
-bBB
-bBB
-bLt
-bzA
-bKh
-bBB
-bBB
-bNp
-xgx
-nka
-afz
-afz
-afz
-afz
-afz
-iDd
+lEV
+vyB
+vyB
+pHF
+lEV
+ghF
+vyB
+vyB
+aFG
+pJq
+yaX
+sje
+sje
+sje
+sje
+sje
+jhS
bSv
cop
cop
bSv
-oLa
-kuI
-tQN
+kxe
+sGK
+wid
aag
ajZ
aaa
@@ -97282,9 +97640,9 @@ bdH
bdH
aad
aag
-sOq
-pjr
-sjC
+uDg
+xkc
+gkr
vxM
vxM
vxM
@@ -97320,9 +97678,9 @@ wIC
wIC
wIC
wIC
-tyH
-pwx
-lFL
+oDh
+nEc
+xiV
aag
ajZ
bdH
@@ -97384,45 +97742,45 @@ aaa
aaa
aad
aag
-tNf
-cCG
-fvs
-oZF
-vfn
-luJ
-oZF
-luJ
-jSz
+nBJ
+ldF
+eQR
+bos
+iWH
+gpO
+bos
+gpO
+nEZ
kcp
bTU
gZK
bTS
lyX
kcp
-bAr
-bKh
-bBB
-bLt
-bzA
-bKh
-bBB
-bKh
-bNp
-fsd
-bKj
-eGg
-eGg
-eGg
-eGg
-eGg
-jYd
+rMj
+ghF
+vyB
+pHF
+lEV
+ghF
+vyB
+ghF
+aFG
+pPQ
+juS
+jjl
+jjl
+jjl
+jjl
+jjl
+kCd
bSv
kBY
bTn
bSv
-aGh
-aGh
-tQN
+mVh
+mVh
+wid
aag
ajZ
aaa
@@ -97485,12 +97843,12 @@ aaf
aaf
aag
aag
-sOq
-tnD
-pjr
-ugt
-pjr
-ixl
+uDg
+cUl
+xkc
+ode
+xkc
+gNg
vBm
tJM
viH
@@ -97520,12 +97878,12 @@ jhI
jfY
bra
wIC
-ssx
-sdP
-htn
-tyH
-xXu
-lFL
+eQm
+rXQ
+vky
+oDh
+pdp
+xiV
aag
aag
aaf
@@ -97583,53 +97941,53 @@ aaa
aaa
aaa
aaa
-tNf
-tNf
-tNf
-tNf
-tNf
-fvs
-cCG
-oZF
-oZF
-fCG
-oZF
-bOy
-nkR
+nBJ
+nBJ
+nBJ
+nBJ
+nBJ
+eQR
+ldF
+bos
+bos
+olW
+bos
+uHT
+gUi
kcp
onY
wdf
bTS
kcp
kcp
-bzy
-bKh
-bBB
-bLt
-bzA
-bKh
-bBB
-bKh
-bzy
-tBz
-fBD
-ntt
-jXk
-hdh
-hdh
-hdh
-bRD
+sDx
+ghF
+vyB
+pHF
+lEV
+ghF
+vyB
+ghF
+sDx
+prl
+gNy
+fbU
+vbZ
+qEl
+qEl
+qEl
+vWs
bSv
bSv
bSv
bSv
-kuI
-aGh
-tQN
-tQN
-tQN
-tQN
-tQN
+sGK
+mVh
+wid
+wid
+wid
+wid
+wid
aaa
aaa
aaa
@@ -97689,11 +98047,11 @@ adG
adG
adG
adG
-xKo
-pfy
-ugt
-sjC
-sjC
+rvI
+cYo
+ode
+gkr
+gkr
vBm
vBm
vBm
@@ -97723,11 +98081,11 @@ jES
vBJ
qTQ
wIC
-tyH
-xXu
-htn
-xXu
-xZs
+oDh
+pdp
+vky
+pdp
+paJ
tuA
tuA
tuA
@@ -97786,53 +98144,53 @@ aaa
aaa
aaa
aaa
-tNf
-cCG
-sic
-ydR
-fvs
-fvs
-fvs
-cCG
-gPs
-ydR
-qiD
-bOy
-bxZ
+nBJ
+ldF
+jsE
+rdN
+eQR
+eQR
+eQR
+ldF
+sXq
+rdN
+rMO
+uHT
+hfv
kcp
xNz
utK
rKA
kcp
kcp
-bzy
-bXs
-bBB
-bLt
-bzA
-bKh
-bBB
-bXZ
-bzy
-bAg
-bBB
-qJN
-jjZ
-bzH
-bBB
-bzA
-cBl
-bRU
-aGh
-ixc
-kuI
-aGh
-aGh
-aGh
-kuI
-xow
-kuI
-tQN
+sDx
+hIF
+vyB
+pHF
+lEV
+ghF
+vyB
+kEW
+sDx
+xHl
+vyB
+mQd
+akn
+vTM
+vyB
+lEV
+meE
+gGw
+mVh
+iBu
+sGK
+mVh
+mVh
+mVh
+sGK
+gDX
+sGK
+wid
aaa
aaa
aaa
@@ -97895,8 +98253,8 @@ akC
akC
akC
akC
-sLs
-sjC
+uvp
+gkr
vBm
mvE
tak
@@ -97926,8 +98284,8 @@ vAG
opF
pDW
wIC
-tyH
-iJb
+oDh
+lhj
kCi
kCi
kCi
@@ -97989,16 +98347,16 @@ aaa
aaa
aaa
aaa
-aPy
-aPY
-aQv
-aQv
-aQv
-aQv
-aQv
-aQv
-aQv
-aQv
+fwK
+cZB
+uaG
+uaG
+uaG
+uaG
+uaG
+uaG
+uaG
+uaG
bcm
bcm
kcp
@@ -98008,34 +98366,34 @@ kcp
kcp
kcp
kcp
-bzy
-bZL
-cat
-caC
-caD
-bZL
-cat
-bZL
-bzy
-bzy
-bzy
-bzy
-bzy
-bzy
-bzy
-bzy
-bzy
-bzy
-bJh
-bJh
-cmH
-bJh
-bJh
-bJh
-bJh
-bJh
-ces
-bSg
+sDx
+lQB
+qax
+jTH
+gPU
+lQB
+qax
+lQB
+sDx
+sDx
+sDx
+sDx
+sDx
+sDx
+sDx
+sDx
+sDx
+sDx
+rgt
+rgt
+sYr
+rgt
+rgt
+rgt
+rgt
+rgt
+ctw
+hAh
aaa
aaa
aaa
@@ -98098,8 +98456,8 @@ sFf
bbV
bzz
akC
-qoj
-sjC
+pzc
+gkr
vBm
qkn
eRL
@@ -98129,8 +98487,8 @@ vzj
wIC
wIC
wIC
-tyH
-mWh
+oDh
+nYi
kCi
sDD
kOv
@@ -98192,16 +98550,16 @@ aaa
aaa
aaa
aaa
-aPy
-dhZ
-aQv
-bbn
-bmu
-bot
-bpU
-rFB
-bmu
-aQv
+fwK
+elY
+uaG
+vjk
+lxd
+dPk
+nBV
+dyq
+lxd
+uaG
lYN
byr
aXh
@@ -98229,16 +98587,16 @@ aXj
qUh
xyw
ccG
-bJh
-cax
-cet
-cfx
-cgG
-cex
-dfc
-bJh
-bJO
-bSg
+rgt
+gMS
+vXF
+hsc
+epk
+lwG
+uJb
+rgt
+wRf
+hAh
aaa
aaa
aaa
@@ -98301,8 +98659,8 @@ nIt
adu
aHZ
akC
-naN
-sjC
+lDT
+gkr
vBm
rJN
nJz
@@ -98332,8 +98690,8 @@ aTg
rFg
kkv
wIC
-xXu
-xXu
+pdp
+pdp
kCi
uAj
qfa
@@ -98395,16 +98753,16 @@ aaa
aaa
aaa
aaa
-bhh
-aPZ
-bhh
-bjL
-bmw
-kIm
-bmw
-brO
-bmx
-bvT
+okd
+lql
+okd
+urk
+fmZ
+ePq
+fmZ
+cqd
+jhc
+eml
btO
aYt
bzQ
@@ -98432,16 +98790,16 @@ bVM
bVM
bwn
bVM
-cdb
-cdw
-bGp
-cfy
-rBk
-cfy
-cim
-cjl
-bRz
-cjm
+oTH
+kUA
+gRJ
+mqB
+vjG
+mqB
+oQw
+avp
+oAa
+efk
aaa
aaa
aaa
@@ -98504,8 +98862,8 @@ nkx
bbZ
btv
akC
-isz
-sjC
+lCm
+gkr
vBm
vBm
knO
@@ -98535,8 +98893,8 @@ aTg
wIC
wIC
wIC
-xXu
-vcl
+pdp
+iEa
kCi
eqI
ssZ
@@ -98598,16 +98956,16 @@ aaa
aaa
aaa
aaa
-bhh
-aPZ
-bhh
-bjM
-bmx
-eBC
-aZB
-qld
-kyZ
-bvT
+okd
+lql
+okd
+nDb
+jhc
+ccL
+rDf
+xZM
+mnc
+eml
btO
aYt
aYt
@@ -98635,16 +98993,16 @@ aYt
aYt
aYt
btO
-cdc
-jdk
-mLu
-erS
-pZo
-cdx
-cin
-cjm
-bRA
-cjm
+tpG
+wdQ
+ybP
+dhQ
+dcx
+mLg
+wAK
+efk
+bTz
+efk
aaa
aaa
aaa
@@ -98707,9 +99065,9 @@ pvP
adu
aHZ
akC
-myy
-dwX
-sBD
+jdn
+lgk
+hMM
vBm
rRr
dFU
@@ -98737,9 +99095,9 @@ wtY
aTg
jIT
wIC
-rlY
-xXu
-xXu
+aCA
+pdp
+pdp
kCi
nwW
btD
@@ -98801,16 +99159,16 @@ aaa
aaa
aaa
aaa
-bhh
-aPZ
-bhh
-bjM
-bmx
-bmx
-bmx
-brP
-qTZ
-bvT
+okd
+lql
+okd
+nDb
+jhc
+jhc
+jhc
+vOV
+eAm
+eml
btO
aYu
aYu
@@ -98838,16 +99196,16 @@ aYu
aYu
aYu
btO
-cdc
-nEs
-cev
-cdx
-cdx
-cdx
-cin
-cjm
-bRA
-cjm
+tpG
+hbA
+uky
+mLg
+mLg
+mLg
+wAK
+efk
+bTz
+efk
aaa
aaa
aaa
@@ -98910,9 +99268,9 @@ adu
adu
aHZ
akC
-soC
-xkE
-soC
+pek
+rir
+pek
vBm
hqU
gcT
@@ -98940,9 +99298,9 @@ yeR
aTg
nNg
wIC
-apx
-wfd
-apx
+pjz
+uTs
+pjz
kCi
nRR
btD
@@ -99004,16 +99362,16 @@ aaa
aaa
aaa
aaa
-bhh
-aPZ
-bhh
-bjN
-bmy
-pAR
-hHR
-brQ
-btp
-bvV
+okd
+lql
+okd
+bRt
+oGm
+hPD
+aIy
+ekR
+gWm
+mpV
bvf
bdL
bvf
@@ -99041,16 +99399,16 @@ bvf
bvf
bdL
bvf
-cdd
-cdy
-cew
-cfz
-sSY
-kZA
-cio
-cjm
-bRA
-cjm
+srh
+gKo
+fsf
+fuU
+cnI
+qfq
+vjT
+efk
+bTz
+efk
aaa
aaa
aaa
@@ -99113,9 +99471,9 @@ nIt
adu
hxG
akC
-sUI
-ihF
-xLp
+ibP
+loE
+cmr
vBm
vBm
vBm
@@ -99143,9 +99501,9 @@ wIC
wIC
wIC
wIC
-pVK
-tqG
-mGE
+hrI
+ioM
+xCy
kCi
nNt
vqC
@@ -99207,16 +99565,16 @@ aaa
aaa
aaa
aaa
-aPy
-hhe
-aQv
-bjO
-bmu
-bou
-bpW
-rFB
-bmu
-aQv
+fwK
+jru
+uaG
+vaM
+lxd
+cif
+jaz
+dyq
+lxd
+uaG
vCg
bHB
xyw
@@ -99244,16 +99602,16 @@ xyw
xyw
bHB
osx
-bJh
-cdz
-aTq
-cfA
-cgH
-cex
-dfc
-bJh
-tdK
-bSg
+rgt
+qTu
+wlD
+gTk
+qSI
+lwG
+uJb
+rgt
+oCa
+hAh
aaa
aaa
aaa
@@ -99316,10 +99674,10 @@ wmg
adu
cqQ
afT
-gRB
-jfn
-oyg
-rRg
+txy
+rbp
+cri
+euL
hiM
hiM
qRj
@@ -99345,10 +99703,10 @@ xuZ
pcj
hXm
fZq
-kXV
-wbT
-xJK
-xJK
+iFA
+sLx
+twQ
+twQ
bpd
bqT
vZv
@@ -99410,16 +99768,16 @@ aaa
aaa
aaa
aaa
-aPy
-aPY
-aQv
-aQv
-aQv
-aQv
-aQv
-aQv
-vak
-ovP
+fwK
+cZB
+uaG
+uaG
+uaG
+uaG
+uaG
+uaG
+hte
+lma
xyw
bHB
xyw
@@ -99448,15 +99806,15 @@ xyw
bHB
xyw
bcm
-vAw
-vAw
-vAw
-vAw
-vAw
-vAw
-vAw
-cjK
-bSg
+hOV
+hOV
+hOV
+hOV
+hOV
+hOV
+hOV
+vVZ
+hAh
aaa
aaa
aaa
@@ -99519,10 +99877,10 @@ pvP
adu
frF
akC
-skO
-xLp
-lAX
-tCi
+oUt
+cmr
+iPq
+aMf
vka
vka
mPj
@@ -99544,14 +99902,14 @@ awz
vSN
mPj
rWs
-hIh
+inh
ewr
lPC
mgy
-hCv
-asV
-cxi
-hLD
+qoN
+tVx
+feG
+pPy
kCi
nRR
btM
@@ -99613,16 +99971,16 @@ aaa
aaa
aaa
aaa
-wZa
-lqd
-nqC
-wcx
-nhU
-ybq
-mch
-fGG
-wBl
-sbb
+sGw
+nmp
+eWs
+usq
+rQw
+pOH
+sbt
+smU
+nZR
+lpl
xyw
bHB
gjm
@@ -99651,15 +100009,15 @@ bcb
bHB
btO
bcm
-sBP
-eVY
-nrD
-xUb
-spn
-sWy
-vAw
-fgA
-sNF
+sCW
+nvX
+tTC
+jdu
+tWd
+aPe
+hOV
+ygv
+kyP
aaa
aaa
aaa
@@ -99723,10 +100081,10 @@ tyK
iKI
akC
akC
-tCi
-fwT
-hAd
-hAd
+aMf
+hSv
+xoB
+xoB
kzy
wIQ
jHh
@@ -99750,11 +100108,11 @@ vka
jHh
lnt
ckP
-izT
-izT
-aWY
-uFb
-izT
+xTx
+xTx
+cyv
+eKZ
+xTx
kCi
cfk
uws
@@ -99816,16 +100174,16 @@ aaa
aaa
aaa
aaa
-wZa
-uJT
-nqC
-kWG
-hDA
-qvl
-bQF
-gqy
-jWn
-yeO
+sGw
+klT
+eWs
+njO
+riC
+eqd
+goY
+fqJ
+nOX
+xcV
xyw
bHB
wqh
@@ -99854,15 +100212,15 @@ bcc
bHB
aYt
bcm
-aFx
-nrD
-nrD
-nrD
-nrD
-nrD
-vUs
-cUf
-sNF
+xsQ
+tTC
+tTC
+tTC
+tTC
+tTC
+iho
+uKH
+kyP
aaa
aaa
aaa
@@ -99925,12 +100283,12 @@ akC
akC
akC
akC
-paN
-xLp
-lAX
-qEa
-hAd
-hAd
+ehM
+cmr
+iPq
+oQJ
+xoB
+xoB
vSN
jHh
lnt
@@ -99952,12 +100310,12 @@ sTo
wIQ
jHh
jUY
-izT
-izT
-pVK
-asV
-cxi
-sCs
+xTx
+xTx
+hrI
+tVx
+feG
+bxY
kCi
kCi
kCi
@@ -100019,16 +100377,16 @@ aaa
aaa
aaa
aaa
-wZa
-jca
-ezR
-veX
-veX
-veX
-veX
-duX
-dCb
-yeO
+sGw
+xzB
+bfs
+bYW
+bYW
+bYW
+bYW
+kNf
+vpT
+xcV
xyw
bHB
sXB
@@ -100057,15 +100415,15 @@ fVz
bHB
bBN
bcm
-vUW
-nrD
-nrD
-nrD
-nrD
-voo
-vAw
-qip
-sNF
+uPQ
+tTC
+tTC
+tTC
+tTC
+gzN
+hOV
+uXm
+kyP
aaa
aaa
aaa
@@ -100125,15 +100483,15 @@ adG
adG
adG
adG
-pbd
-xLp
-bUJ
-xLp
-xLp
-lAX
-qEa
-rXM
-hAd
+ltw
+cmr
+oRm
+cmr
+cmr
+iPq
+oQJ
+pcc
+xoB
xDn
uwN
wiN
@@ -100155,15 +100513,15 @@ awz
oWg
uwN
jUY
-izT
-hTj
-pVK
-mSG
-ois
-xnG
-vef
-cxi
-tkX
+xTx
+lym
+hrI
+lIQ
+noy
+rcG
+lwY
+feG
+kfB
tuA
tuA
tuA
@@ -100222,16 +100580,16 @@ aaa
aaa
aaa
aaa
-wZa
-jca
-ezR
-fKv
-mot
-ndc
-veX
-cIl
-dej
-yeO
+sGw
+xzB
+bfs
+qfQ
+cJm
+jwi
+bYW
+phw
+xMG
+xcV
xyw
bHB
aZO
@@ -100260,15 +100618,15 @@ bGF
bHB
aYt
bcm
-oMp
-nrD
-rRP
-tqs
-ciO
-hAu
-vAw
-wXb
-sNF
+vKI
+tTC
+hhd
+ybm
+ffq
+rsV
+hOV
+mLN
+kyP
aaa
aaa
aaa
@@ -100327,16 +100685,16 @@ aag
aag
aag
aag
-btL
-xLp
-rTj
-uNd
-cET
-cET
-hyj
-xLp
-oTN
-hAd
+cZe
+cmr
+lSX
+uaA
+snx
+snx
+fLt
+cmr
+fYr
+xoB
pNa
iCu
awz
@@ -100358,16 +100716,16 @@ awz
ceE
eMP
faX
-izT
-reF
-tqG
-bjH
-tqG
-mSG
-lGW
-pep
-bBp
-teI
+xTx
+tIX
+ioM
+abn
+ioM
+lIQ
+qOY
+xZH
+mSr
+nLp
aag
aag
aag
@@ -100425,16 +100783,16 @@ aaa
aaa
aaa
aaa
-wZa
-jca
-ezR
-xwU
-sIw
-bVk
-veX
-djW
-djW
-lmy
+sGw
+xzB
+bfs
+wVN
+qxI
+qmM
+bYW
+wFN
+wFN
+tGH
hmy
bHB
aZP
@@ -100463,15 +100821,15 @@ bGG
bHB
btO
bcm
-odT
-nrD
-nrD
-nrD
-nrD
-nrD
-vAw
-cUf
-sNF
+kQr
+tTC
+tTC
+tTC
+tTC
+tTC
+hOV
+uKH
+kyP
aaa
aaa
aaa
@@ -100530,9 +100888,9 @@ aag
aag
aag
aag
-btL
-lZD
-vIE
+cZe
+cCL
+vDz
kcH
kcH
kcH
@@ -100568,9 +100926,9 @@ aES
aES
aES
aES
-mSG
-pep
-teI
+lIQ
+xZH
+nLp
aag
aag
aag
@@ -100628,16 +100986,16 @@ aaa
aaa
aaa
aaa
-wZa
-tXA
-ezR
-fiz
-sIw
-sIw
-cWt
-sIw
-sIw
-iny
+sGw
+onv
+bfs
+pjh
+qxI
+qxI
+iXm
+qxI
+qxI
+vvX
xyw
bHB
aZQ
@@ -100666,15 +101024,15 @@ bGH
bHB
btO
bcm
-lim
-bOb
-hvP
-nrD
-nrD
-nrD
-vAw
-cUf
-sNF
+qhG
+krJ
+jOt
+tTC
+tTC
+tTC
+hOV
+uKH
+kyP
aaa
aaa
aaa
@@ -100730,12 +101088,12 @@ aaa
aad
aag
aag
-btL
-btL
-btL
-btL
-lAX
-xLp
+cZe
+cZe
+cZe
+cZe
+iPq
+cmr
kcH
kcH
kcH
@@ -100771,12 +101129,12 @@ tKr
uNg
cLN
aES
-pVK
-asV
-teI
-teI
-teI
-teI
+hrI
+tVx
+nLp
+nLp
+nLp
+nLp
aag
aag
ajZ
@@ -100831,16 +101189,16 @@ aaa
aaa
aaa
aaa
-wZa
-jca
-ezR
-kGh
-sIw
-aDG
-lnG
-bCI
-whX
-qHZ
+sGw
+xzB
+bfs
+wes
+qxI
+dKO
+ykv
+jPu
+qKl
+pPd
xyw
bHB
aZR
@@ -100869,15 +101227,15 @@ bGI
bHB
xyw
bcm
-vyZ
-nrD
-nrD
-nrD
-nrD
-cOy
-vAw
-raT
-sNF
+gOk
+tTC
+tTC
+tTC
+tTC
+bjg
+hOV
+siT
+kyP
aaa
aaa
aaa
@@ -100933,12 +101291,12 @@ aaa
aad
aag
aag
-btL
-fyq
-pcR
-pbd
-lAX
-xLp
+cZe
+ivu
+gSy
+ltw
+iPq
+cmr
kcH
rlf
soq
@@ -100974,12 +101332,12 @@ iTD
vCO
vCO
jxB
-pVK
-asV
-pVK
-pVK
-pVK
-teI
+hrI
+tVx
+hrI
+hrI
+hrI
+nLp
aag
aag
ajZ
@@ -101034,16 +101392,16 @@ aaa
aaa
aaa
aaa
-wZa
-gtF
-ezR
-ezR
-ngc
-ezR
-ezR
-nqC
-nqC
-nqC
+sGw
+dvD
+bfs
+bfs
+sir
+bfs
+bfs
+eWs
+eWs
+eWs
xyw
bHB
aZO
@@ -101071,16 +101429,16 @@ baI
bGF
bHB
eEc
-vAw
-vAw
-nrD
-wkP
-ade
-nrD
-hAu
-vAw
-raT
-sNF
+hOV
+hOV
+tTC
+tSm
+tcd
+tTC
+rsV
+hOV
+siT
+kyP
aaa
aaa
aaa
@@ -101136,12 +101494,12 @@ aaa
aad
aag
aag
-btL
-hpa
-lyL
-cET
-yak
-eAa
+cZe
+nHu
+sit
+snx
+oVY
+cGA
kcH
rBa
nPs
@@ -101177,12 +101535,12 @@ vCO
vCO
vCO
jxB
-cBz
-tgh
-kfV
-qyw
-tcn
-teI
+gUu
+dWc
+lVW
+kcs
+rDH
+nLp
aag
aag
ajZ
@@ -101237,16 +101595,16 @@ aaa
aaa
aaa
aaa
-wZa
-rIG
-nqC
-xWI
-jca
-kXe
-vJO
-uKl
-jsj
-nqC
+sGw
+fea
+eWs
+rsS
+xzB
+mKs
+sCT
+rXU
+rEt
+eWs
wlb
bHB
aZP
@@ -101274,16 +101632,16 @@ baI
bGG
bHB
bGK
-qny
-kYb
-nGz
-cSl
-nMN
-nrD
-sGm
-vAw
-raT
-sNF
+rrh
+xKG
+gyH
+rSx
+dCz
+tTC
+lDA
+hOV
+siT
+kyP
aaa
aaa
aaa
@@ -101339,18 +101697,18 @@ aaa
aad
aag
aag
-btL
-rTj
-kCo
-xLp
-xLp
-jcs
+cZe
+lSX
+nRE
+cmr
+cmr
+sWw
kcH
rIW
oGx
wvU
yiX
-vLX
+nrb
hyQ
aic
aov
@@ -101380,12 +101738,12 @@ wmT
jhW
mWD
jxB
-rgL
-dNy
-koa
-asV
-pVK
-teI
+xBK
+moc
+pYQ
+tVx
+hrI
+nLp
aag
aag
ajZ
@@ -101440,16 +101798,16 @@ aaa
aaa
aaa
aaa
-wZa
-gtF
-vkQ
-jca
-gtF
-jyU
-gtF
-jca
-gtF
-jUK
+sGw
+dvD
+kWI
+xzB
+dvD
+ipk
+dvD
+xzB
+dvD
+meT
wqh
bHB
aZQ
@@ -101477,16 +101835,16 @@ baI
bGH
bHB
cuy
-qny
-slu
-kXq
-nrD
-nrD
-nrD
-wIg
-tcY
-tVl
-sNF
+rrh
+iNR
+uCR
+tTC
+tTC
+tTC
+fca
+vjS
+xee
+kyP
aaa
aaa
aaa
@@ -101540,12 +101898,12 @@ aaa
aaa
aaa
aad
-aXO
-aXO
-btL
-ouy
-xLp
-xLp
+cZe
+cZe
+cZe
+vfS
+cmr
+cmr
agj
agj
agj
@@ -101585,12 +101943,12 @@ aES
aES
aES
aES
-qFr
-fqP
-pVK
-teI
-teI
-teI
+nVn
+cZO
+hrI
+nLp
+nLp
+nLp
ajZ
aaa
aaa
@@ -101643,16 +102001,16 @@ aaa
aac
aaf
aaf
-wZa
-jca
-nqC
-oqW
-jca
-jwa
-uIZ
-jsj
-vJO
-nqC
+sGw
+xzB
+eWs
+omx
+xzB
+rAw
+qNK
+rEt
+sCT
+eWs
pyC
bHB
aZR
@@ -101680,16 +102038,16 @@ baI
bGI
bHB
kwQ
-qny
-slu
-kXq
-dvN
-nrD
-wJT
-voo
-vAw
-cUf
-sNF
+rrh
+iNR
+uCR
+rDR
+tTC
+wyz
+gzN
+hOV
+uKH
+kyP
aaf
aaf
ajY
@@ -101743,11 +102101,11 @@ aaa
aaa
aaa
aad
-huD
-gRq
-cmb
-yai
-xLp
+tvt
+fRg
+peM
+jUV
+cmr
agj
agj
jbN
@@ -101784,16 +102142,16 @@ aVU
aRq
bHG
ceK
-aWj
+sxD
bhJ
bHG
aES
aES
-jLB
-pVK
-exx
-nrg
-vYk
+fMU
+hrI
+dPd
+rLH
+rwZ
ajZ
aaa
aaa
@@ -101845,17 +102203,17 @@ aaa
aaa
aad
aag
-wZa
-wZa
-jca
-nqC
-nqC
-nvA
-nqC
-nqC
-nqC
-nqC
-nqC
+sGw
+sGw
+xzB
+eWs
+eWs
+sOr
+eWs
+eWs
+eWs
+eWs
+eWs
cCE
bHB
aZO
@@ -101883,17 +102241,17 @@ baI
bGF
bHB
iAw
-vAw
-vAw
-nrD
-nrD
-nrD
-xun
-hAu
-vAw
-rLi
-sNF
-sNF
+hOV
+hOV
+tTC
+tTC
+tTC
+jRp
+rsV
+hOV
+kzs
+kyP
+kyP
aag
ajZ
aaa
@@ -101946,11 +102304,11 @@ aaa
aaa
aaa
aad
-huD
-esl
-wBy
-nRC
-xLp
+tvt
+jhR
+fix
+pfL
+cmr
agj
kyR
agc
@@ -101992,11 +102350,11 @@ bpe
brS
rOs
aES
-cGC
-pVK
-pVK
-bxw
-vYk
+dWA
+hrI
+hrI
+dPO
+rwZ
ajZ
aaa
aaa
@@ -102048,17 +102406,17 @@ aaa
aaa
aad
aag
-wZa
-gtF
-jca
-nqC
-aas
-alI
-agw
-anB
-ajp
-vdJ
-bJo
+sGw
+dvD
+xzB
+eWs
+kRU
+dON
+oJj
+vLp
+oYA
+gWt
+jHt
amo
bHB
aZP
@@ -102087,16 +102445,16 @@ bGG
bHB
btO
xjW
-rDC
-nrD
-nrD
-nrD
-kCN
-nrD
-vAw
-iDD
-rhf
-sNF
+uTk
+tTC
+tTC
+tTC
+cyR
+tTC
+hOV
+qpV
+hSb
+kyP
aag
ajZ
aaa
@@ -102149,11 +102507,11 @@ aaa
aaa
aaa
aad
-huD
-fcl
-dXm
-thK
-bTL
+tvt
+oyX
+vBC
+rhm
+she
agj
ogK
qgr
@@ -102195,11 +102553,11 @@ aES
aES
aES
aES
-vMw
-htB
-fII
-fpj
-vYk
+tPc
+jwq
+vwU
+uew
+rwZ
ajZ
aaa
aaa
@@ -102251,17 +102609,17 @@ aaa
aaa
aad
aag
-wZa
-gtF
-jca
-nqC
-aga
-alQ
-amR
-adg
-cdF
-sgw
-bJo
+sGw
+dvD
+xzB
+eWs
+irJ
+bKk
+kil
+vnY
+fCG
+gYg
+jHt
gRP
bHB
aZQ
@@ -102290,16 +102648,16 @@ bGH
bHB
btO
bcm
-gnI
-nrD
-nrD
-uqW
-nrD
-dkv
-vAw
-cUf
-lHU
-sNF
+gBU
+tTC
+tTC
+efJ
+tTC
+sHe
+hOV
+uKH
+vyr
+kyP
aag
ajZ
aaa
@@ -102352,11 +102710,11 @@ aaa
aaa
aaa
aad
-btL
-wEp
-xLp
-xLp
-jQa
+cZe
+kwg
+cmr
+cmr
+jkq
agj
nCx
tYM
@@ -102393,16 +102751,16 @@ ceK
lcy
iTw
ceK
-aWj
+sxD
bhJ
bHG
nis
aES
-cMk
-asV
-taM
-tcn
-teI
+xGF
+tVx
+jne
+rDH
+nLp
ajZ
aaa
aaa
@@ -102454,22 +102812,22 @@ aaa
aaa
aad
aag
-wZa
-ptr
-pvv
-nqC
-aav
-amj
-agG
-anD
-adg
-ajB
-bJo
+sGw
+fzx
+dWJ
+eWs
+yko
+qlL
+oxz
+gnB
+vnY
+mRH
+jHt
xjK
bHB
btO
bdU
-hPf
+aog
bdU
bfV
baM
@@ -102493,16 +102851,16 @@ bcb
bHB
aYt
bcm
-uDT
-nrD
-nrD
-nrD
-nrD
-lRV
-vAw
-cUf
-uTS
-sNF
+ohI
+tTC
+tTC
+tTC
+tTC
+tml
+hOV
+uKH
+hZZ
+kyP
aag
ajZ
aaa
@@ -102555,11 +102913,11 @@ bdH
aaa
aaa
aad
-huD
-szs
-xLp
-riI
-nPF
+tvt
+gJf
+cmr
+hYE
+vAz
agj
nXO
hvH
@@ -102601,11 +102959,11 @@ bpe
brS
cpj
aES
-jLa
-asV
-whv
-tqG
-vYk
+hro
+tVx
+tNB
+ioM
+rwZ
ajZ
aaa
aaa
@@ -102657,17 +103015,17 @@ aaa
aaa
aad
aag
-wZa
-gtF
-lmW
-nqC
-aay
-adg
-amU
-anK
-ccJ
-ajL
-bJo
+sGw
+dvD
+nsd
+eWs
+kqm
+vnY
+wjL
+oGF
+gKK
+dBR
+jHt
bwl
bHB
xyw
@@ -102696,16 +103054,16 @@ bcc
bHB
xyw
bcm
-prS
-nrD
-nrD
-jJl
-nrD
-hAu
-vAw
-raT
-vtL
-sNF
+grT
+tTC
+tTC
+ove
+tTC
+rsV
+hOV
+siT
+bUQ
+kyP
aag
ajZ
aaa
@@ -102758,11 +103116,11 @@ bdH
aaa
aaa
aad
-huD
-dlW
-xLp
-xxr
-lAX
+tvt
+hsu
+cmr
+pFq
+iPq
agj
dyj
fnv
@@ -102804,11 +103162,11 @@ aES
aES
aES
aES
-uyK
-fqP
-psl
-tqG
-vYk
+uhh
+cZO
+ppG
+ioM
+rwZ
ajZ
aaa
aaa
@@ -102860,17 +103218,17 @@ aaa
aaa
aad
aag
-wZa
-gtF
-ykB
-nqC
-aaD
-ahB
-ahB
-anL
-ajz
-aBC
-cfM
+sGw
+dvD
+kFU
+eWs
+oUz
+mqZ
+mqZ
+lVZ
+ctQ
+wer
+pKW
wqh
bHB
vpW
@@ -102899,16 +103257,16 @@ fVz
bHB
vpW
bcm
-gTi
-nrD
-iLv
-nrD
-nrD
-lju
-vAw
-raT
-oPu
-sNF
+cKm
+tTC
+cOh
+tTC
+tTC
+dPq
+hOV
+siT
+xFt
+kyP
aag
ajZ
aaa
@@ -102961,11 +103319,11 @@ bdH
aaa
aaa
aad
-huD
-gSq
-xLp
-nYu
-hYw
+tvt
+hJD
+cmr
+fFQ
+pMH
agj
mXj
mXj
@@ -103002,16 +103360,16 @@ ceK
wVB
psa
ceK
-aWj
+sxD
bhJ
bHG
brS
aES
-cuk
-asV
-bwM
-tqG
-vYk
+jrI
+tVx
+raO
+ioM
+rwZ
ajZ
aaa
aaa
@@ -103063,22 +103421,22 @@ aaa
aaa
aad
aag
-wZa
-jca
-kog
-nqC
-aaK
-cfN
-afe
-adg
-ajz
-aBC
-cfM
+sGw
+xzB
+xer
+eWs
+uES
+xrT
+gYj
+vnY
+ctQ
+wer
+pKW
wqh
bHB
xyw
aho
-vFS
+vWc
geg
aEj
aho
@@ -103102,16 +103460,16 @@ jSo
bHB
xyw
bcm
-xHr
-nrD
-xsy
-nrD
-nrD
-rDC
-vAw
-raT
-oPu
-sNF
+qKb
+tTC
+xQj
+tTC
+tTC
+uTk
+hOV
+siT
+xFt
+kyP
aag
ajZ
aaa
@@ -103164,11 +103522,11 @@ aaa
aaa
aaa
aad
-btL
-rXs
-qKT
-bOz
-lAX
+cZe
+bLc
+fOK
+pWd
+iPq
agj
mXj
pjR
@@ -103210,11 +103568,11 @@ tJi
ivf
bpe
aES
-gvj
-asV
-rDp
-rkF
-teI
+pok
+tVx
+kzc
+gen
+nLp
ajZ
aaa
aaa
@@ -103266,22 +103624,22 @@ aaa
aaa
aad
aag
-wZa
-tYh
-gtF
-nqC
-ceQ
-ceU
-aff
-adg
-ajz
-aBC
-cfM
+sGw
+nkj
+dvD
+eWs
+rVt
+tVZ
+bkS
+vnY
+ctQ
+wer
+pKW
wqh
bHB
ezQ
eXq
-mdT
+fAa
oYp
oZp
eXq
@@ -103305,16 +103663,16 @@ xyw
bHB
aYt
bcm
-iVQ
-nrD
-oqn
-era
-uRh
-sGm
-vAw
-raT
-tdN
-sNF
+jNG
+tTC
+vMb
+xYE
+iuI
+lDA
+hOV
+siT
+fFU
+kyP
aag
ajZ
aaa
@@ -103367,11 +103725,11 @@ aaa
bdH
aaa
aad
-huD
-wcs
-xLp
-meQ
-eAK
+tvt
+nCM
+cmr
+wKb
+pri
agj
qlI
cdB
@@ -103413,11 +103771,11 @@ aES
aES
aES
aES
-vaH
-asV
-lUr
-vGV
-vYk
+gBd
+tVx
+fjz
+hPu
+rwZ
ajZ
aaa
aaa
@@ -103469,21 +103827,21 @@ aac
aaf
aag
aag
-wZa
-pau
-gtF
-nqC
-ceR
-ceU
-aff
-agy
-ajx
-tqg
-bJo
+sGw
+vEI
+dvD
+eWs
+nCe
+tVZ
+bkS
+bfO
+tWL
+aLx
+jHt
mVE
rgy
baN
-iGO
+anU
gEg
imy
gEg
@@ -103512,12 +103870,12 @@ bcm
bcm
bcm
bcm
-vAw
-xkZ
-vAw
-iDD
-vrb
-sNF
+hOV
+pIC
+hOV
+qpV
+nGk
+kyP
aag
aag
aaf
@@ -103570,11 +103928,11 @@ bdH
bdH
aaa
aad
-huD
-nWx
-xLp
-wvt
-rLl
+tvt
+mPw
+cmr
+wGa
+bAy
agj
eBE
hvH
@@ -103611,16 +103969,16 @@ bFC
jUb
qjz
ceK
-aWj
+sxD
bhJ
bHG
gCP
aES
-kqI
-rJf
-kkg
-pVK
-vYk
+imt
+noE
+dcT
+hrI
+rwZ
ajZ
aaa
aaa
@@ -103672,22 +104030,22 @@ aad
aag
aag
aag
-wZa
-ctW
-gtF
-nqC
-abd
-adk
-afu
-anT
-eLz
-uFL
-ssa
+sGw
+oGf
+dvD
+eWs
+jkY
+ktI
+xPn
+xyQ
+ixT
+hBG
+ngK
sqa
hBF
hCt
eXq
-cIq
+qYN
lsD
lkf
eXq
@@ -103715,12 +104073,12 @@ lRX
rux
sEt
bcm
-uhS
-vtL
-vtL
-raT
-vtL
-sNF
+qyG
+bUQ
+bUQ
+siT
+bUQ
+kyP
aag
aag
aag
@@ -103773,11 +104131,11 @@ bdH
bdH
bdH
aad
-huD
-ruD
-xLp
-xLp
-wax
+tvt
+qwY
+cmr
+cmr
+mVA
agj
kSH
hvH
@@ -103819,11 +104177,11 @@ mhm
brS
bpe
aES
-tqG
-fqP
-oHy
-oHy
-vYk
+ioM
+cZO
+pfD
+pfD
+rwZ
ajZ
aaa
aaa
@@ -103875,22 +104233,22 @@ aad
aag
aag
aag
-wZa
-dDQ
-gtF
-nqC
-uZQ
-uZQ
-bJo
-aoH
-aoF
-aBC
-cfM
+sGw
+fzT
+dvD
+eWs
+qmh
+qmh
+jHt
+wSQ
+rOv
+wer
+pKW
wqh
bHB
xyw
aho
-xWV
+dkj
siz
gYt
aho
@@ -103918,12 +104276,12 @@ myo
dtH
eyR
bcm
-wEA
-oPu
-vtL
-cUf
-mkk
-sNF
+rQs
+xFt
+bUQ
+uKH
+gsp
+kyP
aag
aag
aag
@@ -103976,11 +104334,11 @@ bdH
bdH
bdH
aad
-btL
-btL
-btL
-guv
-dYM
+cZe
+cZe
+cZe
+tiX
+vcI
agj
ikQ
hvH
@@ -104022,11 +104380,11 @@ aES
aES
aES
aES
-mOw
-fqP
-teI
-teI
-teI
+ied
+cZO
+nLp
+nLp
+nLp
ajZ
aaa
aaa
@@ -104078,17 +104436,17 @@ aad
aag
aag
aag
-wZa
-bqM
-uJT
-nqC
-cdE
-xSI
-uZQ
-aoH
-aoF
-aBC
-cfM
+sGw
+iPf
+klT
+eWs
+vHp
+gJp
+qmh
+wSQ
+rOv
+wer
+pKW
wqh
bHB
vpW
@@ -104121,12 +104479,12 @@ mhd
aYt
tuN
fPn
-oPu
-oPu
-vtL
-cUf
-vRF
-sNF
+xFt
+xFt
+bUQ
+uKH
+eLC
+kyP
aag
aag
aag
@@ -104181,9 +104539,9 @@ aaa
aad
aag
aag
-btL
-xLp
-udH
+cZe
+cmr
+iNk
agj
muV
hvH
@@ -104220,14 +104578,14 @@ aWq
aXb
aGr
ceK
-aWj
+sxD
bhJ
bHG
cWy
aES
-pVK
-asV
-teI
+hrI
+tVx
+nLp
aag
aag
ajZ
@@ -104281,17 +104639,17 @@ aad
aag
aag
aag
-wZa
-rgC
-jca
-qlt
-adg
-amp
-uZQ
-aoH
-gds
-aky
-bJo
+sGw
+cqp
+xzB
+smH
+vnY
+asE
+qmh
+wSQ
+vop
+tgy
+jHt
vPM
bHB
xyw
@@ -104324,12 +104682,12 @@ omP
aYt
bOC
bcm
-vtL
-oPu
-vtL
-cUf
-mod
-sNF
+bUQ
+xFt
+bUQ
+uKH
+rVc
+kyP
aag
aag
aag
@@ -104384,9 +104742,9 @@ aaa
aad
aag
aag
-btL
-qyj
-nPF
+cZe
+huD
+vAz
agj
mXj
fnv
@@ -104394,7 +104752,7 @@ hvH
hvH
iNY
hvH
-ofp
+hmV
mXj
agj
aic
@@ -104428,9 +104786,9 @@ eBd
brS
cpj
aES
-eqh
-hwQ
-teI
+luE
+wgO
+nLp
aag
aag
ajZ
@@ -104484,22 +104842,22 @@ aad
aag
aag
aag
-wZa
-vLO
-jca
-nqC
-hSL
-agn
-afx
-agX
-ajy
-vwP
-bJo
+sGw
+jOq
+xzB
+eWs
+nso
+jdZ
+pqM
+bZS
+rlD
+uUf
+jHt
kCm
bHB
btO
bea
-jzb
+aoN
bea
bfZ
baS
@@ -104527,12 +104885,12 @@ ivg
llO
kSv
bcm
-oyJ
-ter
-tVJ
-cUf
-oPu
-sNF
+emC
+dZZ
+xmn
+uKH
+xFt
+kyP
aag
aag
aag
@@ -104587,9 +104945,9 @@ aaa
aad
aag
aag
-btL
-cZw
-nPF
+cZe
+pcf
+vAz
agj
agj
agj
@@ -104631,9 +104989,9 @@ aES
aES
aES
aES
-fDT
-eKi
-teI
+hXD
+tYV
+nLp
aag
aag
ajZ
@@ -104687,10 +105045,10 @@ aad
aag
aag
aag
-wZa
-gtF
-kil
-nqC
+sGw
+dvD
+qig
+eWs
eXq
adR
eXq
@@ -104731,11 +105089,11 @@ wXT
cdA
bcm
bcm
-oyJ
-oyJ
-kjE
-oPu
-sNF
+emC
+emC
+mTL
+xFt
+kyP
aag
aag
aag
@@ -104790,9 +105148,9 @@ aaa
aad
aag
aag
-btL
-egW
-kUr
+cZe
+uTE
+fZy
gpY
uBi
wYA
@@ -104834,9 +105192,9 @@ baw
oaK
nUn
pgD
-asV
-pVK
-teI
+tVx
+hrI
+nLp
aag
aag
ajZ
@@ -104890,10 +105248,10 @@ aad
aag
aag
aag
-wZa
-gtF
-gtF
-nqC
+sGw
+dvD
+dvD
+eWs
abG
aeh
afy
@@ -104935,10 +105293,10 @@ aYt
aYt
lrX
bcm
-oin
-raT
-tdN
-sNF
+jGQ
+siT
+fFU
+kyP
aag
aag
aag
@@ -104993,9 +105351,9 @@ bdH
aad
aag
aag
-btL
-xLp
-nPF
+cZe
+cmr
+vAz
gpY
uac
vFw
@@ -105037,9 +105395,9 @@ aZz
wUP
lrF
pgD
-fqP
-pVK
-teI
+cZO
+hrI
+nLp
aag
aag
ajZ
@@ -105093,10 +105451,10 @@ aad
aag
aag
aag
-wZa
-gtF
-uJT
-nqC
+sGw
+dvD
+klT
+eWs
abH
aer
agf
@@ -105138,10 +105496,10 @@ btO
btO
uII
fPn
-uwi
-raT
-vrb
-sNF
+htq
+siT
+nGk
+kyP
aag
aag
aag
@@ -105196,9 +105554,9 @@ abs
abs
abs
abs
-btL
-tCi
-elF
+cZe
+aMf
+wby
gpY
mto
acW
@@ -105240,9 +105598,9 @@ baw
sgU
baw
pgD
-aWY
-uFb
-teI
+cyv
+eKZ
+nLp
tQV
tQV
tQV
@@ -105296,10 +105654,10 @@ aag
aag
aag
aag
-wZa
-gtF
-fgv
-loQ
+sGw
+dvD
+sZc
+dGP
acq
aeJ
azl
@@ -105341,10 +105699,10 @@ aYt
puI
iWx
bcm
-oYP
-cUf
-vtL
-sNF
+ymg
+uKH
+bUQ
+kyP
aag
aag
aag
@@ -105499,10 +105857,10 @@ aag
aag
aag
aag
-wZa
-gtF
-pTD
-nqC
+sGw
+dvD
+iQJ
+eWs
acu
aeh
afF
@@ -105544,10 +105902,10 @@ cdA
bcm
bcm
bcm
-oyJ
-khh
-mPW
-sNF
+emC
+wuh
+fgU
+kyP
aag
aag
aag
@@ -105702,10 +106060,10 @@ aag
aag
aag
aag
-wZa
-cpG
-mcs
-nqC
+sGw
+nHX
+cEA
+eWs
acM
aer
agf
@@ -105745,12 +106103,12 @@ apE
icp
fER
bcm
-oyJ
-ceI
-vtL
-cUf
-rhf
-sNF
+emC
+hVL
+bUQ
+uKH
+hSb
+kyP
aag
aag
aag
@@ -105827,9 +106185,9 @@ awY
kOB
awZ
aiX
-jnw
-aBq
-pRL
+opN
+bDi
+vIr
awF
aEM
aGV
@@ -105905,10 +106263,10 @@ aag
aag
aag
aag
-wZa
-jca
-kGZ
-nqC
+sGw
+xzB
+hRA
+eWs
acZ
aeN
azl
@@ -105948,12 +106306,12 @@ uiT
aYt
jyR
bcm
-aPd
-oPu
-vtL
-cUf
-iBs
-sNF
+fUZ
+xFt
+bUQ
+uKH
+eyM
+kyP
aag
aag
aag
@@ -106030,9 +106388,9 @@ pXx
jrm
evg
aiX
-asj
-aAW
-aCl
+dCb
+dDc
+rdo
awF
aFg
aGY
@@ -106108,10 +106466,10 @@ aag
aag
aag
aag
-wZa
-jca
-fCZ
-nqC
+sGw
+xzB
+ghA
+eWs
vhw
khD
azw
@@ -106151,12 +106509,12 @@ apL
aYt
iKb
bcm
-dUA
-oPu
-vtL
-raT
-gKl
-sNF
+umk
+xFt
+bUQ
+siT
+qBl
+kyP
aag
aag
aag
@@ -106233,9 +106591,9 @@ wWC
auZ
aiX
aiX
-asl
-amO
-aGO
+mJp
+bNT
+cbK
awF
hRk
aGY
@@ -106311,10 +106669,10 @@ aag
aag
aag
aag
-wZa
-tYh
-bQd
-nqC
+sGw
+nkj
+rjF
+eWs
eXq
eXq
eXq
@@ -106354,12 +106712,12 @@ uiT
aYt
xNj
bcm
-rhf
-oPu
-vtL
-cUf
-eAP
-sNF
+hSb
+xFt
+bUQ
+uKH
+pTX
+kyP
aag
aag
aag
@@ -106436,9 +106794,9 @@ pQV
apq
ana
aiX
-asp
-amO
-avj
+glc
+bNT
+rmB
awF
xTL
lmA
@@ -106514,10 +106872,10 @@ aag
aag
aag
aag
-wZa
-jca
-gzx
-nqC
+sGw
+xzB
+oes
+eWs
aRu
aRu
aRu
@@ -106557,12 +106915,12 @@ fpW
llO
vml
bcm
-oyJ
-mod
-mod
-cUf
-rwh
-sNF
+emC
+rVc
+rVc
+uKH
+nBF
+kyP
aag
aag
aag
@@ -106639,9 +106997,9 @@ xQg
wWC
szO
aiX
-atU
-amO
-qLj
+nLM
+bNT
+iPU
awF
awF
aEW
@@ -106717,10 +107075,10 @@ aag
aag
aag
aag
-wZa
-gtF
-gzx
-nqC
+sGw
+dvD
+oes
+eWs
aRu
aRu
aRu
@@ -106756,16 +107114,16 @@ bGO
bHB
uAb
bcm
-oyJ
-riv
-oyJ
-oyJ
-oyJ
-oyJ
-oyJ
-iDD
-vtL
-sNF
+emC
+hvx
+emC
+emC
+emC
+emC
+emC
+qpV
+bUQ
+kyP
aag
aag
aag
@@ -106842,10 +107200,10 @@ yjM
qbO
aqw
hnI
-bYe
-amO
-wZM
-aPm
+kGS
+bNT
+gFN
+bMi
awF
nvG
vGI
@@ -106920,10 +107278,10 @@ aag
aag
aag
aag
-wZa
-gtF
-pTD
-nqC
+sGw
+dvD
+iQJ
+eWs
aRu
aRu
aRu
@@ -106959,16 +107317,16 @@ bcp
bHB
xAY
aYz
-oyJ
-vtL
-wwV
-epq
-xBT
-oyJ
-gKl
-cUf
-vtL
-sNF
+emC
+bUQ
+wDP
+mHF
+hhg
+emC
+qBl
+uKH
+bUQ
+kyP
aag
aag
aag
@@ -107045,10 +107403,10 @@ aqy
nBE
pOD
bZa
-ahM
-aEf
-wZM
-ejp
+nIF
+duR
+gFN
+mqd
awF
aHn
szU
@@ -107123,10 +107481,10 @@ aag
aag
aag
aag
-wZa
-jca
-gzx
-nqC
+sGw
+xzB
+oes
+eWs
aRu
aRu
aRu
@@ -107162,16 +107520,16 @@ bcc
bHB
xAY
aYz
-oyJ
-dSC
-oPu
-oPu
-vtL
-ltw
-oPu
-raT
-vrb
-sNF
+emC
+vFI
+xFt
+xFt
+bUQ
+wdG
+xFt
+siT
+nGk
+kyP
aag
aag
aag
@@ -107248,15 +107606,15 @@ aiX
aiX
aiX
aiX
-atV
-amO
-oXd
-nPh
-nPh
-nPh
-nPh
-nPh
-nPh
+eFI
+bNT
+sQu
+tsr
+tsr
+tsr
+tsr
+tsr
+tsr
aRE
qVC
qVC
@@ -107326,10 +107684,10 @@ aag
aag
aag
aag
-wZa
-ptr
-mcs
-nqC
+sGw
+fzx
+cEA
+eWs
aRu
aRu
aRu
@@ -107365,16 +107723,16 @@ fVz
bHB
uII
ruz
-oyJ
-vnj
-xDy
-oPu
-epp
-oyJ
-oUM
-raT
-oPu
-sNF
+emC
+jev
+aML
+xFt
+oFn
+emC
+jaI
+siT
+xFt
+kyP
aag
aag
aag
@@ -107451,15 +107809,15 @@ aiX
aKG
amb
aiX
-ayT
-amO
-avj
-nPh
-ipF
-aJB
-osQ
-eVP
-nPh
+eWN
+bNT
+rmB
+tsr
+sOL
+jIC
+lFr
+wTu
+tsr
aSq
aTE
aTE
@@ -107529,10 +107887,10 @@ aag
aag
aag
aag
-wZa
-jca
-jLY
-nqC
+sGw
+xzB
+rsP
+eWs
aRu
aRu
aRu
@@ -107568,16 +107926,16 @@ xyw
bHB
uII
wrT
-oyJ
-krm
-hiU
-bkB
-kel
-oyJ
-ygo
-raT
-tdN
-sNF
+emC
+fqb
+ury
+dFW
+mvi
+emC
+daF
+siT
+fFU
+kyP
aag
aag
aag
@@ -107654,15 +108012,15 @@ aqz
aKH
and
aiX
-lzj
-amO
-bYe
-jSF
-uZb
-uZb
-uwk
-nnT
-nPh
+umD
+bNT
+kGS
+fyT
+xIV
+xIV
+edV
+reM
+tsr
aSt
aTE
aTE
@@ -107726,16 +108084,16 @@ aaa
bdH
aaY
aad
-wZa
-wZa
-wZa
-wZa
-wZa
-wZa
-wZa
-gtF
-oiR
-nqC
+sGw
+sGw
+sGw
+sGw
+sGw
+sGw
+sGw
+dvD
+iOX
+eWs
aRu
aRu
aRu
@@ -107777,16 +108135,16 @@ lFp
lFp
lFp
lFp
-pFx
-raT
-oPu
-sNF
-sNF
-sNF
-sNF
-sNF
-sNF
-sNF
+ljm
+siT
+xFt
+kyP
+kyP
+kyP
+kyP
+kyP
+kyP
+kyP
ajZ
aaY
bdH
@@ -107857,15 +108215,15 @@ aiX
aiX
aiX
aiX
-ukh
-amO
-nxK
-nPh
-tHA
-mkb
-iKB
-fdD
-nPh
+cwi
+bNT
+fBA
+tsr
+iPN
+dbX
+rGL
+cyL
+tsr
aSx
aTE
aTG
@@ -107929,16 +108287,16 @@ aaa
bdH
aaY
aad
-wZa
-iJA
-gtF
-jca
-jca
-jca
-gtF
-gtF
-qXg
-nqC
+sGw
+lrH
+dvD
+xzB
+xzB
+xzB
+dvD
+dvD
+wsz
+eWs
aRu
aRu
aRu
@@ -107980,16 +108338,16 @@ kjD
gHl
qoL
lFp
-rhf
-raT
-oPu
-vtL
-vtL
-rYK
-vtL
-gew
-mPB
-sNF
+hSb
+siT
+xFt
+bUQ
+bUQ
+gQQ
+bUQ
+cOt
+uSU
+kyP
ajZ
aaY
bdH
@@ -108060,22 +108418,22 @@ aqz
mBe
atT
aiX
-ayU
-amO
-avm
-nPh
-nPh
-jpX
-nPh
-nPh
-nPh
-mSu
-tms
-mSu
-mSu
-mSu
-mSu
-mSu
+fXf
+bNT
+hCF
+tsr
+tsr
+vOY
+tsr
+tsr
+tsr
+lIj
+mVF
+lIj
+lIj
+lIj
+lIj
+lIj
pgD
nUv
aJU
@@ -108132,16 +108490,16 @@ aaa
bdH
aaY
aad
-wZa
-jca
-jca
-gtF
-gtF
-fgv
-ful
-eSZ
-gHx
-nqC
+sGw
+xzB
+xzB
+dvD
+dvD
+sZc
+abj
+mUE
+coo
+eWs
aRu
aRu
aRu
@@ -108183,16 +108541,16 @@ aId
aId
poA
lFp
-rhf
-lJb
-oPx
-oPx
-xHC
-oPx
-oPx
-pSK
-gKl
-sNF
+hSb
+uGU
+kGi
+kGi
+khI
+kGi
+kGi
+kow
+qBl
+kyP
ajZ
aaY
bdH
@@ -108263,22 +108621,22 @@ aiX
asf
atT
aiX
-mQH
-amT
-ioX
-mSu
-hIT
-upv
-wxn
-xtI
-cJz
-vOb
-vOb
-tEo
-ikL
-alY
-alY
-eFg
+cKW
+mqR
+xZf
+lIj
+tBY
+gkE
+cTM
+rqD
+pcY
+srO
+srO
+lWO
+wjQ
+uag
+uag
+jnh
pgD
lza
gZw
@@ -108335,15 +108693,15 @@ aaa
bdH
aaa
aad
-wZa
-gtF
-gtF
-nqC
-oFv
-oiR
-gEk
-nVC
-rye
+sGw
+dvD
+dvD
+eWs
+jri
+iOX
+kIl
+jmz
+hsK
wfE
wfE
wfE
@@ -108352,9 +108710,9 @@ wfE
wfE
wfE
wfE
-bsk
-sxu
-cBI
+yap
+bqg
+eIO
bkA
eFG
bej
@@ -108370,15 +108728,15 @@ qjN
qjN
oWf
gfW
-tKu
+xgJ
fdZ
bnS
fdZ
-tbd
+tzx
gfW
-bLT
-cbQ
-ccq
+rZt
+qyP
+tuC
lFp
lGg
aId
@@ -108393,9 +108751,9 @@ nmY
nmY
nmY
nmY
-raT
-vtL
-sNF
+siT
+bUQ
+kyP
ajZ
aaa
bdH
@@ -108466,22 +108824,22 @@ aiX
aiX
aiX
aiX
-nVe
-akV
-bRs
-mSu
-mSu
-aux
-mSu
-mSu
-mSu
-mSu
-mSu
-mSu
-mSu
-mSu
-mSu
-gRz
+dRo
+fsu
+enz
+lIj
+lIj
+dvZ
+lIj
+lIj
+lIj
+lIj
+lIj
+lIj
+lIj
+lIj
+lIj
+tWF
pgD
nUv
aJU
@@ -108538,9 +108896,9 @@ aaa
bdH
aaa
aad
-wZa
-gtF
-gtF
+sGw
+dvD
+dvD
wfE
wfE
rXv
@@ -108555,9 +108913,9 @@ bqm
bsD
btr
wfE
-owH
-stY
-owH
+kLE
+lIu
+kLE
bkA
bcC
bej
@@ -108573,15 +108931,15 @@ ham
qjN
oDY
omo
-epW
+fvJ
fdZ
ixj
fdZ
-kmZ
+bET
gfW
-bGT
-bHH
-bGT
+kSA
+tpB
+kSA
lFp
xDF
eRS
@@ -108592,13 +108950,13 @@ nmY
ouw
jDP
aId
-ctX
+xHS
tEd
vjW
nmY
-raT
-vtL
-sNF
+siT
+bUQ
+kyP
ajZ
aaa
bdH
@@ -108644,12 +109002,12 @@ adq
aei
aka
aWn
-uIw
-uIw
-uIw
-uIw
-uIw
-uIw
+njn
+njn
+njn
+njn
+njn
+njn
oGC
awW
acW
@@ -108658,31 +109016,31 @@ awW
awW
fSm
hiy
-apl
-bbL
-bbL
-kij
-bbL
-bYe
-bYe
-yfv
-bbL
-aWl
-bbL
-bbL
-bax
-bbL
-bbL
-aWl
-afv
-yfv
-bbL
-bbL
-bbL
-bbL
-kij
-bbL
-xRU
+ddp
+fCP
+fCP
+stk
+fCP
+kGS
+kGS
+sVA
+fCP
+vUO
+fCP
+fCP
+wzL
+fCP
+fCP
+vUO
+pwd
+sVA
+fCP
+fCP
+fCP
+fCP
+stk
+fCP
+uVg
pEY
jsP
baw
@@ -108691,12 +109049,12 @@ baw
sgU
baw
baw
-ykg
-ykg
-ykg
-ykg
-ykg
-ykg
+nIN
+nIN
+nIN
+nIN
+nIN
+nIN
hXV
yhI
rRz
@@ -108741,9 +109099,9 @@ aaa
bdH
aaa
aad
-wZa
-gtF
-gtF
+sGw
+dvD
+dvD
wfE
mcL
jOo
@@ -108758,9 +109116,9 @@ wFR
wFR
xbk
aWw
-bys
-bxd
-vgC
+cJK
+oGL
+hOu
bkA
eUn
bcD
@@ -108778,13 +109136,13 @@ qyD
omo
blZ
bqN
-gtA
+nTo
bqN
bwR
gfW
-bUe
-cbR
-ccr
+oJL
+jMa
+cVt
sHm
ddM
hZe
@@ -108799,9 +109157,9 @@ dKK
dKK
xry
nmY
-raT
-vtL
-sNF
+siT
+bUQ
+kyP
ajZ
aaa
bdH
@@ -108847,12 +109205,12 @@ adq
apr
apr
aoV
-uIw
-qZx
-qZx
-qZx
-omL
-uIw
+njn
+rWz
+rWz
+rWz
+tWM
+njn
aea
oGC
xjD
@@ -108861,31 +109219,31 @@ ajf
ajf
oAO
pIZ
-aod
-qgG
-amC
-amC
-amC
-fXB
-amC
-amC
-hyc
-all
-all
-amC
-bYh
-amC
-fXB
-fXB
-fBL
-bYc
-bYc
-suV
-bYc
-bYc
-bYc
-qgG
-dqN
+qwf
+jRm
+gDQ
+gDQ
+gDQ
+rUN
+gDQ
+gDQ
+dFd
+rDm
+rDm
+gDQ
+saT
+gDQ
+rUN
+rUN
+bxt
+tPz
+tPz
+tiZ
+tPz
+tPz
+tPz
+jRm
+rHn
tFW
dGC
aZz
@@ -108894,12 +109252,12 @@ aZz
nsc
baw
cxk
-ykg
-iSe
-iSe
-iSe
-wWD
-ykg
+nIN
+rgL
+rgL
+rgL
+nTc
+nIN
wTy
wTy
wTy
@@ -108944,9 +109302,9 @@ aaa
bdH
aaa
aad
-wZa
-pxO
-jca
+sGw
+xiH
+xzB
wfE
dgl
jOo
@@ -108961,9 +109319,9 @@ esM
uUi
xbk
aWw
-aNO
-sLE
-qLo
+gtD
+uRD
+wru
bkA
nvM
bgG
@@ -108985,10 +109343,10 @@ gfW
uFo
omo
gfW
-iRx
-iEb
-bHa
-apm
+eWx
+lLO
+juo
+otq
gJO
pwG
aId
@@ -109002,9 +109360,9 @@ vXf
qGw
uZV
nmY
-cUf
-vtL
-sNF
+uKH
+bUQ
+kyP
ajZ
aaa
bdH
@@ -109050,12 +109408,12 @@ adq
aub
akc
euO
-uIw
-qZx
-qZx
-qZx
-qZx
-uIw
+njn
+rWz
+rWz
+rWz
+rWz
+njn
oGC
sHp
oGC
@@ -109064,31 +109422,31 @@ awW
awW
aSJ
isI
-dtM
-aii
-mce
-avn
-mTb
-avn
-avn
-gyy
-avn
-avn
-avn
-avn
-mRl
-avn
-gyy
-avn
-avn
-avn
-avn
-avn
-mTb
-avn
-nFr
-aii
-ajC
+dgP
+jao
+uIa
+qxK
+rYG
+qxK
+qxK
+iRi
+qxK
+qxK
+qxK
+qxK
+xcY
+qxK
+iRi
+qxK
+qxK
+qxK
+qxK
+qxK
+rYG
+qxK
+bTD
+jao
+uQi
dCD
aXe
baw
@@ -109097,12 +109455,12 @@ baw
mnA
baw
baw
-ykg
-iSe
-iSe
-iSe
-iSe
-ykg
+nIN
+rgL
+rgL
+rgL
+rgL
+nIN
crh
csI
nqG
@@ -109147,9 +109505,9 @@ aaa
bdH
aaa
aad
-wZa
-vLO
-jca
+sGw
+jOq
+xzB
wfE
krp
jOo
@@ -109164,9 +109522,9 @@ wFR
soA
xbk
wfE
-kEb
-sLE
-aLG
+xos
+uRD
+qPk
bCd
iey
baf
@@ -109188,10 +109546,10 @@ bPk
bsj
byb
bCd
-buH
-iEb
-buH
-app
+knm
+lLO
+knm
+yfy
ruL
qUZ
aId
@@ -109205,9 +109563,9 @@ kyh
dKK
xry
nmY
-iDD
-sZQ
-sNF
+qpV
+hNh
+kyP
ajZ
aaa
bdH
@@ -109254,22 +109612,22 @@ avd
akt
awW
qHq
-qZx
-qZx
-qZx
-qZx
-uIw
-ukk
-uIw
-uIw
-uIw
-uIw
-uIw
-uIw
-uIw
-dtM
-aii
-ajC
+rWz
+rWz
+rWz
+rWz
+njn
+vzO
+njn
+njn
+njn
+njn
+njn
+njn
+njn
+dgP
+jao
+uQi
aoe
aoe
aoe
@@ -109289,22 +109647,22 @@ aoe
aoe
aoe
aoe
-aEI
-aii
-aik
-ykg
-ykg
-ykg
-ykg
-ykg
-ykg
-iUS
-ykg
-ykg
-iSe
-iSe
-iSe
-iSe
+maF
+jao
+mOw
+nIN
+nIN
+nIN
+nIN
+nIN
+nIN
+rBD
+nIN
+nIN
+rgL
+rgL
+rgL
+rgL
eOM
baw
sMM
@@ -109350,9 +109708,9 @@ aaa
bdH
aaa
aad
-wZa
-pkx
-jca
+sGw
+eoE
+xzB
wfE
eiP
qOp
@@ -109367,9 +109725,9 @@ qtv
xFZ
btx
naV
-bxk
-aYI
-aLG
+pij
+kJh
+qPk
bCd
tmg
qjN
@@ -109391,10 +109749,10 @@ qjN
tzP
wYK
bCd
-buH
-iEb
-buH
-app
+knm
+lLO
+knm
+yfy
ruL
gsd
aId
@@ -109408,9 +109766,9 @@ hgD
pSQ
dOe
nmY
-bFf
-hlm
-sNF
+rEK
+bba
+kyP
ajZ
aaa
bdH
@@ -109456,23 +109814,23 @@ adq
aGP
aka
aWu
-uIw
-qZx
-qZx
-qZx
-qZx
-uIw
-oOh
-juV
-veN
-ljl
-iSr
-vGw
-fKL
-uIw
-mOL
-aii
-ajC
+njn
+rWz
+rWz
+rWz
+rWz
+njn
+gur
+osn
+vDt
+puJ
+deA
+olC
+ujf
+njn
+xky
+jao
+uQi
aoe
aoh
jHQ
@@ -109492,23 +109850,23 @@ cnV
isN
cnZ
aoe
-dtM
-aii
-ajC
-ykg
-qcM
-qcM
-gxS
-dvx
-gxS
-iov
-nGH
-ykg
-iSe
-iSe
-iSe
-iSe
-ykg
+dgP
+jao
+uQi
+nIN
+cHn
+cHn
+gNo
+aZv
+gNo
+xzh
+dcZ
+nIN
+rgL
+rgL
+rgL
+rgL
+nIN
hWB
yhI
qSX
@@ -109553,9 +109911,9 @@ aaa
bdH
aaa
aad
-wZa
-fSj
-jca
+sGw
+jIJ
+xzB
wfE
fHz
opD
@@ -109570,9 +109928,9 @@ esM
jpt
xbk
aWw
-aLG
-aZi
-cOM
+qPk
+hKe
+uJM
baZ
bep
qjN
@@ -109594,10 +109952,10 @@ qjN
qjN
imo
baZ
-oLv
-iEb
-buH
-app
+sbE
+lLO
+knm
+yfy
ruL
xPq
aId
@@ -109611,9 +109969,9 @@ smW
prP
xXl
nmY
-idV
-aca
-sNF
+idL
+gnM
+kyP
ajZ
aaa
bdH
@@ -109659,23 +110017,23 @@ adq
aGQ
akc
apg
-uIw
-qZx
-qZx
-qZx
-qZx
-uIw
-xHx
-nel
-tqt
-wuP
-tqt
-nel
-xHx
-sWb
-bYe
-akU
-ajC
+njn
+rWz
+rWz
+rWz
+rWz
+njn
+jsA
+cGR
+tey
+urL
+tey
+cGR
+jsA
+tQA
+kGS
+lOn
+uQi
aoe
vbS
arb
@@ -109695,23 +110053,23 @@ cnW
aEi
coa
aoe
-ahr
-akU
-bYe
-dvx
-gxS
-iov
-iov
-ykg
-tEk
-gxS
-gxS
-ykg
-iSe
-iSe
-iSe
-iSe
-ykg
+tWf
+lOn
+kGS
+aZv
+gNo
+xzh
+xzh
+nIN
+gJY
+gNo
+gNo
+nIN
+rgL
+rgL
+rgL
+rgL
+nIN
wvj
csI
iPH
@@ -109756,9 +110114,9 @@ aaa
bdH
aaa
aad
-wZa
-jca
-gtF
+sGw
+xzB
+dvD
wfE
iYx
opD
@@ -109773,9 +110131,9 @@ nEF
tXi
pcE
aWw
-aLG
-aZi
-aLG
+qPk
+hKe
+qPk
hqW
qjN
qjN
@@ -109797,10 +110155,10 @@ hDX
qjN
qjN
jpp
-buH
-iEb
-buH
-eDG
+knm
+lLO
+knm
+hnP
lFp
xlO
aId
@@ -109814,9 +110172,9 @@ oqt
oEy
qmY
tUN
-raT
-urD
-sNF
+siT
+lZb
+kyP
ajZ
aaa
bdH
@@ -109862,23 +110220,23 @@ aee
avd
akt
qWI
-uIw
-uIw
-uIw
-uIw
-uIw
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-ahr
-akU
-ajC
+njn
+njn
+njn
+njn
+njn
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+tWf
+lOn
+uQi
aoe
qQc
fXg
@@ -109898,23 +110256,23 @@ jBy
aEi
fFh
aoe
-dtM
-akU
-ajC
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-ykg
-ykg
-ykg
-ykg
-ykg
+dgP
+lOn
+uQi
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+nIN
+nIN
+nIN
+nIN
+nIN
ehj
irS
ilJ
@@ -109959,9 +110317,9 @@ aaa
bdH
aaa
aad
-wZa
-jca
-gtF
+sGw
+xzB
+dvD
wfE
gww
opD
@@ -109976,9 +110334,9 @@ ljf
maL
uKe
aWw
-aLG
-avX
-tzf
+qPk
+ckh
+gyn
vcq
qPS
qPS
@@ -110000,10 +110358,10 @@ iaF
bqL
bqL
ocf
-bFu
-mKY
-hvp
-mWw
+wwE
+sAD
+cIO
+tAb
vpe
dxT
olN
@@ -110017,9 +110375,9 @@ uxX
oZy
orN
nmY
-aNz
-eDF
-sNF
+lQf
+tHk
+kyP
ajZ
aaa
bdH
@@ -110065,23 +110423,23 @@ adq
aWm
aka
kyY
-uIw
-dDR
-kEJ
-qBE
-qBE
-uWv
-aax
-aax
-aax
+njn
+mfR
+sqP
+tVs
+tVs
+gxm
+tPB
+tPB
+tPB
dkO
aps
aps
aps
-uWv
-vIm
-aii
-ajC
+gxm
+xtO
+jao
+uQi
aoe
vbS
koB
@@ -110101,23 +110459,23 @@ aoe
hFF
aoe
aoe
-dtM
-aii
-ajC
-uWv
+dgP
+jao
+uQi
+gxm
aiJ
aiJ
aiJ
qYr
-atj
-atj
-atj
-uWv
-cNJ
-xfu
-iov
-cNJ
-ykg
+cJV
+cJV
+cJV
+gxm
+ear
+aGm
+xzh
+ear
+nIN
rQW
yhI
tmI
@@ -110162,26 +110520,26 @@ aaa
bdH
aaa
aad
-wZa
-tYh
-gtF
+sGw
+nkj
+dvD
wfE
rYi
opD
wFR
wFR
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-aLG
-aZi
-cOM
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+qPk
+hKe
+uJM
baZ
eyQ
qjN
@@ -110203,26 +110561,26 @@ qjN
qjN
xtM
baZ
-oLv
-hop
-vMx
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
+sbE
+jZe
+cbL
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
iZE
oqt
oZy
qhD
nmY
-raT
-oPu
-sNF
+siT
+xFt
+kyP
ajZ
aaa
bdH
@@ -110268,23 +110626,23 @@ adq
apr
apr
apr
-uIw
-ory
-vGC
-xHx
-xHx
-uWv
-aax
-aax
-aax
+njn
+hzl
+vdT
+jsA
+jsA
+gxm
+tPB
+tPB
+tPB
vQe
aps
aps
aps
-uWv
-ahq
-akU
-ajC
+gxm
+hGo
+lOn
+uQi
aoe
aop
koB
@@ -110304,23 +110662,23 @@ uRt
aQz
aRJ
ajl
-dtM
-akU
-ajC
-uWv
+dgP
+lOn
+uQi
+gxm
aiJ
aiJ
aiJ
str
-atj
-atj
-atj
-uWv
-xfu
-iov
-iov
-rxm
-ykg
+cJV
+cJV
+cJV
+gxm
+aGm
+xzh
+xzh
+moq
+nIN
wTy
wTy
wTy
@@ -110365,26 +110723,26 @@ aaa
bdH
aaa
aad
-wZa
-jca
-gtF
+sGw
+xzB
+dvD
wfE
cVK
opD
oRO
ren
-wdA
+wDr
aeL
aeL
aeL
-aqM
-arO
-arO
-arO
-wdA
-beB
-byI
-beB
+oLj
+wNG
+wNG
+wNG
+wDr
+qZT
+pSF
+eZC
bCd
mlH
bqR
@@ -110394,7 +110752,7 @@ tlA
nyj
vVW
vhX
-lia
+unU
rlZ
twq
vhX
@@ -110406,26 +110764,26 @@ cle
bCe
sdO
bCd
-bJz
-rrV
-bJz
-wdA
-aue
-aue
-aue
-txi
+hBW
+dxJ
+rdT
+wDr
+mQx
+mQx
+mQx
+jsa
azy
azy
azy
-wdA
+wDr
kJH
oqt
qlm
kRD
nmY
-cUf
-oPu
-sNF
+uKH
+xFt
+kyP
ajZ
aaa
bdH
@@ -110471,23 +110829,23 @@ aet
afB
akW
apu
-uIw
-uIw
-lGH
-nel
-evF
-uWv
-acV
-acV
-acV
+njn
+njn
+lBB
+cGR
+mOR
+gxm
+gHX
+gHX
+gHX
vQe
aps
aps
aps
-uWv
-dtM
-nmx
-cpw
+gxm
+dgP
+hBy
+dlT
hSI
pMp
gzK
@@ -110507,23 +110865,23 @@ akw
aQz
aRK
ajl
-aDk
-akU
-ajC
-uWv
+kUs
+lOn
+uQi
+gxm
aiJ
aiJ
aiJ
str
-atl
-atl
-atl
-uWv
-maU
-iov
-gxS
-ykg
-ykg
+oAY
+oAY
+oAY
+gxm
+rTe
+xzh
+gNo
+nIN
+nIN
crh
csI
qhb
@@ -110568,26 +110926,26 @@ aaa
bdH
aaa
aad
-wZa
-jca
-kmL
+sGw
+xzB
+esm
wfE
wfE
viJ
wfE
wfE
-wdA
+wDr
aeL
aeL
aeL
-kHj
-arO
-arO
-arO
-wdA
-aLG
-aZi
-aLG
+uZm
+wNG
+wNG
+wNG
+wDr
+qPk
+hKe
+qPk
bCd
bmn
knH
@@ -110598,7 +110956,7 @@ rHo
kan
kan
kan
-phx
+jXf
kan
kan
kan
@@ -110609,26 +110967,26 @@ kan
iXW
iLs
bCd
-buH
-hop
-buH
-wdA
-aue
-aue
-aue
-tGO
+knm
+jZe
+knm
+wDr
+mQx
+mQx
+mQx
+guK
azy
azy
azy
-wdA
+wDr
euW
rOI
aId
hQP
nmY
-iDD
-vtL
-sNF
+qpV
+bUQ
+kyP
ajZ
aaa
bdH
@@ -110675,22 +111033,22 @@ boL
akY
boL
aiH
-ixB
-nel
-gWj
-evF
-uWv
-adb
-adb
-adb
-uWv
+hbl
+cGR
+fwP
+mOR
+gxm
+tpj
+tpj
+tpj
+gxm
asm
asm
asm
-uWv
-dtM
-ajt
-pvt
+gxm
+dgP
+mxg
+mnV
aoe
pjF
wUd
@@ -110710,22 +111068,22 @@ akw
fOL
aRS
ajl
-ahq
-aii
-ajC
-uWv
+hGo
+jao
+uQi
+gxm
alW
alW
alW
-uWv
-atI
-atI
-atI
-uWv
-xfu
-cNJ
-gxS
-dvx
+gxm
+nVA
+nVA
+nVA
+gxm
+aGm
+ear
+gNo
+aZv
aJU
baw
sMM
@@ -110772,25 +111130,25 @@ aKR
aKR
aKR
aKR
-gtF
-jca
-hkN
-jca
-jca
-fMZ
-kkm
-wdA
+dvD
+xzB
+pIo
+xzB
+xzB
+fQy
+nAm
+wDr
aeL
aeL
aeL
-kHj
-nLg
-nLg
-nLg
-wdA
-aLG
-aZi
-bad
+uZm
+kaq
+kaq
+kaq
+wDr
+qPk
+hKe
+qqf
kan
kan
kan
@@ -110812,25 +111170,25 @@ kan
kan
kan
kan
-bGe
-bHL
-buH
-wdA
-auk
-auk
-auk
-tGO
+tzw
+sPY
+knm
+wDr
+wQu
+wQu
+wQu
+guK
azy
azy
azy
-wdA
+wDr
sJI
aId
aId
hQP
nmY
-cUf
-vtL
+uKH
+bUQ
bVU
bVU
bVU
@@ -110877,23 +111235,23 @@ aez
boL
akY
wrQ
-uIw
-uIw
-uIw
-uIw
-uIw
-uWv
-adb
-adb
-adb
-uWv
+njn
+njn
+njn
+njn
+njn
+gxm
+tpj
+tpj
+tpj
+gxm
asm
asm
asm
-uWv
-dtM
-akU
-wgd
+gxm
+dgP
+lOn
+tQO
sqf
sqf
sqf
@@ -110913,23 +111271,23 @@ upM
akw
alD
vEx
-bYe
-akU
-ajC
-uWv
+kGS
+lOn
+uQi
+gxm
alW
alW
alW
-uWv
-atI
-atI
-atI
-uWv
-ykg
-ykg
-ykg
-ykg
-ykg
+gxm
+nVA
+nVA
+nVA
+gxm
+nIN
+nIN
+nIN
+nIN
+nIN
nTH
sMM
baw
@@ -110975,30 +111333,30 @@ aKS
aKU
aKS
aLL
-cXy
-xXG
-nqC
-fKj
-pkx
-iJA
-gUo
-wdA
+vtJ
+stP
+eWs
+hKO
+eoE
+lrH
+kdo
+wDr
aiR
aiR
aiR
-wdA
-xpI
-xpI
-xpI
-wdA
-aLG
-aZi
-aLG
+wDr
+hwH
+hwH
+hwH
+wDr
+qPk
+hKe
+qPk
kan
-rmB
-vKG
-qFm
-iYR
+qWS
+oDJ
+vaQ
+iIH
rlZ
buu
rlZ
@@ -111015,25 +111373,25 @@ kan
psO
gjK
kan
-buH
-bHL
-buH
-wdA
-aul
-aul
-aul
-wdA
+knm
+sPY
+knm
+wDr
+ydA
+ydA
+ydA
+wDr
azD
azD
azD
-wdA
+wDr
ePN
aId
aId
hQP
nmY
-jVM
-imt
+xUY
+wGe
bSf
bWe
bWn
@@ -111080,23 +111438,23 @@ aet
agS
aiP
aYq
-uIw
-qZx
-qZx
-qZx
-omL
-uWv
-adb
-adb
-adb
-uWv
+njn
+rWz
+rWz
+rWz
+tWM
+gxm
+tpj
+tpj
+tpj
+gxm
asm
asm
asm
-uWv
-dtM
-akU
-ajC
+gxm
+dgP
+lOn
+uQi
sqf
anp
wjz
@@ -111104,8 +111462,8 @@ fnA
jZY
jZY
sqf
-jTb
-iDe
+wpu
+cGp
ajl
ajl
ajl
@@ -111116,23 +111474,23 @@ ajl
onQ
alD
ajl
-hon
-akU
-ajC
-uWv
+bNI
+lOn
+uQi
+gxm
alW
alW
alW
-uWv
-atI
-atI
-atI
-uWv
-iSe
-iSe
-iSe
-wWD
-ykg
+gxm
+nVA
+nVA
+nVA
+gxm
+rgL
+rgL
+rgL
+nTc
+nIN
gnv
yhI
tTu
@@ -111185,23 +111543,23 @@ aLL
aLL
aLL
aLL
-wdA
+wDr
aiR
aiR
aiR
-wdA
-xpI
-xpI
-xpI
-wdA
-aLG
-aZi
-aLG
+wDr
+hwH
+hwH
+hwH
+wDr
+qPk
+hKe
+qPk
kan
-cpU
-xbG
+kAp
+dYU
kan
-jJu
+cWm
soK
gDW
rlZ
@@ -111214,22 +111572,22 @@ rlZ
gYl
frl
wFb
-hEQ
+wzZ
tdI
vbV
kan
-buH
-hop
-buH
-wdA
-aul
-aul
-aul
-wdA
+knm
+jZe
+knm
+wDr
+ydA
+ydA
+ydA
+wDr
azD
azD
azD
-wdA
+wDr
bSf
bSf
auW
@@ -111283,23 +111641,23 @@ aet
agB
akW
aYs
-uIw
-qZx
-qZx
-qZx
-qZx
-uWv
-vKF
-adb
-adb
-uWv
+njn
+rWz
+rWz
+rWz
+rWz
+gxm
+lbc
+tpj
+tpj
+gxm
asm
asm
asm
-uWv
-dtM
-aii
-ajC
+gxm
+dgP
+jao
+uQi
sqf
sOZ
oNJ
@@ -111307,8 +111665,8 @@ eDo
eDo
eDo
sqf
-dfE
-mHv
+vXv
+wub
gXl
ajl
wqW
@@ -111319,23 +111677,23 @@ ajl
aCp
alD
ajl
-wqA
-aii
-ajC
-uWv
+kiq
+jao
+uQi
+gxm
alW
alW
alW
-uWv
-atI
-atI
-xMk
-uWv
-iSe
-iSe
-iSe
-iSe
-ykg
+gxm
+nVA
+nVA
+wZk
+gxm
+rgL
+rgL
+rgL
+rgL
+nIN
vpn
csI
goL
@@ -111388,18 +111746,18 @@ coT
fgh
rZP
gmj
-wdA
+wDr
aiR
aiR
aiR
-wdA
-xpI
-xpI
-xpI
-wdA
-bxD
-byI
-beB
+wDr
+hwH
+hwH
+hwH
+wDr
+iGi
+pSF
+eZC
bst
bst
bst
@@ -111421,18 +111779,18 @@ biA
biA
biA
biA
-bJz
-bHT
-koc
-wdA
-aul
-aul
-aul
-wdA
+hBW
+ltv
+uYM
+wDr
+ydA
+ydA
+ydA
+wDr
azD
azD
azD
-wdA
+wDr
wcN
nGi
bVd
@@ -111487,22 +111845,22 @@ boL
akY
boL
avJ
-qZx
-qZx
-qZx
-qZx
-uWv
-adb
-adb
-adb
-uWv
+rWz
+rWz
+rWz
+rWz
+gxm
+tpj
+tpj
+tpj
+gxm
asm
asm
asm
-uWv
-dtM
-ajt
-aik
+gxm
+dgP
+mxg
+mOw
sqf
anq
awn
@@ -111510,8 +111868,8 @@ xsz
jTj
jTj
sqf
-fYV
-uJP
+lmi
+xgP
dwA
wJo
cyU
@@ -111522,22 +111880,22 @@ fQu
akx
alD
gWG
-dtM
-aii
-ajC
-uWv
+dgP
+jao
+uQi
+gxm
alW
alW
alW
-uWv
-atI
-atI
-atI
-uWv
-iSe
-iSe
-iSe
-iSe
+gxm
+nVA
+nVA
+nVA
+gxm
+rgL
+rgL
+rgL
+rgL
qxz
baw
sMM
@@ -111591,18 +111949,18 @@ uUt
aLW
aLW
guS
-wdA
+wDr
aiR
aiR
aiR
-wdA
-xpI
-xpI
-vgF
-wdA
-jgU
-aZi
-aLG
+wDr
+hwH
+hwH
+srR
+wDr
+cvg
+hKe
+qPk
bst
bui
bvz
@@ -111613,7 +111971,7 @@ bJw
rlZ
hBc
hzs
-kDj
+bHg
hzs
aZK
rlZ
@@ -111624,18 +111982,18 @@ bsQ
bmj
caS
biA
-buH
-bHL
-wWQ
-wdA
-aun
-aul
-aul
-wdA
+knm
+sPY
+jxu
+wDr
+oVk
+ydA
+ydA
+wDr
azD
azD
azD
-wdA
+wDr
wgR
bTO
bTO
@@ -111689,23 +112047,23 @@ aez
boL
akY
aqk
-uIw
-qZx
-qZx
-qZx
-qZx
-uWv
-adb
-adb
-adb
-uWv
+njn
+rWz
+rWz
+rWz
+rWz
+gxm
+tpj
+tpj
+tpj
+gxm
asm
asm
asm
-uWv
-dtM
-aii
-ajC
+gxm
+dgP
+jao
+uQi
sqf
anr
awn
@@ -111725,23 +112083,23 @@ fQu
akx
alD
gWG
-dtM
-aii
-ajC
-uWv
+dgP
+jao
+uQi
+gxm
alW
alW
alW
-uWv
-atI
-atI
-atI
-uWv
-iSe
-iSe
-iSe
-iSe
-ykg
+gxm
+nVA
+nVA
+nVA
+gxm
+rgL
+rgL
+rgL
+rgL
+nIN
xuY
sMM
baw
@@ -111794,18 +112152,18 @@ bbS
xka
uLn
uoA
-wdA
+wDr
aiR
aiR
aiR
-wdA
-xpI
-xpI
-xpI
-wdA
-aLG
-aZi
-aLG
+wDr
+hwH
+hwH
+hwH
+wDr
+qPk
+hKe
+qPk
bst
bcR
bev
@@ -111827,18 +112185,18 @@ bCl
bsz
caT
biA
-buH
-bHL
-buH
-wdA
-aul
-aul
-aul
-wdA
+knm
+sPY
+knm
+wDr
+ydA
+ydA
+ydA
+wDr
azD
azD
azD
-wdA
+wDr
hkB
bTO
qSm
@@ -111892,23 +112250,23 @@ aet
agS
aiP
aYq
-uIw
-qZx
-qZx
-qZx
-qZx
-uWv
-adb
-adb
-adb
-uWv
+njn
+rWz
+rWz
+rWz
+rWz
+gxm
+tpj
+tpj
+tpj
+gxm
asm
asm
asm
-uWv
-aEI
-aii
-ajC
+gxm
+maF
+jao
+uQi
sqf
sqf
awp
@@ -111928,23 +112286,23 @@ ajl
hVz
alD
ajl
-ahr
-aii
-ajC
-uWv
+tWf
+jao
+uQi
+gxm
alW
alW
alW
-uWv
-atI
-atI
-atI
-uWv
-iSe
-iSe
-iSe
-iSe
-ykg
+gxm
+nVA
+nVA
+nVA
+gxm
+rgL
+rgL
+rgL
+rgL
+nIN
gnv
yhI
tTu
@@ -111997,18 +112355,18 @@ rlh
aLW
aLW
gxh
-wdA
+wDr
aiR
aiR
aiR
-wdA
-xpI
-xpI
-xpI
-wdA
-aLG
-aZi
-mzR
+wDr
+hwH
+hwH
+hwH
+wDr
+qPk
+hKe
+tON
bst
bcS
bag
@@ -112030,18 +112388,18 @@ bCm
bsP
hgZ
biA
-buH
-bHL
-buH
-wdA
-aul
-aul
-aul
-wdA
+knm
+sPY
+knm
+wDr
+ydA
+ydA
+ydA
+wDr
azD
azD
azD
-wdA
+wDr
wjC
bTO
xMf
@@ -112095,23 +112453,23 @@ aet
afB
akW
biT
-uIw
-uIw
-uIw
-uIw
-uIw
-uWv
-adc
-adc
-adc
-uWv
-uWv
-uWv
-uWv
-uWv
-kYU
-akU
-rxG
+njn
+njn
+njn
+njn
+njn
+gxm
+hWV
+hWV
+hWV
+gxm
+gxm
+gxm
+gxm
+gxm
+mYd
+lOn
+xwU
ajl
qhx
akw
@@ -112131,23 +112489,23 @@ ajl
nMV
vIf
ajl
-aEI
-akU
-gMa
-uWv
-uWv
-uWv
-uWv
-uWv
-adc
-adc
-adc
-uWv
-ykg
-ykg
-ykg
-ykg
-ykg
+maF
+lOn
+nwu
+gxm
+gxm
+gxm
+gxm
+gxm
+hWV
+hWV
+hWV
+gxm
+nIN
+nIN
+nIN
+nIN
+nIN
crh
csI
qhb
@@ -112200,18 +112558,18 @@ djQ
nFs
aLW
gFa
-wdA
+wDr
aiR
aiR
aiR
-wdA
-xpI
-xpI
-xpI
-wdA
-aLG
-aZi
-aLG
+wDr
+hwH
+hwH
+hwH
+wDr
+qPk
+hKe
+qPk
bst
buj
bev
@@ -112233,18 +112591,18 @@ bCn
bsz
hMN
biA
-buH
-bHL
-buH
-wdA
-aul
-aul
-aul
-wdA
+knm
+sPY
+knm
+wDr
+ydA
+ydA
+ydA
+wDr
azD
azD
azD
-wdA
+wDr
xad
roG
mZr
@@ -112303,18 +112661,18 @@ cWv
cWv
cWv
cWv
-kaj
-uId
-adH
-adH
-fMA
-atC
-bbL
-aWl
-bbL
-wQg
-akU
-bYe
+omp
+kmx
+xog
+xog
+vFy
+ltt
+fCP
+vUO
+fCP
+xRn
+lOn
+kGS
bVE
aos
akw
@@ -112334,23 +112692,23 @@ ans
aos
alE
bVE
-bYe
-akU
-aGd
-aWl
-hJu
-bbL
-atC
-aAa
-aww
-aww
-wst
-axs
-bbL
-bbL
-bYe
-bbL
-bit
+kGS
+lOn
+mnC
+vUO
+qRx
+fCP
+ltt
+cuI
+ocX
+ocX
+sYj
+fvj
+fCP
+fCP
+kGS
+fCP
+oiB
baw
baw
qYC
@@ -112403,18 +112761,18 @@ aLL
aLL
aLL
hrF
-wdA
-wdA
-wdA
-wdA
-wdA
-kaF
-jWU
-jWU
-wdA
-pGM
-aZi
-aLG
+wDr
+wDr
+wDr
+wDr
+wDr
+jXR
+enK
+enK
+wDr
+kgt
+hKe
+qPk
bst
aYQ
bbd
@@ -112436,18 +112794,18 @@ bnT
btX
byc
biA
-buH
-bHL
-bIR
-wdA
-cyG
-cyG
-sos
-wdA
-wdA
-wdA
-wdA
-wdA
+knm
+sPY
+qPU
+wDr
+sai
+sai
+wrN
+wDr
+wDr
+wDr
+wDr
+wDr
bSf
bSf
auX
@@ -112506,18 +112864,18 @@ boL
boL
boL
boL
-kGL
-uTY
-azY
-azY
-azY
-atC
-abx
-abx
-abx
-abx
-tal
-ait
+fGD
+bfb
+qEc
+qEc
+qEc
+ltt
+gfv
+gfv
+gfv
+gfv
+aPC
+tzF
aEe
akA
akA
@@ -112537,23 +112895,23 @@ akA
oap
aSb
aEe
-ait
-bjJ
-abx
-abx
-abx
-abx
-atC
-azY
-azY
-azY
-fad
-kGL
-abg
-abg
-abg
-abg
-ajC
+tzF
+lzF
+gfv
+gfv
+gfv
+gfv
+ltt
+qEc
+qEc
+qEc
+rWP
+fGD
+acQ
+acQ
+acQ
+acQ
+uQi
baw
vbB
ley
@@ -112599,25 +112957,25 @@ aKS
aKV
aKS
aLL
-jBI
-sro
-pAH
-nqL
-ecf
-eNq
-mLr
-gnh
-pWg
-lGh
-aQt
-lDg
-lpD
-wGA
-lpD
-hmc
-tBF
-jWt
-aLG
+qVE
+iGc
+bwG
+hCk
+nRN
+mzI
+olQ
+oCK
+eob
+gMk
+qRb
+axY
+xrC
+oWF
+xrC
+toQ
+exl
+qyX
+qPk
bst
bst
bst
@@ -112627,7 +112985,7 @@ bst
cjW
rlZ
rlZ
-tZO
+hrJ
kan
biy
boX
@@ -112639,25 +112997,25 @@ biA
biA
biA
biA
-ghD
-vdW
-hvp
-ayE
-azE
-ajd
-azS
-chE
-azI
-ciT
-cjw
-cjS
-ckl
-ckI
-cla
-cly
-vOK
-hVl
-fkF
+wHn
+rDO
+cIO
+rEd
+fml
+fqU
+bIO
+rSA
+cIm
+emw
+bvD
+gZW
+lUA
+bwv
+hDU
+iNH
+cDx
+ndl
+iDk
bSf
bWe
bWp
@@ -112709,18 +113067,18 @@ dux
iYr
dux
ado
-atC
-kHT
-avn
-avn
-mTb
-atC
-avn
-avn
-avn
-nFr
-ajt
-ajC
+ltt
+uVZ
+qxK
+qxK
+rYG
+ltt
+qxK
+qxK
+qxK
+bTD
+mxg
+uQi
vOy
vOy
vOy
@@ -112740,23 +113098,23 @@ vOy
wMO
wky
sqf
-hon
-ajt
-mce
-avn
-avn
-avn
-atC
-mTb
-avn
-avn
-aim
-atC
-avn
-bYe
-cre
-avn
-aim
+bNI
+mxg
+uIa
+qxK
+qxK
+qxK
+ltt
+rYG
+qxK
+qxK
+fdf
+ltt
+qxK
+kGS
+ftZ
+qxK
+fdf
baw
dBp
gVA
@@ -112802,25 +113160,25 @@ aKR
aKR
aKR
aKR
-xnn
-wli
-mfc
-wli
-wli
-ijw
-kYj
-xnn
-pAH
-aNn
-aNO
-asO
-apC
-apC
-apC
-aqx
-aLG
-aYO
-aLG
+deq
+lfx
+jgK
+lfx
+lfx
+yih
+kgD
+deq
+bwG
+vVy
+gtD
+vEv
+cvI
+cvI
+cvI
+aza
+qPk
+wKN
+qPk
kan
ihw
beW
@@ -112830,7 +113188,7 @@ vhX
akQ
rlZ
rlZ
-jAl
+pnC
dBH
bky
ryt
@@ -112842,25 +113200,25 @@ tAU
xmT
tAU
kan
-buH
-bHL
-buH
-azB
-azT
-azT
-azT
-azG
-bHa
-ccU
-kzP
-cjT
-ckm
-bHa
-clb
-clz
-rng
-hIq
-cER
+knm
+sPY
+knm
+qEM
+wzy
+wzy
+wzy
+qEM
+juo
+seL
+siC
+jNw
+xuy
+juo
+vqz
+vMU
+mJO
+vDN
+xbg
bVU
bVU
bVU
@@ -112921,9 +113279,9 @@ abE
abE
abE
abE
-jKK
-pjM
-aim
+bff
+rnd
+fdf
vOy
nos
fcy
@@ -112943,27 +113301,27 @@ ayX
kXw
pxo
sqf
-kHT
-pjM
-aim
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-vhb
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-ckw
+uVZ
+rnd
+fdf
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+oiq
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+woU
aaa
aaa
aaa
@@ -113004,26 +113362,26 @@ aaa
aaa
bdH
aad
-nnw
-xnn
-wli
-pAH
+kyw
+deq
+lfx
+bwG
aQF
aQF
aQF
aQF
szE
aQF
-bBb
-jtJ
-asO
-asP
-uKA
-asP
-aqx
-aLG
-aZi
-aLG
+ihW
+qOS
+vEv
+xkN
+dwj
+xkN
+aza
+qPk
+hKe
+qPk
kan
iMI
rlZ
@@ -113045,26 +113403,26 @@ wJb
wJb
bPu
kan
-buH
-bHL
-buH
-azB
-qKM
-rYj
-ssE
-azG
-uxZ
-vgk
-rng
-rng
-rng
+knm
+sPY
+knm
+qEM
+hEg
+ewc
+lLl
+qEM
+jvD
+cBV
+mJO
+mJO
+mJO
bTq
-rng
-rng
-rng
-jbS
-cER
-qbs
+mJO
+mJO
+mJO
+mgb
+xbg
+lyW
ajZ
bdH
aaa
@@ -113124,9 +113482,9 @@ gwo
aed
aeG
abE
-atL
-akV
-atL
+umI
+fsu
+umI
vOy
oNp
aSn
@@ -113146,27 +113504,27 @@ niL
kXw
pxo
sqf
-atL
-bkQ
-atL
-lYm
-wqU
-wqU
-wqU
-wqU
-sLJ
+umI
+uch
+umI
+mRU
+qSw
+qSw
+qSw
+qSw
+fHM
pBG
rLp
ttX
-lYm
-dhe
-lYm
-kDP
-eYw
-lEz
-jsn
-kyQ
-ckw
+mRU
+vpf
+mRU
+vor
+qnA
+vkI
+gNN
+lyz
+woU
aaa
aaa
aaa
@@ -113207,10 +113565,10 @@ aaa
aaa
bdH
aad
-nnw
-sMe
-wli
-pAH
+kyw
+xwd
+lfx
+bwG
weR
aPE
weR
@@ -113224,9 +113582,9 @@ aQF
aQF
aQF
aQF
-esi
-byI
-beB
+mNG
+pSF
+eZC
kan
avW
bZn
@@ -113236,7 +113594,7 @@ vhX
gDW
rlZ
rlZ
-jmm
+wYr
dBH
bky
ryt
@@ -113248,9 +113606,9 @@ xIk
cLA
xIk
kan
-bJz
-bHT
-quI
+hBW
+ltv
+qEz
bJt
bJt
bJt
@@ -113258,16 +113616,16 @@ bJt
bJt
bJt
bJt
-rng
-kks
-kks
-kks
-kks
-owS
-rng
-jbS
-jbS
-qbs
+mJO
+plv
+plv
+plv
+plv
+mvg
+mJO
+mgb
+mgb
+lyW
ajZ
bdH
aaa
@@ -113327,9 +113685,9 @@ adF
aef
dWw
agA
-ago
-snm
-cwJ
+okx
+hgA
+xfo
vOy
anz
vgx
@@ -113349,27 +113707,27 @@ aCC
kXw
pxo
asn
-ago
-asW
-cwJ
-lYm
-wqU
-wqU
-wqU
-wqU
-wqU
+okx
+cFH
+xfo
+mRU
+qSw
+qSw
+qSw
+qSw
+qSw
pBG
jZU
jAe
-lYm
-iTV
-lYm
-oDh
-xXD
-vbJ
-iTV
-vLd
-ckw
+mRU
+jtU
+mRU
+tNw
+ebI
+ukC
+jtU
+fCi
+woU
aaa
aaa
aaa
@@ -113410,14 +113768,14 @@ aaa
aaa
bdH
aad
-nnw
-xnn
-eSH
-pAH
-xtr
-xtr
-jXC
-jXC
+kyw
+deq
+cGY
+bwG
+rUq
+rUq
+sab
+sab
izk
aWD
cWr
@@ -113427,9 +113785,9 @@ eKT
wan
cTC
aQF
-pno
-aYO
-bad
+syj
+wKN
+qqf
xMs
xMs
xMs
@@ -113439,7 +113797,7 @@ xMs
cjW
rlZ
rlZ
-bvm
+jbO
kan
quv
rZB
@@ -113451,9 +113809,9 @@ vMo
vMo
vMo
vMo
-bGe
-bHL
-smn
+tzw
+sPY
+hkC
bJt
xOL
gGI
@@ -113461,16 +113819,16 @@ eeu
gfq
eFP
gAz
-rng
-kks
-kks
-kks
-kks
-kks
-rng
-cER
-rzK
-qbs
+mJO
+plv
+plv
+plv
+plv
+plv
+mJO
+xbg
+pgJ
+lyW
ajZ
bdH
aaa
@@ -113530,9 +113888,9 @@ adF
aef
aef
uZZ
-bYe
-amO
-avj
+kGS
+bNT
+rmB
vOy
awQ
oLU
@@ -113552,27 +113910,27 @@ edv
kXw
pxo
asn
-ayT
-akU
-avj
-lYm
-wqU
-wqU
-wqU
-wqU
-wqU
+eWN
+lOn
+rmB
+mRU
+qSw
+qSw
+qSw
+qSw
+qSw
pBG
cVq
nOb
-lYm
-uCU
-lYm
-lYm
-lYm
-hdf
-lYm
-lYm
-ckw
+mRU
+vpI
+mRU
+mRU
+mRU
+gBs
+mRU
+mRU
+woU
aaa
aaa
aaa
@@ -113613,12 +113971,12 @@ aaa
aaa
bdH
aad
-nnw
-xnn
-dle
-pAH
-hys
-jXC
+kyw
+deq
+veq
+bwG
+pKh
+sab
rDv
bmW
jWu
@@ -113630,9 +113988,9 @@ aRy
aRy
nIj
aQF
-aWM
-aZi
-aLG
+rWv
+hKe
+qPk
xMs
aSO
feY
@@ -113654,9 +114012,9 @@ wZE
iGn
byd
vMo
-buH
-bHL
-buH
+knm
+sPY
+knm
lhB
pOY
bDs
@@ -113664,16 +114022,16 @@ jge
bDs
bDs
hLC
-rng
-kks
-kks
-kks
-kks
-kks
-rng
-cER
-jbS
-qbs
+mJO
+plv
+plv
+plv
+plv
+plv
+mJO
+xbg
+mgb
+lyW
ajZ
bdH
aaa
@@ -113733,9 +114091,9 @@ adF
bls
aeH
agq
-ahM
-kSJ
-avj
+nIF
+ijn
+rmB
vOy
hng
dnC
@@ -113755,27 +114113,27 @@ aCt
kXw
pxo
asn
-ayT
-aii
-avm
-lYm
-wqU
-wqU
-wqU
-wqU
-wqU
+eWN
+jao
+hCF
+mRU
+qSw
+qSw
+qSw
+qSw
+qSw
pBG
dzp
ngV
-lYm
-iTV
-iTV
-qHK
-uPD
-dhe
-rkS
-dhe
-ckw
+mRU
+jtU
+jtU
+uBx
+fLi
+vpf
+prf
+vpf
+woU
aaa
aac
aaf
@@ -113816,10 +114174,10 @@ aaa
aaa
bdH
aad
-nnw
-xnn
-wbm
-pAH
+kyw
+deq
+deF
+bwG
mTi
lJK
kYV
@@ -113833,9 +114191,9 @@ bQU
bQU
bjD
dqE
-aem
-mUa
-uLv
+htl
+vaq
+vTX
xMs
lOH
dUS
@@ -113857,9 +114215,9 @@ bof
vit
dxu
vMo
-buH
-bHL
-buH
+knm
+sPY
+knm
lhB
xCb
bDs
@@ -113867,16 +114225,16 @@ bIJ
bDs
bDs
qJS
-rng
-kks
-kks
-kks
-kks
-kks
-rng
-cER
-cER
-qbs
+mJO
+plv
+plv
+plv
+plv
+plv
+mJO
+xbg
+xbg
+lyW
ajZ
aaa
avo
@@ -113936,9 +114294,9 @@ adF
aef
kqN
agA
-ayT
-ajt
-avm
+eWN
+mxg
+hCF
vOy
xyt
wiW
@@ -113958,10 +114316,10 @@ vOy
mFq
vqW
sqf
-ybf
-aii
-avj
-lYm
+jMP
+jao
+rmB
+mRU
pBG
pBG
pBG
@@ -113970,15 +114328,15 @@ pBG
pBG
saL
pBG
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-iTV
-dhe
-ckw
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+jtU
+vpf
+woU
aaa
aad
aag
@@ -114019,15 +114377,15 @@ aaa
aaa
bdH
aad
-nnw
-xnn
-dpD
-pAH
+kyw
+deq
+oWq
+bwG
aQF
aQF
aPH
xIQ
-mrm
+tmX
aWD
rrK
aRy
@@ -114036,9 +114394,9 @@ brb
cpp
buv
aWF
-aLG
-aZi
-aLG
+qPk
+hKe
+qPk
xMs
akE
qGF
@@ -114060,9 +114418,9 @@ ggz
dka
bye
vMo
-buH
-bHL
-buH
+knm
+sPY
+knm
lhB
aQW
bDs
@@ -114077,9 +114435,9 @@ bJt
bJt
bJt
bJt
-cER
-keN
-qbs
+xbg
+otW
+lyW
ajZ
avo
avo
@@ -114139,9 +114497,9 @@ aef
aef
tRD
abE
-aTL
-ajt
-avj
+ciI
+mxg
+rmB
vOy
iYf
bIM
@@ -114161,12 +114519,12 @@ hPe
sdu
btC
vLj
-ahM
-kSJ
-avj
-cGr
+nIF
+ijn
+rmB
+dyJ
pBG
-hqJ
+gqQ
cHG
nQA
wph
@@ -114178,10 +114536,10 @@ gel
gel
gel
fkX
-lYm
-iTV
-enA
-ckw
+mRU
+jtU
+tMU
+woU
aaf
aag
aag
@@ -114222,10 +114580,10 @@ bdH
bdH
bdH
aad
-nnw
-sMe
-wli
-pAH
+kyw
+xwd
+lfx
+bwG
weR
aPE
izk
@@ -114239,9 +114597,9 @@ aTY
iCF
gJP
aQF
-qcl
-aZi
-aLG
+uNf
+hKe
+qPk
xMs
aYR
dUS
@@ -114263,9 +114621,9 @@ jZd
vit
bzo
vMo
-buH
-bHL
-buH
+knm
+sPY
+knm
lhB
pxD
bDs
@@ -114280,9 +114638,9 @@ iIl
bDs
ujV
bJt
-cER
-cER
-qbs
+xbg
+xbg
+lyW
ajZ
avo
avs
@@ -114342,9 +114700,9 @@ adF
aef
afs
agA
-ayT
-akU
-avj
+eWN
+lOn
+rmB
vOy
mTp
wiW
@@ -114364,10 +114722,10 @@ lON
dVu
oDR
vOP
-bYe
-bnD
-aWH
-aYn
+kGS
+fAW
+vlR
+qPv
qvL
wmP
wmP
@@ -114381,10 +114739,10 @@ cXF
rLU
dKp
cHu
-lYm
-iTV
-dhe
-ckw
+mRU
+jtU
+vpf
+woU
aag
aag
aag
@@ -114425,12 +114783,12 @@ bdH
bdH
bdH
aad
-nnw
-xnn
-cnP
-pAH
-weW
-jXC
+kyw
+deq
+sJa
+bwG
+pGG
+sab
izk
hds
aQF
@@ -114442,9 +114800,9 @@ qZH
bsN
buB
aWD
-aLG
-aZi
-aLG
+qPk
+hKe
+qPk
xMs
bXw
eiw
@@ -114466,9 +114824,9 @@ boh
qDP
wbP
vMo
-buH
-bHL
-vMx
+knm
+sPY
+cbL
bJt
qom
bDs
@@ -114483,8 +114841,8 @@ idx
hAz
gHj
bJt
-ygb
-cER
+oqI
+xbg
avo
avo
avo
@@ -114545,9 +114903,9 @@ adD
sOw
afs
agA
-ayT
-akU
-avj
+eWN
+lOn
+rmB
vOy
axn
dRh
@@ -114567,10 +114925,10 @@ vOy
aRd
aIo
vOy
-qLK
-akU
-avj
-eAT
+gyb
+lOn
+rmB
+aRl
pBG
lvb
eAN
@@ -114584,10 +114942,10 @@ bHk
vZw
bHk
cHu
-lYm
-dhe
-lYm
-ckw
+mRU
+vpf
+mRU
+woU
aag
aag
aag
@@ -114628,10 +114986,10 @@ bdH
bdH
bdH
aad
-nnw
-wli
-xnn
-mfc
+kyw
+lfx
+deq
+jgK
aNs
aNs
hyw
@@ -114645,9 +115003,9 @@ fHF
bml
buB
aWD
-beB
-byI
-beB
+eZC
+pSF
+eZC
xMs
xMs
xMs
@@ -114669,9 +115027,9 @@ vMo
vMo
vMo
vMo
-bJz
-bHT
-uFP
+hBW
+ltv
+kGw
bJt
bJt
nFI
@@ -114686,8 +115044,8 @@ gSk
bDs
bpI
bJt
-rrp
-cER
+jLH
+xbg
lpy
avC
avC
@@ -114748,9 +115106,9 @@ adF
aef
afs
agA
-ayT
-akU
-avj
+eWN
+lOn
+rmB
vOy
aAr
pGK
@@ -114770,9 +115128,9 @@ aCD
hFC
qmy
vOy
-ayT
-akU
-avj
+eWN
+lOn
+rmB
pBG
pBG
hEl
@@ -114787,10 +115145,10 @@ vzp
vZw
erd
cHu
-lYm
-eLq
-lYm
-ckw
+mRU
+vzB
+mRU
+woU
aag
aag
aag
@@ -114831,10 +115189,10 @@ bdH
bdH
bdH
aad
-nnw
-dDd
-sro
-pAH
+kyw
+txp
+iGc
+bwG
vMr
vMr
izk
@@ -114848,9 +115206,9 @@ htL
aUL
buB
aWD
-aLG
-aZi
-aLG
+qPk
+hKe
+qPk
nyw
iXU
hDw
@@ -114872,9 +115230,9 @@ vEH
uFH
tQd
nyw
-buH
-bHL
-buH
+knm
+sPY
+knm
yfS
sEi
dck
@@ -114889,8 +115247,8 @@ gSk
reL
wiI
bJt
-kbz
-meM
+tqV
+dSm
avo
avo
avo
@@ -114951,9 +115309,9 @@ aef
aef
pHG
abE
-aTL
-aii
-avj
+ciI
+jao
+rmB
vOy
aID
gLc
@@ -114973,9 +115331,9 @@ aoM
aoM
vgB
kgs
-ayT
-aii
-avj
+eWN
+jao
+rmB
bvX
ojQ
eAN
@@ -114990,10 +115348,10 @@ bHk
vZw
bHk
cHu
-lYm
-dhe
-lYm
-ckw
+mRU
+vpf
+mRU
+woU
aah
aag
aag
@@ -115034,10 +115392,10 @@ bdH
bdH
bdH
aad
-nnw
-kQZ
-ohw
-pAH
+kyw
+cme
+whm
+bwG
mTi
lJK
izk
@@ -115051,9 +115409,9 @@ aTZ
aUM
gJP
aQF
-lRU
-aYO
-aLG
+rmz
+wKN
+qPk
nyw
beH
dcd
@@ -115075,9 +115433,9 @@ beH
beH
beH
nyw
-buH
-bHL
-buH
+knm
+sPY
+knm
yfS
hgL
swt
@@ -115092,9 +115450,9 @@ gSk
bDs
vwI
bJt
-qxb
-jbS
-qbs
+lAa
+mgb
+lyW
ajZ
avo
avs
@@ -115154,9 +115512,9 @@ adF
aef
aGS
agA
-ayT
-aii
-avj
+eWN
+jao
+rmB
vOy
aMd
pGK
@@ -115176,9 +115534,9 @@ prx
fpT
eVT
kgs
-ayT
-aii
-avj
+eWN
+jao
+rmB
bvX
kVV
vQR
@@ -115193,10 +115551,10 @@ pRy
wwW
mRW
cHu
-lYm
-iTV
-dhe
-ckw
+mRU
+jtU
+vpf
+woU
aaa
aad
aag
@@ -115237,15 +115595,15 @@ bdH
bdH
bdH
aad
-nnw
-eSH
-hWV
-pAH
+kyw
+cGY
+ipn
+bwG
aQF
aQF
sPc
xIQ
-jXC
+sab
aWD
olM
aRy
@@ -115254,9 +115612,9 @@ eXr
iFH
buv
aWE
-aLG
-avX
-aem
+qPk
+ckh
+htl
aum
emr
emr
@@ -115278,9 +115636,9 @@ rCO
rCO
rCO
eVv
-bFu
-lAO
-buH
+wwE
+mDZ
+knm
ykj
rlQ
ven
@@ -115295,9 +115653,9 @@ gSk
bDs
fUB
bJt
-jbS
-fLl
-qbs
+mgb
+nhw
+lyW
ajZ
avo
avo
@@ -115357,9 +115715,9 @@ adF
aef
nIS
uZZ
-bYe
-aii
-avj
+kGS
+jao
+rmB
vOy
aMg
aSo
@@ -115379,16 +115737,16 @@ ger
aoM
aFf
mmN
-ayT
-aii
-avj
+eWN
+jao
+rmB
bvX
maO
lPm
iZV
fdx
cuq
-edn
+eQJ
fVF
pBG
qWR
@@ -115396,10 +115754,10 @@ wJH
wJH
wJH
sNR
-lYm
-iTV
-dhe
-ckw
+mRU
+jtU
+vpf
+woU
aaa
aae
aah
@@ -115440,10 +115798,10 @@ bdH
bdH
bdH
aad
-nnw
-jtG
-xnn
-pAH
+kyw
+oif
+deq
+bwG
weR
aPE
izk
@@ -115457,9 +115815,9 @@ pOi
pOi
nVF
aWF
-aLG
-aYO
-aLG
+qPk
+wKN
+qPk
nyw
eGZ
ieX
@@ -115481,9 +115839,9 @@ bhq
dcd
eTd
nyw
-buH
-vdW
-qLp
+knm
+rDO
+hqp
kKk
rDt
gpI
@@ -115498,9 +115856,9 @@ gSk
bDs
nqO
bJt
-lBj
-rzK
-qbs
+nQo
+pgJ
+lyW
ajZ
aaa
avo
@@ -115560,9 +115918,9 @@ adF
aef
nIS
eWF
-bYe
-aii
-avj
+kGS
+jao
+rmB
vOy
aQZ
bkT
@@ -115580,11 +115938,11 @@ ggl
jjS
qMP
kBP
-qIB
+aSl
vOy
-aTL
-aii
-avm
+ciI
+jao
+hCF
pBG
pBG
pBG
@@ -115595,14 +115953,14 @@ pBG
pBG
pBG
pBG
-lYm
-lYm
-lYm
-lYm
-lYm
-iTV
-enA
-ckw
+mRU
+mRU
+mRU
+mRU
+mRU
+jtU
+tMU
+woU
bdH
bdH
bdH
@@ -115643,12 +116001,12 @@ bdH
bdH
bdH
aad
-nnw
-pDZ
-wli
-pAH
-esV
-esV
+kyw
+byt
+lfx
+bwG
+iWQ
+iWQ
uFd
mUq
qwt
@@ -115660,9 +116018,9 @@ tou
tou
jhy
aQF
-beB
-aYT
-jfD
+eZC
+hMk
+mkw
bdd
bdd
bdd
@@ -115684,9 +116042,9 @@ bdd
bdd
bdd
bdd
-fZx
-bHT
-bJz
+xwm
+ltv
+hBW
yfS
ape
ven
@@ -115701,9 +116059,9 @@ cnu
bDs
knK
bJt
-cER
-wRn
-qbs
+xbg
+oUZ
+lyW
ajZ
bdH
bdH
@@ -115763,9 +116121,9 @@ adF
aef
kqN
agA
-ayT
-akU
-avj
+eWN
+lOn
+rmB
vOy
dVd
lea
@@ -115785,27 +116143,27 @@ vti
vti
aEZ
vOy
-ayT
-akU
-avj
+eWN
+lOn
+rmB
fKh
gQk
trU
oNY
fdx
pBG
-eNw
+pVF
ppF
fiE
pBG
-iTV
-iTV
-qHK
-qsr
-dhe
-iTV
-dhe
-ckw
+jtU
+jtU
+uBx
+ycM
+vpf
+jtU
+vpf
+woU
bdH
bdH
bdH
@@ -115846,13 +116204,13 @@ bdH
bdH
bdH
aad
-nnw
-vEQ
-wli
-pAH
-esV
-esV
-jXC
+kyw
+jNo
+lfx
+bwG
+iWQ
+iWQ
+sab
aNr
pQY
aWD
@@ -115863,9 +116221,9 @@ dVO
bsR
aQr
aQF
-aLG
-aYO
-aLG
+qPk
+wKN
+qPk
tda
ngI
dkq
@@ -115887,9 +116245,9 @@ qby
btY
bAJ
huU
-buH
-bHL
-buH
+knm
+sPY
+knm
yfS
ape
ven
@@ -115904,9 +116262,9 @@ gSk
ljG
tSp
bJt
-cER
-meC
-qbs
+xbg
+ssk
+lyW
ajZ
bdH
bdH
@@ -115966,9 +116324,9 @@ fcE
aef
uNN
abE
-giB
-akU
-avj
+iGZ
+lOn
+rmB
vOy
vOy
vOy
@@ -115988,9 +116346,9 @@ nPE
oqZ
uaI
vOy
-atV
-akU
-avj
+eFI
+lOn
+rmB
fKh
iuG
sOv
@@ -116001,14 +116359,14 @@ dzp
rMT
dzp
pBG
-iTV
-lYm
-lYm
-lYm
-lYm
-dhe
-lYm
-ckw
+jtU
+mRU
+mRU
+mRU
+mRU
+vpf
+mRU
+woU
bdH
bdH
bdH
@@ -116049,10 +116407,10 @@ bdH
bdH
bdH
aad
-nnw
-xnn
-wli
-pAH
+kyw
+deq
+lfx
+bwG
mTi
lJK
mTi
@@ -116066,9 +116424,9 @@ aQF
aQF
aQF
aQF
-ePA
-akO
-bwd
+ldb
+rYI
+fzc
bdg
vyg
bni
@@ -116090,9 +116448,9 @@ snb
xbd
bAU
bdg
-bCi
-bCo
-ivB
+jlD
+pYN
+raE
bJt
wbC
lHu
@@ -116107,9 +116465,9 @@ gSk
oDE
bJt
bJt
-cER
-jbS
-qbs
+xbg
+mgb
+lyW
ajZ
bdH
bdH
@@ -116169,11 +116527,11 @@ aeI
eva
xzf
abE
-aTL
-aii
-ali
-amD
-cwJ
+ciI
+jao
+uZI
+cSM
+xfo
vOy
vOy
vOy
@@ -116191,9 +116549,9 @@ vOy
vOy
vOy
vOy
-vIN
-aii
-avj
+czJ
+jao
+rmB
fKh
ubI
nQA
@@ -116204,14 +116562,14 @@ nTR
gDp
rwq
pBG
-iTV
-lYm
-fhb
-vlj
-lYm
-eLq
-lYm
-ckw
+jtU
+mRU
+oyO
+nve
+mRU
+vzB
+mRU
+woU
bdH
bdH
bdH
@@ -116252,10 +116610,10 @@ bdH
bdH
bdH
aad
-nnw
-dwU
-wli
-pAH
+kyw
+xbI
+lfx
+bwG
aQF
aQF
aQF
@@ -116265,13 +116623,13 @@ aQF
aQF
aQF
aQF
-beA
-hmM
-gFc
-pAH
-aeb
-alx
-aeb
+wYG
+yhR
+gHi
+bwG
+pzj
+uhq
+pzj
bdg
apz
dyd
@@ -116293,9 +116651,9 @@ vPw
bvr
bBQ
bdg
-bCj
-bDx
-bCj
+sgL
+aRL
+sgL
rde
vjC
iMm
@@ -116309,10 +116667,10 @@ bDs
gSk
luS
bJt
-ebL
-cER
-jbS
-qbs
+uCw
+xbg
+mgb
+lyW
ajZ
bdH
bdH
@@ -116354,11 +116712,11 @@ aaa
aaa
aaa
aaa
-qdy
-rOR
-jZD
-rOR
-rOR
+vHn
+cGd
+moK
+cGd
+cGd
aNi
aNi
bWr
@@ -116372,11 +116730,11 @@ aNi
aNi
aNi
aNi
-atV
-aii
-abx
-abx
-avj
+eFI
+jao
+gfv
+gfv
+rmB
vOy
elR
xXh
@@ -116394,9 +116752,9 @@ dMK
vOy
vOy
vOy
-ayT
-aii
-avj
+eWN
+jao
+rmB
pBG
mGT
nQA
@@ -116407,14 +116765,14 @@ pBG
pBG
pBG
pBG
-iTV
-pmS
-iTV
-eLq
-lYm
-jDh
-lYm
-ckw
+jtU
+rXF
+jtU
+vzB
+mRU
+kuK
+mRU
+woU
aaa
aaa
aaa
@@ -116455,26 +116813,26 @@ bdH
aaa
bdH
aad
-nnw
-xnn
-xnn
-pAH
-uBS
-vDZ
-inq
-sVv
-jVi
-pAH
-cTc
-cVZ
-qvG
-nqL
-xnn
-ecf
-pAH
-bwd
-auv
-bwd
+kyw
+deq
+deq
+bwG
+tEu
+mUY
+vOw
+ouU
+dro
+bwG
+gSH
+xJp
+qxJ
+hCk
+deq
+nRN
+bwG
+wsS
+vxY
+wsS
bdg
auj
bbf
@@ -116496,9 +116854,9 @@ bpv
tMW
bBY
bCh
-bCi
-bCo
-bCi
+mPM
+esd
+mPM
ejw
xML
iMm
@@ -116512,10 +116870,10 @@ bDs
gSk
vSp
lHG
-rHA
-jbS
-jbS
-qbs
+kOJ
+mgb
+mgb
+lyW
ajZ
bdH
bdH
@@ -116557,11 +116915,11 @@ aaf
aaf
aaf
aaf
-qdy
-qTv
-oKB
-oKB
-nSm
+vHn
+ejV
+hoT
+hoT
+vyh
aNi
cYT
aNm
@@ -116575,11 +116933,11 @@ bhx
vif
aOR
bsw
-ayT
-xGk
-all
-amK
-avj
+eWN
+uSZ
+rDm
+ldq
+rmB
vOy
wWz
vHO
@@ -116595,29 +116953,29 @@ ruc
xOY
wTM
vOy
-nzA
-amD
-ajr
-aii
-avm
+qqb
+cSM
+fvE
+jao
+hCF
pBG
-bfO
+tGT
nQA
nQA
jDO
pBG
aYH
cHG
-cgd
+cOY
pBG
-gck
-lYm
-cep
-caL
-lYm
-iTV
-dhe
-ckw
+mSM
+mRU
+gRc
+oOp
+mRU
+jtU
+vpf
+woU
aaf
aaf
aaf
@@ -116651,33 +117009,33 @@ bdH
bdH
bdH
aac
-nnw
-nnw
-nnw
-nnw
-nnw
-nnw
-nnw
-nnw
-xnn
-jkb
-pAH
-xhp
-vVD
-ftr
-kmu
-vdc
-oTR
-waY
-kmu
-byD
-oBQ
-kmu
-kmu
-dZT
-aem
-mUa
-aLG
+kyw
+kyw
+kyw
+kyw
+kyw
+kyw
+kyw
+kyw
+deq
+caq
+bwG
+igb
+cpz
+ooA
+kpj
+sBY
+wyG
+qjL
+kpj
+rAo
+lka
+kpj
+kpj
+mQY
+ygp
+tdi
+fZE
tda
mng
wTm
@@ -116699,9 +117057,9 @@ mng
wTm
wCI
tda
-buH
-bHL
-buH
+oSM
+ter
+oSM
bJt
swE
wpI
@@ -116715,17 +117073,17 @@ qxE
rui
vSp
bJt
-ogj
-cER
-fLl
-qbs
-qbs
-qbs
-qbs
-qbs
-qbs
-qbs
-qbs
+uXU
+xbg
+nhw
+lyW
+lyW
+lyW
+lyW
+lyW
+lyW
+lyW
+lyW
ajY
aaa
aaa
@@ -116760,11 +117118,11 @@ aag
aag
aag
aag
-qdy
-bEj
-nxJ
-oKB
-nxJ
+vHn
+dGg
+tob
+hoT
+tob
aNi
aZe
aNm
@@ -116778,11 +117136,11 @@ aco
aco
dYu
bsw
-mQH
-hee
-aEX
-aii
-avm
+cKW
+xNl
+dpS
+jao
+hCF
vOy
wWz
anw
@@ -116798,11 +117156,11 @@ wLy
eiE
wTM
vOy
-ayT
-akT
-amC
-bKe
-avj
+eWN
+gFL
+gDQ
+xgE
+rmB
fKh
eYn
nQA
@@ -116813,14 +117171,14 @@ eAN
eAN
eAN
pBG
-dhe
-lYm
-lYm
-lYm
-lYm
-uCU
-dhe
-ckw
+vpf
+mRU
+mRU
+mRU
+mRU
+vpI
+vpf
+woU
aag
aag
aag
@@ -116853,22 +117211,22 @@ bdH
bdH
bdH
bdH
-nnw
-nnw
-nqL
-mQQ
-wli
-wli
-wli
-xnn
-xnn
-xnn
-wli
-ddN
-wli
-oPY
-oPs
-sbA
+kyw
+kyw
+hCk
+maK
+lfx
+lfx
+lfx
+deq
+deq
+deq
+lfx
+eYp
+lfx
+vmq
+cqH
+tjO
bdd
bdd
bdd
@@ -116878,9 +117236,9 @@ bdd
bdd
bdd
bdd
-rhW
-aYO
-xNB
+nhE
+naa
+nVQ
bdd
vuA
vuA
@@ -116902,9 +117260,9 @@ vuA
vuA
vuA
bdd
-bSj
-bHL
-bIR
+fvV
+ter
+gvK
bdd
bdd
bdd
@@ -116919,17 +117277,17 @@ cDC
vuF
bJt
bJt
-cER
-jbS
-jbS
-jbS
-aTu
-iPm
-jbS
-jbS
-jbS
-qbs
-qbs
+xbg
+mgb
+mgb
+mgb
+gLm
+ttD
+mgb
+mgb
+mgb
+lyW
+lyW
aaa
aaa
aaa
@@ -116963,11 +117321,11 @@ aag
aag
aag
aag
-qdy
-xIp
-nxJ
-nxJ
-nxJ
+vHn
+oSG
+tob
+tob
+tob
aNi
aZr
aNm
@@ -116983,9 +117341,9 @@ cCa
aNi
aNi
aNi
-ybf
-ajt
-avj
+jMP
+mxg
+rmB
vOy
wWz
ovG
@@ -117001,11 +117359,11 @@ gxP
aOe
wTM
vOy
-atU
-akU
-abg
-abg
-avj
+nLM
+lOn
+acQ
+acQ
+rmB
fKh
wvo
nQA
@@ -117016,14 +117374,14 @@ skR
oxc
nBi
pBG
-eLq
-lYm
-mre
-flK
-lYm
-iTV
-enA
-ckw
+vzB
+mRU
+pGh
+xEs
+mRU
+jtU
+tMU
+woU
aag
aag
aag
@@ -117056,22 +117414,22 @@ bdH
bdH
bdH
bdH
-nnw
-cVZ
-wli
-xnn
-ijw
-xnn
-xnn
-wli
-wli
-wli
-qkc
-pAH
-jEj
-bTr
-gVP
-xiZ
+kyw
+xJp
+lfx
+deq
+yih
+deq
+deq
+lfx
+lfx
+lfx
+rHq
+bwG
+nPO
+cGB
+ugj
+fbC
bdd
uvU
xZk
@@ -117081,9 +117439,9 @@ eYj
aSp
mho
bdg
-aLG
-awb
-aLG
+fZE
+iLm
+fZE
bdg
bqZ
bqZ
@@ -117105,9 +117463,9 @@ bqZ
bqZ
bqZ
bdg
-buH
-hOR
-buH
+oSM
+xub
+oSM
bdg
lCE
oZD
@@ -117122,17 +117480,17 @@ feq
loY
aDU
bJt
-mHj
-jbS
-cER
-jbS
-kus
-jbS
-jbS
-cER
-cER
-jbS
-qbs
+vAx
+mgb
+xbg
+mgb
+xpL
+mgb
+mgb
+xbg
+xbg
+mgb
+lyW
aaa
aaa
aaa
@@ -117166,11 +117524,11 @@ aag
aag
aag
aag
-qdy
-pPq
-nxJ
-oKB
-nxJ
+vHn
+oeH
+tob
+hoT
+tob
aNi
aZs
aNm
@@ -117186,9 +117544,9 @@ qiy
ahR
ahR
egt
-ait
-ani
-avj
+tzF
+gIN
+rmB
vOy
woh
vgO
@@ -117204,13 +117562,13 @@ qxm
vgO
xAe
vOy
-aOP
-aii
-aow
-hee
-ioX
+oxg
+jao
+iUV
+xNl
+xZf
fKh
-sSP
+lDa
eAN
eAN
vEG
@@ -117219,14 +117577,14 @@ pBG
pBG
pBG
pBG
-dhe
-whr
-dhe
-eLq
-lYm
-iQR
-dhe
-ckw
+vpf
+tra
+vpf
+vzB
+mRU
+iJT
+vpf
+woU
aag
aag
aag
@@ -117259,9 +117617,9 @@ bdH
bdH
bdH
bdH
-nnw
-xnn
-wli
+kyw
+deq
+lfx
nsY
nsY
pRT
@@ -117271,10 +117629,10 @@ nsY
nsY
nsY
nsY
-pAH
-pAH
-vwU
-pAH
+bwG
+bwG
+msC
+bwG
bdd
xwE
dAQ
@@ -117284,9 +117642,9 @@ tGG
bpA
mho
bdg
-aLG
-aYO
-aLG
+fZE
+naa
+fZE
bdg
bqZ
beH
@@ -117308,9 +117666,9 @@ beH
beH
bqZ
bdg
-buH
-bHL
-buH
+oSM
+ter
+oSM
bdg
lCE
uek
@@ -117333,9 +117691,9 @@ nsY
nsY
nsY
nsY
-ogM
-jbS
-qbs
+kqb
+mgb
+lyW
aaa
aaa
aaa
@@ -117369,11 +117727,11 @@ aag
aag
aag
aag
-qdy
-brD
-oKB
-oKB
-oKB
+vHn
+mId
+hoT
+hoT
+hoT
aNi
jWr
aNm
@@ -117389,9 +117747,9 @@ hpY
aOR
aOR
bgK
-bYe
-ajt
-avj
+kGS
+mxg
+rmB
vOy
vOy
vOy
@@ -117407,29 +117765,29 @@ aoK
vOy
vOy
vOy
-asp
-aii
-avj
-lYm
-lYm
+glc
+jao
+rmB
+mRU
+mRU
pBG
aGs
eAN
eAN
vEG
vrJ
-tQM
+xOs
kOH
hIs
pBG
-gck
-lYm
-kqu
-dhe
-whr
-dhe
-lYm
-ckw
+mSM
+mRU
+tCd
+vpf
+tra
+vpf
+mRU
+woU
aag
aag
aag
@@ -117462,9 +117820,9 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-xnn
+kyw
+lfx
+deq
nsY
xWT
kxd
@@ -117474,10 +117832,10 @@ rSG
rur
oqS
nsY
-hnK
-niy
-xnn
-fLI
+hsh
+cPP
+deq
+eLH
bdd
eUZ
lCr
@@ -117487,9 +117845,9 @@ tGG
lJD
mho
bdg
-aLG
-aYO
-aLG
+fZE
+naa
+fZE
bdg
bqZ
beH
@@ -117511,9 +117869,9 @@ gBo
beH
bqZ
bdg
-buH
-bHL
-buH
+oSM
+ter
+oSM
bdg
lCE
fMe
@@ -117536,9 +117894,9 @@ rSG
qkP
oqS
nsY
-jbS
-jbS
-qbs
+mgb
+mgb
+lyW
aaa
aaa
aaa
@@ -117572,11 +117930,11 @@ aag
aag
aag
aag
-qdy
-rMG
-fra
-rOR
-jZD
+vHn
+eDq
+jFI
+cGd
+moK
aNi
aNi
aNi
@@ -117592,9 +117950,9 @@ aOR
aOR
agr
aNi
-ayT
-amO
-avj
+eWN
+bNT
+rmB
vOy
vOy
vOy
@@ -117610,11 +117968,11 @@ vOy
vOy
vOy
vOy
-meJ
-amO
-avj
-lYm
-dhe
+kbT
+bNT
+rmB
+mRU
+vpf
pBG
xiU
xUa
@@ -117625,14 +117983,14 @@ pZH
nnL
lgt
pBG
-uCU
-lYm
-aHx
-iTV
-lYm
-eLq
-lYm
-ckw
+vpI
+mRU
+bhV
+jtU
+mRU
+vzB
+mRU
+woU
aag
aag
aag
@@ -117665,9 +118023,9 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-xnn
+kyw
+lfx
+deq
nsY
xWT
kxd
@@ -117677,10 +118035,10 @@ iIP
kxd
dDt
nsY
-krA
-xnn
-xnn
-uoF
+exb
+deq
+deq
+qLY
bdd
ljW
bDP
@@ -117690,9 +118048,9 @@ lCr
mpn
pZR
bdd
-beB
-aYT
-beB
+atH
+iEM
+atH
bCx
bqZ
beH
@@ -117714,9 +118072,9 @@ bgO
beH
bqZ
bCx
-buH
-bHL
-buH
+oSM
+ter
+oSM
bdd
tSF
lsn
@@ -117739,9 +118097,9 @@ dmR
kxd
dDt
nsY
-jbS
-cER
-qbs
+mgb
+xbg
+lyW
aaa
aaa
aaa
@@ -117775,15 +118133,15 @@ aag
aag
aag
aag
-qdy
-rOR
-rOR
-rOR
-rLQ
-rJF
-rMG
-rMG
-rMG
+vHn
+cGd
+cGd
+cGd
+iTQ
+lWt
+eDq
+eDq
+eDq
aNi
aNi
aNi
@@ -117795,9 +118153,9 @@ aNi
aNi
aNi
aNi
-asp
-amO
-avj
+glc
+bNT
+rmB
bPF
aqG
ata
@@ -117810,14 +118168,14 @@ vYz
awR
uoi
vOy
-pOR
-vlf
+jyJ
+niF
bPF
-aTL
-akU
-avj
-lYm
-dhe
+ciI
+lOn
+rmB
+mRU
+vpf
pBG
pBG
pBG
@@ -117828,14 +118186,14 @@ pBG
pBG
pBG
pBG
-iTV
-lYm
-lYm
-lYm
-lYm
-dhe
-lYm
-ckw
+jtU
+mRU
+mRU
+mRU
+mRU
+vpf
+mRU
+woU
aag
aag
aag
@@ -117868,9 +118226,9 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-xnn
+kyw
+lfx
+deq
nsY
gsg
vHq
@@ -117880,10 +118238,10 @@ rNb
bxC
jiU
nsY
-dXU
-tIN
-xnn
-vgY
+jvt
+hiu
+deq
+vSr
bdd
asr
asr
@@ -117893,9 +118251,9 @@ nYp
fZG
phd
pmv
-tBF
-fSK
-aLG
+mzv
+yfg
+fZE
nyw
bqZ
beH
@@ -117917,9 +118275,9 @@ tmB
eBg
vKe
eVv
-bFu
-omW
-bFu
+cVZ
+xdf
+cVZ
hLS
vKe
vKe
@@ -117942,9 +118300,9 @@ iSm
bxC
jiU
nsY
-jbS
-cER
-qbs
+mgb
+xbg
+lyW
aaa
aaa
aaa
@@ -117968,39 +118326,39 @@ aaa
aaa
aaa
aaa
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-oKB
-nxJ
-nxJ
-oKB
-nxJ
-nxJ
-mvu
-oKB
-nxJ
-nxJ
-nxJ
-nxJ
-oKB
-nSm
-oKB
-nxJ
-nxJ
-cLx
-bYe
-amO
-bYe
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+hoT
+tob
+tob
+hoT
+tob
+tob
+hqm
+hoT
+tob
+tob
+tob
+tob
+hoT
+vyh
+hoT
+tob
+tob
+fkK
+kGS
+bNT
+kGS
cbg
aqG
atb
@@ -118013,42 +118371,42 @@ paa
sXd
gVq
vOy
-dan
-vlf
+sLk
+niF
cbg
-bYe
-akU
-bYe
-pmS
-iTV
-iTV
-dhe
-qsr
-leZ
-iTV
-iTV
-dhe
-qsr
-dhe
-iTV
-iTV
-iTV
-qHK
-uPD
-iTV
-dhe
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
+kGS
+lOn
+kGS
+rXF
+jtU
+jtU
+vpf
+ycM
+tne
+jtU
+jtU
+vpf
+ycM
+vpf
+jtU
+jtU
+jtU
+uBx
+fLi
+jtU
+vpf
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
aaa
aaa
aaa
@@ -118071,9 +118429,9 @@ aaa
aac
aaf
aaf
-nnw
-wli
-xnn
+kyw
+lfx
+deq
nsY
nsY
qxC
@@ -118083,10 +118441,10 @@ nsY
ntx
nsY
nsY
-biv
-oSy
-waS
-pJE
+qWL
+kIk
+eXD
+kMr
bdd
bdd
bdd
@@ -118096,9 +118454,9 @@ bdd
bdd
bdd
bdd
-aLG
-awb
-aLG
+fZE
+iLm
+fZE
bdg
bqZ
beH
@@ -118120,9 +118478,9 @@ bgO
beH
bqZ
bdg
-buH
-hOR
-buH
+oSM
+xub
+oSM
bdd
bdd
bdd
@@ -118145,9 +118503,9 @@ nsY
gLZ
nsY
nsY
-jbS
-fLl
-qbs
+mgb
+nhw
+lyW
aaf
aaf
ajY
@@ -118171,7 +118529,7 @@ aaa
aaa
aaa
aaa
-uWv
+gxm
dxF
dxF
aaH
@@ -118182,28 +118540,28 @@ aam
aam
aam
aam
-uWv
-dRE
-nxJ
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
+gxm
+hgk
+tob
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
aej
aej
aej
aej
-iiC
-amO
-tHh
+jZW
+bNT
+rZC
vOy
vOy
vOy
@@ -118219,28 +118577,28 @@ vOy
vOy
vOy
vOy
-apv
-akU
-jHG
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-iTV
-dhe
-uWv
+bxV
+lOn
+uAi
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+jtU
+vpf
+gxm
aeT
aeT
aeT
@@ -118251,7 +118609,7 @@ aeT
nnD
aZF
aZF
-uWv
+gxm
aaa
aaa
aaa
@@ -118272,11 +118630,11 @@ aaa
aaa
aaa
aad
-nnw
-nnw
-nnw
-xnn
-jkb
+kyw
+kyw
+kyw
+deq
+caq
nsY
tUS
bNh
@@ -118286,10 +118644,10 @@ fPp
lqN
vlO
nsY
-kkj
-mIX
-lls
-wli
+xxG
+smA
+ktR
+lfx
bdd
dJI
jaf
@@ -118299,9 +118657,9 @@ mPR
osU
vKe
dYX
-tBF
-lBz
-aLG
+mzv
+xhW
+fZE
bdg
bqZ
beH
@@ -118323,9 +118681,9 @@ bgO
beH
bqZ
bdg
-buH
-uXu
-bFu
+oSM
+iOo
+cVZ
iUk
cIx
fUC
@@ -118348,11 +118706,11 @@ iQt
uZo
xmJ
nsY
-cER
-jbS
-qbs
-qbs
-qbs
+xbg
+mgb
+lyW
+lyW
+lyW
ajZ
aaa
aaa
@@ -118374,7 +118732,7 @@ aaa
aaa
aaa
aaa
-uWv
+gxm
dxF
dxF
aaH
@@ -118385,28 +118743,28 @@ aam
aam
aam
aam
-uWv
-tvm
-nxJ
-rOR
-ivy
-ivy
-ivy
-ivy
-lYS
-ivy
-ivy
-ivy
-ivy
-lYS
+gxm
+bLf
+tob
+cGd
+vVY
+vVY
+vVY
+vVY
+kLB
+vVY
+vVY
+vVY
+vVY
+kLB
aej
aeO
afG
ags
aej
-ayT
-amO
-avj
+eWN
+bNT
+rmB
vOy
elR
xXh
@@ -118422,28 +118780,28 @@ xXh
xXh
dMK
vOy
-ayT
-akU
-avj
-lYm
-vWb
-fDC
-vWb
-lYm
-wqU
-wqU
-wqU
-wqU
-tJa
-wqU
-wqU
-wqU
-wqU
-tJa
-lYm
-iTV
-kFL
-uWv
+eWN
+lOn
+rmB
+mRU
+bnF
+lBw
+bnF
+mRU
+qSw
+qSw
+qSw
+qSw
+urg
+qSw
+qSw
+qSw
+qSw
+urg
+mRU
+jtU
+nVE
+gxm
aeT
aeT
aeT
@@ -118454,7 +118812,7 @@ aeT
nnD
aZF
aZF
-uWv
+gxm
aaa
aaa
aaa
@@ -118474,12 +118832,12 @@ aaa
aaa
aaa
aaa
-nnw
-nnw
-dle
-xnn
-xnn
-wli
+kyw
+kyw
+veq
+deq
+deq
+lfx
nsY
kio
sJY
@@ -118489,10 +118847,10 @@ xTW
oGP
cnM
nsY
-foa
-chi
-chi
-xnn
+kqB
+txH
+txH
+deq
bdd
fva
lkL
@@ -118502,9 +118860,9 @@ cHB
hDV
vmP
bdd
-aLG
-awb
-aLG
+fZE
+iLm
+fZE
bdg
bqZ
bqZ
@@ -118526,9 +118884,9 @@ bgO
bqZ
bqZ
bdg
-buH
-hOR
-buH
+oSM
+xub
+oSM
bdd
oNP
tge
@@ -118551,12 +118909,12 @@ pyc
uMn
ivz
nsY
-cER
-jbS
-cER
-cER
-qbs
-qbs
+xbg
+mgb
+xbg
+xbg
+lyW
+lyW
aaa
aaa
aaa
@@ -118577,7 +118935,7 @@ aaa
aaa
aaa
aaa
-uWv
+gxm
dxF
dxF
aaH
@@ -118588,28 +118946,28 @@ aam
aam
aam
aam
-uWv
-qXe
-nxJ
-rOR
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
+gxm
+rGz
+tob
+cGd
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
aej
aeP
agI
aia
yaz
-bYe
-ajt
-avj
+kGS
+mxg
+rmB
vOy
wWz
vHO
@@ -118625,28 +118983,28 @@ uXj
rdt
wTM
vOy
-ayT
-aii
-avj
-uai
-iTV
-tzZ
-lOt
-lYm
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-lYm
-iTV
-wlQ
-uWv
+eWN
+jao
+rmB
+eyI
+jtU
+jaW
+vkV
+mRU
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+mRU
+jtU
+bWg
+gxm
aeT
aeT
aeT
@@ -118657,7 +119015,7 @@ aeT
nnD
aZF
aZF
-uWv
+gxm
aaa
aaa
aaa
@@ -118677,12 +119035,12 @@ aaa
aaa
aaa
aaa
-nnw
-cXh
-wli
-wli
-wli
-wli
+kyw
+lHB
+lfx
+lfx
+lfx
+lfx
heK
kam
axc
@@ -118692,10 +119050,10 @@ vHh
pvh
sZs
nsY
-pAH
-mtR
-vmZ
-jkb
+bwG
+erL
+scX
+caq
bdd
cDH
cHB
@@ -118705,9 +119063,9 @@ wmz
rhy
rec
bdg
-aLG
-aYO
-bad
+fZE
+naa
+onn
bdd
bdd
bDQ
@@ -118729,9 +119087,9 @@ bgO
cab
bdd
bdd
-bGe
-bHL
-buH
+tmE
+ter
+oSM
bdg
jLS
xdP
@@ -118754,12 +119112,12 @@ xuQ
uPW
kYv
oDx
-lTL
-lTL
-lTL
-tzC
-cER
-qbs
+sAS
+sAS
+sAS
+rCh
+xbg
+lyW
aaa
aaa
aaa
@@ -118780,39 +119138,39 @@ aaa
aaa
aaa
aaa
-uWv
+gxm
adj
apk
apk
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-euu
-yma
-rOR
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+hqb
+vsd
+cGd
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
aej
aeQ
agK
agu
eup
-bYe
-ajt
-avj
+kGS
+mxg
+rmB
vOy
wWz
uwZ
@@ -118828,39 +119186,39 @@ coZ
sNz
wTM
vOy
-ayT
-aii
-avj
-uai
-sbU
-fWj
-kdX
-lYm
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-lYm
-dDo
-lqL
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
+eWN
+jao
+rmB
+eyI
+yfL
+sjw
+xHD
+mRU
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+mRU
+jZo
+hQK
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
asM
asM
mwR
-uWv
+gxm
aaa
aaa
aaa
@@ -118880,12 +119238,12 @@ aaa
aaa
aaa
aaa
-nnw
-hpO
-wli
-pzi
-pAH
-pAH
+kyw
+eqm
+lfx
+vvH
+bwG
+bwG
nsY
wpz
oEX
@@ -118895,10 +119253,10 @@ xxm
qSK
ieu
nsY
-aSV
-wli
-eKE
-xnn
+mZc
+lfx
+neH
+deq
bdd
xXW
gVu
@@ -118908,10 +119266,10 @@ wmz
vbI
rec
bdg
-beB
-aYT
-beB
-beB
+atH
+iEM
+atH
+ppV
bdd
bqZ
bgO
@@ -118931,10 +119289,10 @@ gAj
bgO
bqZ
bdd
-bJz
-bJz
-bHT
-bJz
+eoy
+brq
+jnc
+brq
bdg
jLS
frb
@@ -118957,12 +119315,12 @@ mzV
pML
ivz
nsY
-gcu
-jbS
-cER
-fKC
-dvD
-qbs
+iZd
+mgb
+xbg
+jPx
+xQd
+lyW
aaa
aaa
aaa
@@ -118983,7 +119341,7 @@ aaa
aaa
aaa
aaa
-uWv
+gxm
ojH
ojH
taV
@@ -118997,25 +119355,25 @@ ouf
aLc
wBI
hGG
-rOR
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
-ivy
+cGd
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
+vVY
aej
aeR
agK
agu
aej
-pSL
-amT
-mIW
+ftb
+mqR
+djd
vOy
wWz
pEJ
@@ -119031,25 +119389,25 @@ xQm
tfH
wTM
vOy
-aEK
-aSv
-ioX
-uai
-jEm
-iTV
-ety
-lYm
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-wqU
-lYm
+ddx
+pFf
+xZf
+eyI
+byH
+jtU
+nvd
+mRU
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+qSw
+mRU
vmJ
elv
vRR
@@ -119063,7 +119421,7 @@ qXS
hXX
xDe
xDe
-uWv
+gxm
aaa
aaa
aaa
@@ -119083,12 +119441,12 @@ aaa
aaa
aaa
aaa
-nnw
-slx
-xnn
-xnn
-mSc
-wgw
+kyw
+htg
+deq
+deq
+qCH
+cXm
nsY
hUz
dbn
@@ -119098,10 +119456,10 @@ uRM
ipe
ehR
nsY
-sEE
-wli
-tLD
-rMk
+xEe
+lfx
+tdH
+igw
bdd
sgm
kEg
@@ -119111,10 +119469,10 @@ xgN
vgn
xgN
bdg
-aLG
-aYO
-aLG
-aLG
+fZE
+naa
+fZE
+fZE
bdg
bqZ
qMR
@@ -119134,10 +119492,10 @@ tXb
fOk
bqZ
bdg
-buH
-buH
-bHL
-buH
+oSM
+oSM
+ter
+oSM
bdg
vLg
loy
@@ -119160,12 +119518,12 @@ sZH
rjV
ivz
nsY
-eCZ
-rEF
-vDk
-woQ
-kHx
-qbs
+qZy
+jfS
+bUH
+ciB
+soT
+lyW
aaa
aaa
aaa
@@ -119186,7 +119544,7 @@ aaa
aaa
aaa
aaa
-uWv
+gxm
ojH
ojH
taV
@@ -119200,25 +119558,25 @@ ouf
sdf
cRL
hGG
-rOR
-rOR
-rOR
+cGd
+cGd
+cGd
ahi
-rOR
-rOR
-rOR
-rOR
+cGd
+cGd
+cGd
+cGd
uux
-rOR
-rOR
+cGd
+cGd
aej
aej
agO
aid
aej
-atL
-akV
-atL
+umI
+fsu
+umI
vOy
wWz
uwZ
@@ -119234,25 +119592,25 @@ vfP
sNz
wTM
vOy
-atL
-akV
-atL
-lYm
-lYm
-yjf
-lYm
-lYm
-lYm
-lYm
+umI
+fsu
+umI
+mRU
+mRU
+veW
+mRU
+mRU
+mRU
+mRU
nNX
-lYm
-lYm
-lYm
-lYm
+mRU
+mRU
+mRU
+mRU
ayo
-lYm
-lYm
-lYm
+mRU
+mRU
+mRU
cna
nzD
xDV
@@ -119266,7 +119624,7 @@ qXS
hXX
xDe
xDe
-uWv
+gxm
aaa
aaa
aaa
@@ -119286,12 +119644,12 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-wli
-ijw
-mSc
-hYE
+kyw
+lfx
+lfx
+yih
+qCH
+spT
nsY
nsY
nsY
@@ -119301,10 +119659,10 @@ nsY
nsY
nsY
nsY
-pAH
-pAH
-pAH
-pAH
+bwG
+bwG
+bwG
+bwG
bdd
bdd
bdd
@@ -119314,10 +119672,10 @@ bdd
bdd
bdd
bdd
-hDL
-aYO
-aNO
-aLG
+tvl
+naa
+meQ
+fZE
bdg
bqZ
beH
@@ -119337,10 +119695,10 @@ gAj
beH
bqZ
bdg
-buH
-bHa
-bHL
-bIR
+oSM
+awE
+ter
+gvK
bdd
bdd
bdd
@@ -119363,12 +119721,12 @@ nsY
nsY
nsY
nsY
-fXy
-leL
-kIr
-nZp
-ffL
-qbs
+ecj
+bZf
+lZI
+faR
+wxu
+lyW
aaa
aaa
aaa
@@ -119389,7 +119747,7 @@ aaa
aaa
aaa
aaa
-uWv
+gxm
ojH
ojH
taV
@@ -119414,14 +119772,14 @@ cuN
cQW
lQa
wjE
-aeU
-bUE
-bYe
-bYe
-aaO
-alp
-aio
-baB
+vuE
+bkb
+kGS
+kGS
+pvi
+bgh
+spW
+pjQ
vOy
wWz
qxP
@@ -119437,14 +119795,14 @@ gxP
nMe
wTM
vOy
-alp
-aio
-baB
-aEV
-bUE
-bYe
-nBW
-bWP
+bgh
+spW
+pjQ
+eJg
+bkb
+kGS
+rRf
+pOC
qtj
fpA
qUx
@@ -119469,7 +119827,7 @@ qXS
hXX
xDe
xDe
-uWv
+gxm
aaa
aaa
aaa
@@ -119489,38 +119847,38 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-xnn
-pAH
-pAH
-pAH
-pAH
-pAH
-aLB
-acF
-heb
-cqa
-bBh
-aMV
-dRG
-aMV
-yiq
-kLp
-aMV
-bBh
-tCN
-lDJ
-tCN
-tCN
-yfw
-tCN
-bBh
-aLG
-aLG
-aYO
-aNO
-aLG
+kyw
+lfx
+deq
+bwG
+bwG
+bwG
+bwG
+bwG
+bwG
+kUI
+bFB
+iPt
+atH
+sCg
+hgs
+sCg
+osX
+uCt
+sCg
+atH
+eUf
+pwx
+eUf
+eUf
+rIP
+eUf
+atH
+fZE
+fZE
+naa
+meQ
+fZE
bdg
bqZ
beH
@@ -119540,38 +119898,38 @@ beH
beH
bqZ
bdg
-buH
-bHa
-bHL
-buH
-buH
-cbD
-iZH
-xkC
-njL
-njL
-njL
-njL
-cbD
-bUM
-bUM
-mYw
-iAT
-rdY
-bUM
-cbD
-rGg
-qtn
-kJV
-rng
-rng
-rng
-rng
-rng
-rng
-fKC
-jbS
-qbs
+oSM
+awE
+ter
+oSM
+oSM
+brq
+mdC
+qWK
+lyq
+lyq
+lyq
+lyq
+brq
+eMI
+eMI
+gjg
+bom
+kiy
+eMI
+brq
+cSP
+cSH
+svt
+mJO
+mJO
+mJO
+mJO
+mJO
+mJO
+jPx
+mgb
+lyW
aaa
aaa
aaa
@@ -119592,17 +119950,17 @@ aaa
aaa
aaa
aaa
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
dho
wVt
wVt
@@ -119617,14 +119975,14 @@ jlc
kbv
dTn
ngE
-abg
-abg
-abg
-abg
-acC
-iWN
-amO
-dLE
+acQ
+acQ
+acQ
+acQ
+xdl
+klr
+bNT
+dOW
vOy
woh
vgO
@@ -119640,14 +119998,14 @@ vgO
vgO
xAe
vOy
-aIS
-alq
-wWk
-chu
-aZE
-aZE
-aZE
-aZE
+gTV
+mGk
+xFW
+lrd
+kkI
+kkI
+kkI
+kkI
usL
gsC
cMz
@@ -119662,17 +120020,17 @@ qLg
iup
ryY
cnn
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
-uWv
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
+gxm
aaa
aaa
aaa
@@ -119692,38 +120050,38 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-xnn
-pAH
-pCe
-pCe
-pCe
-vbk
-aLB
-nyG
-iDN
-tit
-nFV
-tBL
-tBL
-tBL
-tBL
-tBL
-tBL
-mRS
-tBL
-tBL
-tBL
-tBL
-tBL
-tBL
-luz
-tzf
-tBL
-fau
-aNO
-aLG
+kyw
+lfx
+deq
+bwG
+ycl
+ycl
+ycl
+jCg
+bwG
+eNL
+pVr
+oHs
+osQ
+tpR
+tpR
+tpR
+tpR
+tpR
+tpR
+osQ
+tpR
+tpR
+tpR
+tpR
+tpR
+tpR
+osQ
+wxp
+tpR
+baW
+meQ
+fZE
bdg
bqZ
beH
@@ -119743,38 +120101,38 @@ beH
beH
bqZ
bdg
-buH
-bHa
-wwu
-buI
-bFu
-cbE
-buI
-buI
-buI
-buI
-buI
-buI
-rpd
-buI
-buI
-buI
-buI
-buI
-buI
-rpd
-fkO
-bHY
-kro
-bGb
-kks
-kks
-kks
-xOb
-rng
-vKU
-fLl
-qbs
+oSM
+awE
+jas
+jhA
+cVZ
+qWx
+jhA
+jhA
+jhA
+jhA
+jhA
+jhA
+qWx
+jhA
+jhA
+jhA
+jhA
+jhA
+jhA
+qWx
+ldW
+mkx
+eWv
+mJO
+plv
+plv
+plv
+mbR
+mJO
+eBG
+nhw
+lyW
aaa
aaa
aaa
@@ -119802,10 +120160,10 @@ aag
aag
aag
aag
-qdy
-xEq
-oKB
-oFg
+vHn
+fbe
+hoT
+rpG
bGa
dVn
vwC
@@ -119820,14 +120178,14 @@ sdv
xMO
wDg
vHA
-aaL
-aJs
-bYe
-bYe
-aaE
-afD
-kaA
-anh
+waV
+iGE
+kGS
+kGS
+pjY
+gqv
+hKJ
+nww
vOy
vOy
vOy
@@ -119843,14 +120201,14 @@ vOy
vOy
vOy
vOy
-xFw
-iTK
-anh
-aFF
-cjo
-bYe
-kSN
-aTQ
+xvO
+peu
+nww
+vcO
+ssF
+kGS
+bij
+hux
kfo
rCl
ePM
@@ -119865,10 +120223,10 @@ dbc
cNM
ofU
njk
-pmS
-iTV
-eLq
-ckw
+rXF
+jtU
+vzB
+woU
aag
aag
aag
@@ -119895,38 +120253,38 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-xnn
-pAH
-pCe
-pCe
-pCe
-pCe
-aLB
-csl
-gjn
-jJs
-bBh
-aMM
-aMM
-aNG
-bga
-taA
-aSr
-bBh
-gyC
-wbh
-bsX
-bAa
-bKE
-eBj
-bBh
-aLG
-aNO
-aYT
-aNO
-bad
+kyw
+lfx
+deq
+bwG
+ycl
+ycl
+ycl
+ycl
+bwG
+xgk
+oUi
+tLZ
+atH
+xSx
+xSx
+fBi
+tXo
+mBa
+pYh
+atH
+wMl
+aAU
+dkP
+dsY
+rwj
+xZR
+atH
+fZE
+meQ
+iEM
+meQ
+onn
bdd
bDQ
mng
@@ -119946,38 +120304,38 @@ vUe
kuw
cab
bdd
-bGe
-bHa
-bHT
-bHa
-buH
-cbD
-bMt
-bMt
-bOv
-bOX
-jLK
-vUU
-cbD
-ciU
-rOj
-bUd
-bUF
-clR
-clR
-cbD
-dQs
-sFh
-guc
-bGb
-kks
-kks
-kks
-kks
-rng
-fKC
-rOD
-qbs
+tmE
+awE
+jnc
+awE
+oSM
+brq
+gOS
+gOS
+sLX
+bIj
+jtZ
+eLu
+brq
+xpl
+exc
+jCx
+mqt
+vno
+vno
+brq
+wDG
+ihI
+fnc
+mJO
+plv
+plv
+plv
+plv
+mJO
+jPx
+enQ
+lyW
aaa
aaa
aaa
@@ -120005,73 +120363,73 @@ aag
aag
aag
aag
-qdy
-gLo
-nxJ
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
+vHn
+ggD
+tob
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
hZE
sVV
oON
-rOR
-rOR
-leQ
-rOR
-rOR
+cGd
+cGd
+cva
+cGd
+cGd
ael
ael
agQ
aih
ael
-tnl
-amO
-anc
-atC
-apJ
-apJ
-aMl
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-aMl
-apJ
-apJ
-atC
-cnv
-amO
-lqJ
-lYm
-lYm
-hdf
-lYm
-lYm
-lYm
-hdf
-lYm
-lYm
-lYm
+htF
+bNT
+jvz
+ltt
+pPU
+pPU
+ecz
+pPU
+pPU
+pPU
+pPU
+pPU
+pPU
+pPU
+ecz
+pPU
+pPU
+ltt
+riK
+bNT
+hmB
+mRU
+mRU
+gBs
+mRU
+mRU
+mRU
+gBs
+mRU
+mRU
+mRU
mKi
sfT
hGV
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-dhe
-enA
-ckw
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+vpf
+tMU
+woU
aag
aag
aag
@@ -120098,18 +120456,18 @@ aaa
aaa
aaa
aaa
-nnw
-wli
-xnn
-pAH
-pCe
-pCe
-pCe
-pCe
+kyw
+lfx
+deq
+bwG
+ycl
+ycl
+ycl
+ycl
jUx
-aLG
-qmL
-rZz
+fZE
+bBR
+tup
jeb
jeb
jeb
@@ -120125,11 +120483,11 @@ mWy
jeb
jeb
jeb
-aLG
-aNO
-aYT
-aNO
-aLG
+fZE
+meQ
+iEM
+meQ
+fZE
bdg
bqZ
udi
@@ -120149,11 +120507,11 @@ veu
mDW
bqZ
bdg
-buH
-bHa
-bHT
-bHa
-buH
+oSM
+awE
+jnc
+awE
+oSM
vra
vra
vra
@@ -120169,18 +120527,18 @@ rJx
vra
vra
vra
-jJe
-bHY
-buH
+uGf
+mkx
+oSM
vfo
-kks
-kks
-kks
-kks
-rng
-xIB
-xcC
-qbs
+plv
+plv
+plv
+plv
+mJO
+nEl
+bhy
+lyW
aaa
aaa
aaa
@@ -120208,73 +120566,73 @@ aag
aag
aag
aag
-qdy
-dRE
-oKB
-oKB
-rOR
-ivy
-ivy
-ivy
-pJa
-rOR
+vHn
+hgk
+hoT
+hoT
+cGd
+vVY
+vVY
+vVY
+tvS
+cGd
xVe
sVV
mbx
-rOR
-bJK
-tsI
-hkF
-mEL
+cGd
+orq
+rRb
+qjT
+kRk
ael
afE
agT
agT
ael
-cZm
-akU
-abg
-atC
-abg
-abx
-abx
-abx
-abg
-abx
-abx
-abx
-abg
-abx
-abx
-abx
-avD
-atC
-abg
-amO
-nQx
-lYm
-eSp
-dhe
-eSp
-lYm
-jnl
-iTV
-iTV
-gOf
-lYm
+oPT
+lOn
+acQ
+ltt
+acQ
+gfv
+gfv
+gfv
+acQ
+gfv
+gfv
+gfv
+acQ
+gfv
+gfv
+gfv
+jRg
+ltt
+acQ
+bNT
+oNa
+mRU
+tih
+vpf
+tih
+mRU
+jwM
+jtU
+jtU
+jHX
+mRU
aDS
sfT
hGV
-lYm
-wqU
-wqU
-wqU
-axT
-lYm
-pzA
-iTV
-iTV
-ckw
+mRU
+qSw
+qSw
+qSw
+vMQ
+mRU
+upS
+jtU
+jtU
+woU
aag
aag
aag
@@ -120301,18 +120659,18 @@ aac
aaf
aaf
aaf
-nnw
-xnn
-wli
-pAH
-pCe
-pCe
-pCe
-pCe
-aLB
-dEC
-aNO
-qHl
+kyw
+deq
+lfx
+bwG
+ycl
+ycl
+ycl
+ycl
+bwG
+hiP
+meQ
+czN
jeb
vlX
aNx
@@ -120328,11 +120686,11 @@ xHp
hmF
vlX
jeb
-aNn
-aNO
-aYT
-aNO
-aLG
+bMf
+meQ
+iEM
+meQ
+fZE
bdg
bqZ
udi
@@ -120352,11 +120710,11 @@ fIZ
mDW
bqZ
bdg
-buH
-bHa
-bHT
-bHa
-deH
+oSM
+awE
+jnc
+awE
+eOx
vra
asX
chf
@@ -120372,18 +120730,18 @@ lpt
mgF
asX
vra
-tfw
-bHY
-sVf
-bGb
-kks
-kks
-kks
-kks
-rng
-xIB
-nuH
-qbs
+pHh
+mkx
+hNv
+mJO
+plv
+plv
+plv
+plv
+mJO
+nEl
+rxe
+lyW
aaf
aaf
aaf
@@ -120411,73 +120769,73 @@ aag
aag
aag
aag
-qdy
-qdy
-nxJ
-nxJ
-rOR
-ivy
-ivy
-ivy
-ivy
-rOR
+vHn
+vHn
+tob
+tob
+cGd
+vVY
+vVY
+vVY
+vVY
+cGd
hHe
gxn
ioH
-rOR
-wLM
-nxJ
-vhM
-qFp
+cGd
+mNS
+tob
+hvq
+pCQ
ael
afH
agV
ain
ael
-eGl
-aii
-anf
-atC
-apK
-anf
-apK
-arf
-auG
-azb
-azb
-azb
-auG
-aDp
-apK
-cbr
-apK
-atC
-cbr
-amO
-uGt
-lYm
-lYm
-iTV
-ajq
-lYm
-yaa
-dhe
-iTV
-yaa
-lYm
+bMV
+jao
+tbF
+ltt
+dZP
+tbF
+dZP
+eQh
+mTo
+tCD
+tCD
+tCD
+mTo
+wyE
+dZP
+dKD
+dZP
+ltt
+dKD
+bNT
+enF
+mRU
+mRU
+jtU
+wlB
+mRU
+bBc
+vpf
+jtU
+bBc
+mRU
uRY
pMA
waJ
-lYm
-wqU
-wqU
-wqU
-wqU
-lYm
-lcL
-dhe
-ckw
-ckw
+mRU
+qSw
+qSw
+qSw
+qSw
+mRU
+oNM
+vpf
+woU
+woU
aag
aag
aag
@@ -120504,18 +120862,18 @@ aad
aag
aag
aag
-nnw
-pDq
-uxx
-pAH
-pCe
-pCe
-pCe
-pCe
-aLB
-udF
-aNO
-nLZ
+kyw
+xkb
+dAA
+bwG
+ycl
+ycl
+ycl
+ycl
+bwG
+cVf
+meQ
+jTt
jeb
obE
tdE
@@ -120531,11 +120889,11 @@ xHp
xwl
rHf
jeb
-jgU
-aNO
-aYT
-aNO
-aLG
+rrU
+meQ
+iEM
+meQ
+fZE
bdg
bqZ
ngI
@@ -120555,11 +120913,11 @@ xAt
nNH
bqZ
bdg
-buH
-bHa
-bHT
-bHa
-bKc
+oSM
+awE
+jnc
+awE
+uNp
vra
bMq
qUq
@@ -120575,18 +120933,18 @@ lpt
qYQ
ptj
vra
-mEb
-bHY
-haT
-bGb
-kks
-kks
-kks
-kks
-rng
-fKC
-jbS
-qbs
+opV
+mkx
+xVY
+mJO
+plv
+plv
+plv
+plv
+mJO
+jPx
+mgb
+lyW
aag
aag
aag
@@ -120615,31 +120973,31 @@ aag
aag
aag
aag
-qdy
-oKB
-oKB
-rOR
-ivy
-ivy
-ivy
-ivy
+vHn
+hoT
+hoT
+cGd
+vVY
+vVY
+vVY
+vVY
aba
aGA
kbv
fZo
-rOR
-oJX
-oKB
-oKB
-oxo
+cGd
+nnH
+hoT
+hoT
+eJj
ael
afI
agY
oxi
xfm
-als
-ani
-anc
+jux
+gIN
+jvz
mOi
mOi
mOi
@@ -120655,31 +121013,31 @@ aHq
aHq
aHq
aHq
-iWN
-ajt
-kGI
-aPm
-lYm
-iTV
-dhe
-pmS
-iTV
-iTV
-iTV
-dhe
-lYm
+klr
+mxg
+qGZ
+bMi
+mRU
+jtU
+vpf
+rXF
+jtU
+jtU
+jtU
+vpf
+mRU
mzs
aPT
xyB
ceD
-wqU
-wqU
-wqU
-wqU
-lYm
-qUT
-dhe
-ckw
+qSw
+qSw
+qSw
+qSw
+mRU
+isq
+vpf
+woU
aag
aag
aag
@@ -120707,18 +121065,18 @@ aad
aag
aag
aag
-nnw
-xnn
-lpH
-pAH
-pAH
-pAH
-pAH
-pAH
-aLB
-dzF
-dzF
-dac
+kyw
+deq
+qZK
+bwG
+bwG
+bwG
+bwG
+bwG
+bwG
+dTd
+dTd
+div
jeb
vlX
thA
@@ -120734,11 +121092,11 @@ gAA
fFD
vlX
jeb
-kEb
-aNO
-aYT
-aNO
-aLG
+wEK
+meQ
+iEM
+meQ
+fZE
bdg
bqZ
beH
@@ -120758,11 +121116,11 @@ beH
beH
bqZ
bdg
-buH
-bHa
-bHT
-bHa
-rKy
+oSM
+awE
+jnc
+awE
+dNW
vra
asX
drj
@@ -120778,18 +121136,18 @@ cgo
hQc
asX
vra
-cwQ
-vtB
-tQo
-bGb
-rng
-rng
-rng
-rng
-rng
-fKC
-rzK
-qbs
+crc
+goo
+hAA
+mJO
+mJO
+mJO
+mJO
+mJO
+mJO
+jPx
+pgJ
+lyW
aag
aag
aag
@@ -120818,31 +121176,31 @@ aag
aag
aag
aag
-qdy
-oKB
-nxJ
-rOR
-ivy
-ivy
-ivy
-ivy
-rOR
+vHn
+hoT
+tob
+cGd
+vVY
+vVY
+vVY
+vVY
+cGd
mAF
ilq
pjj
-rOR
-dzS
-nxJ
-oKB
-cNn
+cGd
+dkt
+tob
+hoT
+xfW
ael
afJ
agY
aiq
ajJ
-aEX
-ajt
-aow
+dpS
+mxg
+iUV
mOi
rCw
rCw
@@ -120858,31 +121216,31 @@ dgg
xRk
bti
aHq
-sDC
-ajt
-kGI
-ejp
-lYm
-iTV
-eLq
-lYm
-yaa
-dhe
-iTV
-dhe
-lYm
+rwf
+mxg
+qGZ
+mqd
+mRU
+jtU
+vzB
+mRU
+bBc
+vpf
+jtU
+vpf
+mRU
gfN
efj
sxE
-lYm
-wqU
-wqU
-wqU
-wqU
-lYm
-uCU
-iTV
-ckw
+mRU
+qSw
+qSw
+qSw
+qSw
+mRU
+vpI
+jtU
+woU
aag
aag
aag
@@ -120910,18 +121268,18 @@ aad
aag
aag
aag
-nnw
-sMe
-wli
-pAH
-pCe
-pCe
-pCe
-vbk
-aLB
-enx
-aQt
-oQj
+kyw
+xwd
+lfx
+bwG
+ycl
+ycl
+ycl
+jCg
+bwG
+wBw
+bZo
+vsf
jeb
vlX
tdE
@@ -120937,11 +121295,11 @@ xHp
xwl
vlX
jeb
-pGM
-aNO
-aYT
-aNO
-bad
+dQV
+meQ
+iEM
+meQ
+onn
bdd
bDQ
lnm
@@ -120961,11 +121319,11 @@ sCA
bVw
cab
bdd
-bGe
-bHa
-bHT
-bHa
-bIR
+tmE
+awE
+jnc
+awE
+gvK
vra
asX
qUq
@@ -120981,18 +121339,18 @@ lpt
qYQ
asX
vra
-ojR
-tki
-lQQ
-bGb
-kks
-kks
-kks
-xOb
-rng
-fKC
-jbS
-qbs
+lDk
+dEK
+oWN
+mJO
+plv
+plv
+plv
+mbR
+mJO
+jPx
+mgb
+lyW
aag
aag
aag
@@ -121021,31 +121379,31 @@ aag
aag
aag
aag
-qdy
-nxJ
-wTe
-rOR
-ivy
-ivy
-ivy
-ivy
-rOR
+vHn
+tob
+xLu
+cGd
+vVY
+vVY
+vVY
+vVY
+cGd
hZE
kbv
mbx
-rOR
-uUD
-nxJ
-oKB
-cNn
+cGd
+gMJ
+tob
+hoT
+xfW
ael
afK
ahc
air
ael
-isW
-ajt
-ali
+nBo
+mxg
+uZI
mOi
wCT
sIf
@@ -121061,31 +121419,31 @@ oqv
iqd
rUy
cnS
-iWN
-ajt
-nYv
-lYm
-lYm
-iTV
-lcL
-lYm
-eSp
-qsr
-iTV
-dhe
-lYm
+klr
+mxg
+pSN
+mRU
+mRU
+jtU
+oNM
+mRU
+tih
+ycM
+jtU
+vpf
+mRU
aDS
aPT
hGV
-lYm
-wqU
-wqU
-wqU
-wqU
-lYm
-iTV
-dhe
-ckw
+mRU
+qSw
+qSw
+qSw
+qSw
+mRU
+jtU
+vpf
+woU
aag
aag
aag
@@ -121113,18 +121471,18 @@ aad
aag
aag
aag
-nnw
-xnn
-wli
-pAH
-pCe
-pCe
-pCe
-pCe
-aLB
-ewo
-aNO
-jLv
+kyw
+deq
+lfx
+bwG
+ycl
+ycl
+ycl
+ycl
+bwG
+tQe
+meQ
+ktl
jeb
obE
thA
@@ -121140,11 +121498,11 @@ xHp
diJ
rHf
jeb
-aLG
-aNO
-aYT
-aNO
-aLG
+fZE
+meQ
+iEM
+meQ
+fZE
bCx
bqZ
cNf
@@ -121164,11 +121522,11 @@ nuK
dVe
bqZ
bCx
-buH
-bHa
-rrV
-bHa
-buH
+oSM
+awE
+vOZ
+awE
+oSM
vra
bMq
drj
@@ -121184,18 +121542,18 @@ lpt
eBV
ptj
vra
-fsH
-bHY
-pBn
-bGb
-kks
-kks
-kks
-kks
-rng
-xIB
-cER
-qbs
+xzI
+mkx
+hdV
+mJO
+plv
+plv
+plv
+plv
+mJO
+nEl
+xbg
+lyW
aag
aag
aag
@@ -121224,31 +121582,31 @@ aag
aag
aag
aag
-qdy
-nxJ
-ujc
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
+vHn
+tob
+hUb
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
laM
kbv
nkH
-rOR
-cFb
-tsI
-sYe
-eOY
+cGd
+eJZ
+rRb
+cXd
+xew
ael
afL
ahe
aij
ael
-abg
-akU
-abg
+acQ
+lOn
+acQ
mOi
kbH
kbH
@@ -121264,31 +121622,31 @@ wDy
aGN
dxv
cnS
-cnv
-ajt
-bYe
-pmS
-dhe
-dhe
-tXX
-lYm
-lYm
-lYm
-hdf
-lYm
-lYm
+riK
+mxg
+kGS
+rXF
+vpf
+vpf
+aBQ
+mRU
+mRU
+mRU
+gBs
+mRU
+mRU
oIa
aPT
bqY
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-dhe
-dhe
-ckw
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+vpf
+vpf
+woU
aag
aag
aag
@@ -121311,23 +121669,23 @@ aKQ
aaa
aaa
aab
-nnw
-nnw
-nnw
-nnw
-nnw
-nnw
-xnn
-sro
-pAH
-pCe
-pCe
-pCe
-pCe
+kyw
+kyw
+kyw
+kyw
+kyw
+kyw
+deq
+iGc
+bwG
+ycl
+ycl
+ycl
+ycl
cmC
-aLG
-aNO
-uBw
+fZE
+meQ
+hvz
jeb
vlX
tdE
@@ -121343,11 +121701,11 @@ xHp
xwl
vlX
jeb
-aLG
-aNO
-aYV
-bai
-bbg
+fZE
+meQ
+cmL
+czR
+jzT
bCy
bDS
cNf
@@ -121367,11 +121725,11 @@ qnC
dVe
cac
bCy
-bzK
-bHb
-bHV
-bHa
-rbX
+hQf
+sTU
+xLX
+awE
+hCf
vra
asX
qUq
@@ -121387,23 +121745,23 @@ lpt
qYQ
asX
vra
-pJJ
-bHY
-buH
+wcD
+mkx
+oSM
cnd
-kks
-kks
-kks
-kks
-rng
-faC
-cER
-qbs
-qbs
-qbs
-qbs
-qbs
-qbs
+plv
+plv
+plv
+plv
+mJO
+kLm
+xbg
+lyW
+lyW
+lyW
+lyW
+lyW
+lyW
aaa
aab
aaa
@@ -121427,31 +121785,31 @@ aag
aag
aag
aag
-qdy
-wGa
-tvm
-rOR
-ivy
-ivy
-ivy
-pJa
-rOR
+vHn
+tJq
+bLf
+cGd
+vVY
+vVY
+vVY
+tvS
+cGd
hZE
kbv
mbx
-rOR
-leQ
-rOR
-rOR
-rOR
+cGd
+cva
+cGd
+cGd
+cGd
adO
adO
adO
adO
adO
-lwm
-akU
-nQx
+frI
+lOn
+oNa
mOi
mOi
mOi
@@ -121467,31 +121825,31 @@ nTs
pje
pje
cnT
-xvh
-fNC
-cKY
-lYm
-lYm
-lYm
-lYm
-lYm
-jnl
-wzC
-iTV
-bDN
-lYm
+meS
+gUk
+naj
+mRU
+mRU
+mRU
+mRU
+mRU
+jwM
+oZn
+jtU
+lPW
+mRU
aDS
aPT
hGV
-lYm
-wqU
-wqU
-wqU
-axT
-lYm
-vJq
-dhe
-ckw
+mRU
+qSw
+qSw
+qSw
+vMQ
+mRU
+wUJ
+vpf
+woU
aag
aag
aag
@@ -121514,23 +121872,23 @@ aKQ
aaa
aaa
aab
-nnw
-eNf
-xnn
-xnn
-xnn
-xnn
-xnn
-cVZ
-pAH
-pCe
-pCe
-pCe
-pCe
-aLB
-fTU
-bbO
-cmg
+kyw
+ety
+deq
+deq
+deq
+deq
+deq
+xJp
+bwG
+ycl
+ycl
+ycl
+ycl
+bwG
+lFL
+sNL
+ygB
jeb
jeb
hfa
@@ -121546,11 +121904,11 @@ xWd
oSL
jeb
jeb
-aLG
-aNO
-aYW
-sLE
-bbh
+fZE
+meQ
+dAm
+fEF
+otC
bdd
bDT
tHv
@@ -121570,11 +121928,11 @@ iXb
pzV
cad
bdd
-oLT
-iEb
-bHW
-bHa
-buH
+vMA
+oYi
+sIR
+awE
+oSM
vra
vra
eUh
@@ -121590,23 +121948,23 @@ mSU
wVy
vra
vra
-cmd
-cmh
-wAR
-bGb
-kks
-kks
-kks
-kks
-rng
-xIB
-cER
-wuR
-jbS
-pga
-ygb
-fkF
-qbs
+siy
+wIX
+aCu
+mJO
+plv
+plv
+plv
+plv
+mJO
+nEl
+xbg
+jPU
+mgb
+cgU
+oqI
+iDk
+lyW
aaa
aab
aaa
@@ -121630,31 +121988,31 @@ aag
aag
aag
aag
-qdy
-oKB
-qXe
-rOR
-ivy
-ivy
-ivy
-ivy
-rOR
+vHn
+hoT
+rGz
+cGd
+vVY
+vVY
+vVY
+vVY
+cGd
hHe
gxn
gKd
-rOR
-oKB
-oKB
-far
-ssF
+cGd
+hoT
+hoT
+svV
+rIE
adO
afM
fpR
ahf
adO
-wUz
-aii
-abg
+dni
+jao
+acQ
aqU
sdl
mLE
@@ -121670,31 +122028,31 @@ rsO
aGN
rbB
cnS
-cbr
-ajt
-anc
+dKD
+mxg
+jvz
aUH
aXx
jKI
aXx
-lYm
-eSp
-dhe
-iTV
-dhe
-lYm
+mRU
+tih
+vpf
+jtU
+vpf
+mRU
lCL
pMA
gcm
-lYm
-wqU
-wqU
-wqU
-wqU
-lYm
-bEW
-iTV
-ckw
+mRU
+qSw
+qSw
+qSw
+qSw
+mRU
+uNz
+jtU
+woU
aag
aag
aag
@@ -121717,23 +122075,23 @@ aKQ
aaa
aaa
aab
-nnw
-pDZ
-wli
-wli
-wli
-wli
-dDd
-dle
-pAH
-pCe
-pCe
-pCe
-pCe
-aLB
-ahj
-ahj
-ahj
+kyw
+byt
+lfx
+lfx
+lfx
+lfx
+txp
+veq
+bwG
+ycl
+ycl
+ycl
+ycl
+bwG
+bwP
+bwP
+bwP
jeb
tkN
qHg
@@ -121749,11 +122107,11 @@ gAA
cGV
tkN
jeb
-aWM
-aNO
-aYX
-gjn
-bbi
+hjQ
+meQ
+fNd
+oUi
+qdV
bdd
bDU
bqZ
@@ -121773,11 +122131,11 @@ bqZ
bqZ
cae
bdd
-bGg
-bHd
-bHX
-bHa
-buH
+huP
+nbu
+kcg
+awE
+oSM
vra
gNq
hXb
@@ -121793,23 +122151,23 @@ cgo
skF
gNq
vra
-ajX
-ajX
-ajX
-bGb
-kks
-kks
-kks
-kks
-rng
-ncw
-lTL
-kyH
-lTL
-lTL
-onr
-cER
-qbs
+fqA
+fqA
+fqA
+mJO
+plv
+plv
+plv
+plv
+mJO
+rxq
+sAS
+cXX
+sAS
+sAS
+nHG
+xbg
+lyW
aaa
aab
aaa
@@ -121833,31 +122191,31 @@ aag
aag
aag
aag
-qdy
-nxJ
-sen
-rOR
-ivy
-ivy
-ivy
-ivy
+vHn
+tob
+alh
+cGd
+vVY
+vVY
+vVY
+vVY
bWh
hmj
kbv
fZo
-rOR
-cWP
-oKB
-oKB
-vyS
+cGd
+ykY
+hoT
+hoT
+tjz
adO
afN
ahh
aiw
ahG
-bYe
-ajt
-abg
+kGS
+mxg
+acQ
aqU
xbN
gfE
@@ -121873,31 +122231,31 @@ liJ
pTj
cnq
cnS
-iWN
-aii
-abg
+klr
+jao
+acQ
aUH
oyE
mMP
mMP
-lYm
-iTV
-dhe
-iTV
-dhe
-lYm
+mRU
+jtU
+vpf
+jtU
+vpf
+mRU
mzs
aPT
xyB
cix
-wqU
-wqU
-wqU
-wqU
-lYm
-wlQ
-iTV
-ckw
+qSw
+qSw
+qSw
+qSw
+mRU
+bWg
+jtU
+woU
aag
aag
aag
@@ -121920,23 +122278,23 @@ aKQ
aaa
aaa
aab
-nnw
-xnn
-wli
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdb
-ahj
-ahj
+kyw
+deq
+lfx
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+txE
+bwP
+bwP
jeb
aMx
qHg
@@ -121952,11 +122310,11 @@ xHp
cGV
nBa
jeb
-beB
-beB
-aYW
-bzV
-cBA
+atH
+atH
+dAm
+aCX
+suH
bdd
beQ
beQ
@@ -121976,11 +122334,11 @@ beQ
beQ
beQ
bdd
-bRQ
-cbS
-bHW
-bJz
-bJz
+oCb
+wwv
+sIR
+brq
+brq
vra
bMu
hXb
@@ -121996,23 +122354,23 @@ lpt
skF
pQF
vra
-ajX
-ajX
-hBC
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-xIB
-jbS
-qbs
+fqA
+fqA
+gzM
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+nEl
+mgb
+lyW
aaa
aab
aaa
@@ -122036,31 +122394,31 @@ aag
aag
aag
aag
-qdy
-xeV
-oKB
-rOR
-ivy
-ivy
-ivy
-ivy
-rOR
+vHn
+btV
+hoT
+cGd
+vVY
+vVY
+vVY
+vVY
+cGd
mAF
ilq
pjj
-rOR
-eKk
-jEB
-oKB
-pqU
+cGd
+boU
+nNI
+hoT
+veO
adO
afO
ahh
aiw
adO
-aEp
-xTt
-aEp
+mQF
+yaR
+mQF
lmK
lmK
lmK
@@ -122076,31 +122434,31 @@ cnH
kzk
cnR
aHq
-aEp
-xTt
-aEp
+mQF
+yaR
+mQF
aUH
sIA
gSj
aXA
-lYm
-iTV
-dhe
-iTV
-yaa
-lYm
+mRU
+jtU
+vpf
+jtU
+bBc
+mRU
gfN
efj
sxE
-lYm
-wqU
-wqU
-wqU
-wqU
-lYm
-uyb
-enA
-ckw
+mRU
+qSw
+qSw
+qSw
+qSw
+mRU
+kUL
+tMU
+woU
aag
aag
aag
@@ -122123,23 +122481,23 @@ aKQ
aaa
aaa
aab
-nnw
-xnn
-sro
-wdA
-bbB
-bbB
-arn
-ajO
-ajO
-ajO
-clC
-ajO
-ajO
-cno
-ahj
-ahj
-ahj
+kyw
+deq
+iGc
+wDr
+mFL
+mFL
+iFp
+wNz
+wNz
+wNz
+oWE
+wNz
+wNz
+suU
+bwP
+bwP
+bwP
jeb
iow
aMO
@@ -122155,11 +122513,11 @@ xHp
aUi
iow
jeb
-aLG
-aNO
-aYY
-bal
-bbj
+fZE
+meQ
+rTA
+tAW
+stR
bCz
bDV
bGw
@@ -122179,18 +122537,18 @@ bGw
bGw
bGw
bCz
-buH
-iEb
-bHW
-bHa
-vMx
+oSM
+oYi
+sIR
+awE
+dnP
vra
wTw
bNE
wDJ
ivs
nyQ
-ipY
+dXH
vWB
bSK
nyQ
@@ -122199,23 +122557,23 @@ bUi
bUT
wTw
vra
-ajX
-ajX
-ajX
-amS
-aoc
-aoc
-uQU
-aoc
-aoc
-aoc
-aAv
-eZi
-eZi
-wdA
-fKC
-lyV
-qbs
+fqA
+fqA
+fqA
+dBg
+aqL
+aqL
+buY
+aqL
+aqL
+aqL
+uWm
+nRA
+nRA
+wDr
+jPx
+wdW
+lyW
aaa
aab
aaa
@@ -122239,31 +122597,31 @@ aag
aag
aag
aag
-qdy
-nxJ
-nxJ
-rOR
-ivy
-ivy
-ivy
-ivy
-rOR
+vHn
+tob
+tob
+cGd
+vVY
+vVY
+vVY
+vVY
+cGd
xXT
sVV
tkR
-rOR
-ulG
-lrD
-nxJ
-kiY
+cGd
+ipr
+pUL
+tob
+eQd
adO
jkj
ahh
aiw
adO
-uLu
-anC
-aiC
+ebV
+mbu
+kCo
ioU
pvK
qPE
@@ -122279,31 +122637,31 @@ liJ
hgB
cbn
aHq
-uLu
-aQo
-aTS
+ebV
+qGP
+pym
aUd
ckK
iKM
aHM
-lYm
-iTV
-dhe
-bDN
-dRf
-lYm
+mRU
+jtU
+vpf
+lPW
+vwJ
+mRU
nme
sfT
vAH
-lYm
-wqU
-wqU
-wqU
-wqU
-lYm
-wQM
-dhe
-ckw
+mRU
+qSw
+qSw
+qSw
+qSw
+mRU
+edG
+vpf
+woU
aag
aag
aag
@@ -122326,23 +122684,23 @@ aKQ
aaa
aaa
aab
-nnw
-wli
-cTc
-wdA
-bbB
-bbB
-arn
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-cno
-ahj
-ahj
-ahj
+kyw
+lfx
+gSH
+wDr
+mFL
+mFL
+iFp
+wNz
+wNz
+wNz
+wNz
+wNz
+wNz
+suU
+bwP
+bwP
+bwP
aLT
aLT
aLT
@@ -122358,11 +122716,11 @@ aQL
aQL
aQL
aQL
-pGM
-aNO
-aYW
-sLE
-aLG
+dQV
+meQ
+dAm
+fEF
+fZE
bCA
bCA
bdj
@@ -122382,11 +122740,11 @@ bCA
bdj
bCA
bCA
-buH
-iEb
-bHW
-bHa
-bIR
+oSM
+oYi
+sIR
+awE
+gvK
bJC
bJC
bJC
@@ -122402,23 +122760,23 @@ bSJ
bSJ
bSJ
bSJ
-ajX
-ajX
-ajX
-amS
-aoc
-aoc
-aoc
-aoc
-aoc
-aoc
-aAv
-eZi
-eZi
-wdA
-xIB
-jbS
-qbs
+fqA
+fqA
+fqA
+dBg
+aqL
+aqL
+aqL
+aqL
+aqL
+aqL
+uWm
+nRA
+nRA
+wDr
+nEl
+mgb
+lyW
aaa
aab
aaa
@@ -122442,31 +122800,31 @@ aag
aag
aag
aag
-qdy
-oKB
-oKB
-rOR
-rOR
-rOR
-rOR
-rOR
-rOR
+vHn
+hoT
+hoT
+cGd
+cGd
+cGd
+cGd
+cGd
+cGd
ehL
kyr
chb
-rOR
-rOR
-rOR
-jZD
-rOR
-rOR
+cGd
+cGd
+cGd
+moK
+cGd
+cGd
lFt
ahh
aiw
adO
-aSz
-anG
-aiC
+qHu
+hqx
+kCo
ioU
qyZ
wTd
@@ -122482,31 +122840,31 @@ liJ
qmP
uoH
aHq
-aiC
-anC
-aiC
+kCo
+mbu
+kCo
aUH
dbv
lII
aWc
-lYm
-hdf
-lYm
-lYm
-lYm
-lYm
+mRU
+gBs
+mRU
+mRU
+mRU
+mRU
tCx
ncG
tZg
-lYm
-lYm
-lYm
-lYm
-lYm
-lYm
-iTV
-iTV
-ckw
+mRU
+mRU
+mRU
+mRU
+mRU
+mRU
+jtU
+jtU
+woU
aag
aag
aag
@@ -122529,23 +122887,23 @@ aKQ
aaa
aaa
aab
-nnw
-jtG
-ecf
-wdA
-bbB
-bbB
-arn
-ajO
-ajO
-ajO
-ajO
-ajO
-ajO
-cno
-ahj
-ahj
-ahj
+kyw
+oif
+nRN
+wDr
+mFL
+mFL
+iFp
+wNz
+wNz
+wNz
+wNz
+wNz
+wNz
+suU
+bwP
+bwP
+bwP
aLT
kaB
vVb
@@ -122561,11 +122919,11 @@ aQL
mJP
bSn
aQL
-vHs
-ehH
-aYZ
-sLE
-bAV
+hEm
+kti
+eFa
+fEF
+exQ
bCB
bCB
bCB
@@ -122585,11 +122943,11 @@ bCB
bCB
bCB
bCB
-cbv
-iEb
-bHY
-mru
-syP
+uuI
+oYi
+mkx
+bIW
+eMZ
bJC
jSp
lAQ
@@ -122605,23 +122963,23 @@ bSJ
hII
iJS
bSJ
-ajX
-ajX
-ajX
-amS
-aoc
-aoc
-aoc
-aoc
-aoc
-aoc
-aAv
-eZi
-eZi
-wdA
-buY
-jta
-qbs
+fqA
+fqA
+fqA
+dBg
+aqL
+aqL
+aqL
+aqL
+aqL
+aqL
+uWm
+nRA
+nRA
+wDr
+xgS
+svF
+lyW
aaa
aab
aaa
@@ -122645,31 +123003,31 @@ aag
aag
aag
aag
-qdy
-oKB
-nxJ
-cgU
-oKB
-nxJ
-nxJ
-mvu
-oFg
+vHn
+hoT
+tob
+lso
+hoT
+tob
+tob
+hqm
+rpG
cSa
aeA
sjz
-oFg
-mvu
-nxJ
-nxJ
-oKB
-cLx
+rpG
+hqm
+tob
+tob
+hoT
+fkK
aiw
ahh
aiw
nph
-aiC
-ajF
-aiC
+kCo
+tSY
+kCo
ioU
mSz
nIG
@@ -122685,31 +123043,31 @@ iKf
aGN
qrv
aHq
-cgJ
-ajG
-aiC
+hBa
+gft
+kCo
aGz
ckd
mQC
aHM
-pmS
-iTV
-iTV
-ivG
-qsr
-pmS
+rXF
+jtU
+jtU
+egQ
+ycM
+rXF
wcm
lJY
guo
-pmS
-uPD
-dhe
-qHK
-iTV
-iTV
-dhe
-dhe
-ckw
+rXF
+fLi
+vpf
+uBx
+jtU
+jtU
+vpf
+vpf
+woU
aag
aag
aag
@@ -122732,21 +123090,21 @@ aKQ
aaa
aaa
aab
-nnw
-oBS
-qvG
-wdA
-bbC
-aan
-aan
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
+kyw
+vaV
+qxJ
+wDr
+lFw
+wWt
+wWt
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
aLT
aLT
aLT
@@ -122764,11 +123122,11 @@ aTw
aUj
kLk
aQL
-mTn
-aiy
-aYZ
-sLE
-bbk
+npw
+vzi
+eFa
+fEF
+rbd
bdk
bdk
bgR
@@ -122788,11 +123146,11 @@ myJ
eKI
bdk
bdk
-bGh
-iEb
-bHY
-njy
-hkE
+cxF
+oYi
+mkx
+fic
+kjW
bJC
ojF
bNG
@@ -122809,22 +123167,22 @@ bUU
uDW
bSJ
bSJ
-lij
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-tGq
-tGq
-jjT
-wdA
-hLq
-jbS
-qbs
+ljv
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+fCg
+fCg
+geu
+wDr
+wtk
+mgb
+lyW
aaa
aab
aaa
@@ -122849,30 +123207,30 @@ aag
aag
aag
abh
-rOR
-rOR
-jZD
-rOR
-rOR
-rOR
-rOR
-rOR
+cGd
+cGd
+moK
+cGd
+cGd
+cGd
+cGd
+cGd
wYa
nBK
mzS
-rOR
-rOR
-rOR
-rOR
-nxJ
-rOR
+cGd
+cGd
+cGd
+cGd
+tob
+cGd
afP
ahh
aiw
nph
-aiC
-anG
-aiC
+kCo
+hqx
+kCo
ioU
ioU
ioU
@@ -122888,30 +123246,30 @@ aGN
aGN
pSU
aHq
-czM
-ajG
-aiC
+qcL
+gft
+kCo
aGz
drk
mQC
mkG
-lYm
-uCU
-lYm
-lYm
-lYm
-lYm
+mRU
+vpI
+mRU
+mRU
+mRU
+mRU
nuM
uHr
xwX
-lYm
-lYm
-lYm
-lYm
-lYm
-hdf
-lYm
-lYm
+mRU
+mRU
+mRU
+mRU
+mRU
+gBs
+mRU
+mRU
uOi
aag
aag
@@ -122935,10 +123293,10 @@ aKQ
aaa
aaa
aab
-nnw
-wli
-egM
-wdA
+kyw
+lfx
+gUn
+wDr
bdY
bdY
bdY
@@ -122949,7 +123307,7 @@ aaF
aaF
aaF
aaF
-wdA
+wDr
aLT
aLT
aLT
@@ -122968,10 +123326,10 @@ aQL
aQL
aQL
aQL
-uQn
-aYZ
-sLE
-bbl
+uBj
+eFa
+fEF
+wMB
bdl
bdl
bdl
@@ -122991,10 +123349,10 @@ bdl
bdl
bdl
bdl
-bGi
-iEb
-bHY
-oyy
+opd
+oYi
+mkx
+jwP
bJC
bJC
bJC
@@ -123012,8 +123370,8 @@ bSJ
bSJ
bSJ
bSJ
-lij
-wdA
+ljv
+wDr
anm
anm
anm
@@ -123024,10 +123382,10 @@ anm
pfp
pfp
pfp
-wdA
-xIB
-cER
-qbs
+wDr
+nEl
+xbg
+lyW
aaa
aab
aaa
@@ -123066,16 +123424,16 @@ aeA
bbe
aeA
aeA
-rOR
-nxJ
-rOR
+cGd
+tob
+cGd
afQ
aiw
aiw
nph
-aiC
-anG
-aiC
+kCo
+hqx
+kCo
ioU
lPO
vJg
@@ -123091,16 +123449,16 @@ eEo
aGN
rub
aHq
-cES
-ajG
-aiC
+gar
+gft
+kCo
aGz
eqB
obC
hcf
-lYm
-dlt
-lYm
+mRU
+cpQ
+mRU
lJY
lJY
lFK
@@ -123138,10 +123496,10 @@ aKQ
aaa
aaa
aab
-nnw
-nsh
-nsh
-wdA
+kyw
+oxn
+oxn
+wDr
bdY
bdY
bdY
@@ -123152,7 +123510,7 @@ aaF
aaF
aaF
aaF
-wdA
+wDr
aLT
aLT
bbY
@@ -123171,17 +123529,17 @@ brn
aRT
buM
aQL
-aLG
-aYZ
-sLE
-bbl
+fZE
+eFa
+fEF
+wMB
bdl
bEr
bEs
bIs
bdm
rbY
-gwD
+eAG
bOK
bPD
bYa
@@ -123194,10 +123552,10 @@ bYu
nmK
caf
bdl
-bGj
-iEb
-bHY
-buH
+oDU
+oYi
+mkx
+oSM
bJC
cdT
cfo
@@ -123215,8 +123573,8 @@ clI
clg
clW
bSJ
-lij
-wdA
+ljv
+wDr
anm
anm
anm
@@ -123227,10 +123585,10 @@ anm
pfp
pfp
pfp
-wdA
-xzx
-mSm
-qbs
+wDr
+cZI
+xGT
+lyW
aaa
aab
aaa
@@ -123269,16 +123627,16 @@ asA
amF
kmE
aeA
-rOR
-rLQ
-rOR
+cGd
+iTQ
+cGd
ahJ
ahJ
ahJ
adO
-aiC
-ajF
-aiC
+kCo
+tSY
+kCo
ioU
dnS
viN
@@ -123294,16 +123652,16 @@ aRi
aGN
qrv
aHq
-aOS
-ajG
-aiC
+oUO
+gft
+kCo
aUH
aGz
aGz
aGz
-lYm
-eLq
-lYm
+mRU
+vzB
+mRU
lJY
qbx
dcp
@@ -123341,10 +123699,10 @@ aKQ
aaa
aaa
aab
-kHq
-fhT
-fhT
-wdA
+emA
+vIg
+vIg
+wDr
bdY
bdY
bdY
@@ -123355,7 +123713,7 @@ aaF
aaF
aaF
aaF
-wdA
+wDr
aLT
aLT
bca
@@ -123374,10 +123732,10 @@ aQL
aUY
buN
aQL
-aLG
-aYZ
-sLE
-bbl
+fZE
+eFa
+fEF
+wMB
bdl
bDX
bCA
@@ -123397,10 +123755,10 @@ rIH
tUh
cag
bdl
-bGk
-iEb
-bHY
-buH
+jDz
+oYi
+mkx
+oSM
bJC
cdU
bMy
@@ -123418,8 +123776,8 @@ bSJ
bVo
clX
bSJ
-lij
-wdA
+ljv
+wDr
anm
anm
anm
@@ -123430,10 +123788,10 @@ anm
pfp
pfp
pfp
-wdA
-hgR
-kzd
-nhJ
+wDr
+cOo
+rJf
+tcO
aaa
aab
aaa
@@ -123472,16 +123830,16 @@ aeC
vOh
gUX
ily
-rOR
-jZD
-rOR
-aWd
-aWd
-aWd
-pji
-aiC
-ajF
-aiC
+cGd
+moK
+cGd
+fiH
+fiH
+fiH
+ybk
+kCo
+tSY
+kCo
ioU
pPM
qKz
@@ -123497,16 +123855,16 @@ xNv
iLO
bUa
aHq
-aSz
-anC
-aiC
-pji
-aWd
-aWd
-aWd
-lYm
-hdf
-lYm
+qHu
+mbu
+kCo
+ybk
+fiH
+fiH
+fiH
+mRU
+gBs
+mRU
cBb
xVS
lJY
@@ -123544,21 +123902,21 @@ aKQ
aaa
aaa
aab
-kHq
-uBE
-uBE
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
+emA
+gPS
+gPS
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
aLT
aLT
aLT
@@ -123577,10 +123935,10 @@ aQL
aQL
aQL
aQL
-pGM
-aYZ
-sLE
-bbm
+dQV
+eFa
+fEF
+fNH
bdl
bDY
bCA
@@ -123600,10 +123958,10 @@ jac
bCA
cah
bdl
-bGl
-iEb
-bHY
-bIR
+wPi
+oYi
+mkx
+gvK
bJC
bJC
bJC
@@ -123621,22 +123979,22 @@ bSJ
bSJ
bSJ
bSJ
-lij
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-wdA
-drQ
-pGD
-nhJ
+ljv
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+wDr
+nGM
+hIp
+tcO
aaa
aab
aaa
@@ -123675,16 +124033,16 @@ aeC
aeC
ajs
aeC
-aGD
-aWd
-eTO
-anR
-anR
-lNl
-aFW
-aSy
-anH
-aoB
+bZq
+fiH
+rGc
+xjI
+xjI
+fzm
+pBg
+gmZ
+dpN
+txd
alL
alL
alL
@@ -123700,16 +124058,16 @@ jvY
alL
alL
alL
-aSy
-aoS
-dZd
-aFW
-aIe
-anR
-anR
-uWC
-aHQ
-apj
+gmZ
+onh
+wJd
+pBg
+iOP
+xjI
+xjI
+roY
+vXk
+jgS
vcE
kUV
vcE
@@ -123747,22 +124105,22 @@ aKQ
aaa
aaa
aab
-kHq
-aYf
-hsf
-lpj
-iED
-hsf
-aYf
-iJU
-gBP
-kSA
-twO
-pkv
-glm
-qXm
-sNC
-pkv
+emA
+jEM
+ikT
+owU
+iTq
+ikT
+jEM
+kjY
+riB
+fGi
+qan
+jkN
+jUh
+tIF
+bCk
+jkN
aLT
bco
aMB
@@ -123780,10 +124138,10 @@ brr
aUZ
buO
aQL
-aLG
-aYZ
-sLE
-jJs
+fZE
+eFa
+fEF
+tLZ
bdl
bDZ
bdj
@@ -123803,10 +124161,10 @@ jac
xxa
cai
bdl
-bII
-iEb
-bHY
-buH
+tkg
+oYi
+mkx
+oSM
bJC
cdV
bMx
@@ -123824,22 +124182,22 @@ clJ
bVn
clY
bSJ
-lij
-vCB
-oKi
-oKi
-oKi
-tfj
-qLO
-vRW
-lij
-xtU
-doX
-fmZ
-fmZ
-bYd
-fJA
-nhJ
+ljv
+dnZ
+eHy
+eHy
+eHy
+cyp
+oaO
+lWY
+ljv
+jiM
+ere
+lYg
+lYg
+sEu
+lia
+tcO
aaa
aab
aaa
@@ -123878,16 +124236,16 @@ wXh
aeC
ydz
ayb
-aGC
-tSw
-agJ
-aXE
-aXE
-agJ
-aFV
-hPK
-aXE
-akH
+rrG
+gBZ
+tGW
+rfQ
+rfQ
+tGW
+oOi
+szb
+rfQ
+vnZ
jvY
jvY
jvY
@@ -123903,16 +124261,16 @@ jvY
jvY
jvY
jvY
-aSB
-iWd
-elA
-aFV
-aGC
-aXE
-aXE
-aGC
-rph
-agJ
+urs
+eEF
+wmH
+oOi
+rrG
+rfQ
+rfQ
+rrG
+sBK
+tGW
sSl
kkx
vcE
@@ -123950,22 +124308,22 @@ aKQ
aaa
aaa
aab
-kHq
-aXd
-iJU
-kFi
-eTJ
-aYf
-hsf
-aYf
-gYL
-aEE
-gYL
-aYf
-hsf
-iJU
-sNC
-lPP
+emA
+kJZ
+kjY
+fGB
+snN
+jEM
+ikT
+jEM
+lty
+eTD
+lty
+jEM
+ikT
+kjY
+bCk
+heO
aLT
bco
bdr
@@ -123983,17 +124341,17 @@ brr
aRT
buO
aQL
-aLG
-aYZ
-sLE
-bkY
+fZE
+eFa
+fEF
+xpc
bdl
lOr
lOr
iwI
bdl
bdl
-bEt
+reH
bNP
bmD
bNP
@@ -124006,10 +124364,10 @@ bYv
tiE
tiE
bdl
-rqw
-iEb
-bHY
-buH
+fJt
+oYi
+mkx
+oSM
bJC
cdV
cfo
@@ -124027,22 +124385,22 @@ clJ
clg
clY
bSJ
-lij
-vHZ
-fmZ
-fmZ
-eyp
-moT
-dwn
-lCT
-lij
-fNY
-aCr
-aCr
-aCr
-ofP
-eQa
-nhJ
+ljv
+eaz
+lYg
+lYg
+aqH
+oxl
+wac
+mjy
+ljv
+ien
+xhO
+xhO
+xhO
+cmN
+srl
+tcO
aaa
aab
aaa
@@ -124081,16 +124439,16 @@ ngl
aeA
ajk
aeA
-aIe
-aWd
-kYP
-aHQ
-aHQ
-apj
-aFW
-rFY
-aVY
-akI
+iOP
+fiH
+dwJ
+vXk
+vXk
+jgS
+pBg
+vkQ
+brm
+aOw
jvY
arg
atf
@@ -124106,16 +124464,16 @@ jvY
aMm
aOq
jvY
-aDx
-dsk
-mLU
-aFW
-aGD
-aHQ
-aHQ
-lKk
-kKb
-lNl
+biB
+uvq
+cVT
+pBg
+bZq
+vXk
+vXk
+siS
+aRr
+fzm
lJY
xVS
lJY
@@ -124153,22 +124511,22 @@ aKQ
aaa
aaa
aab
-kHq
-kHq
-kHq
-kHq
-kHq
-pMI
-hsf
-aYf
-nmq
-gEM
-sRk
-aYf
-hsf
-aYf
-aYf
-sNC
+emA
+emA
+emA
+emA
+emA
+sEg
+ikT
+jEM
+ahL
+bFl
+nZW
+jEM
+ikT
+jEM
+jEM
+bCk
aLT
bcZ
bdr
@@ -124186,16 +124544,16 @@ brs
aRT
bew
aQL
-beB
-aYW
-bzV
-beB
+atH
+dAm
+aCX
+atH
mCo
iwZ
-lBF
+jFy
bKA
-sbM
-pWA
+mPK
+dmF
pXV
bNP
bmD
@@ -124209,10 +124567,10 @@ eHa
cmo
xAB
mCo
-bJz
-cbS
-bHW
-bJz
+brq
+wwv
+sIR
+brq
bJC
bKX
cfo
@@ -124230,22 +124588,22 @@ clK
clg
bVy
bSJ
-lij
-lij
-lij
-lij
-eYC
-crr
-lij
-lij
-lij
-myA
-lkg
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
+ljv
+ljv
+ljv
+ljv
+tWl
+jer
+ljv
+ljv
+ljv
+jEA
+hCq
+tcO
+tcO
+tcO
+tcO
+tcO
aaa
aab
aaa
@@ -124284,16 +124642,16 @@ nqV
aeA
ajk
ily
-mBf
-rFS
-mBf
-blb
-aWd
-aXT
-pji
-aEp
-aEp
-akJ
+taw
+mRI
+taw
+qnf
+fiH
+wPm
+ybk
+mQF
+mQF
+nbW
jvY
arh
atm
@@ -124309,16 +124667,16 @@ jvY
nSG
aOs
jvY
-aEp
-ixC
-aEp
-pji
-jFg
-aWd
-pCD
-fcW
-kAO
-fcW
+mQF
+pZq
+mQF
+ybk
+dJF
+fiH
+dAr
+kNq
+cWo
+kNq
cBb
xVS
lJY
@@ -124360,18 +124718,18 @@ aaa
aaa
aaa
aaa
-kHq
-ozP
-hsf
-aYf
-kAN
-cSi
-kAN
-aYf
-hsf
-gHm
-aYf
-hsf
+emA
+tcm
+ikT
+jEM
+uzv
+tYr
+uzv
+jEM
+ikT
+hYf
+jEM
+ikT
aLT
bco
bdr
@@ -124389,10 +124747,10 @@ brr
aRT
buO
aQL
-aXS
-aYZ
-kfP
-tBF
+jpW
+eFa
+svw
+mzv
bmv
bEg
bGU
@@ -124412,10 +124770,10 @@ bYw
nDM
bWL
sSa
-qLp
-lYi
-bIb
-mHm
+bRo
+dOG
+gKw
+tgz
bJC
cdV
cfo
@@ -124433,18 +124791,18 @@ clJ
clg
clY
bSJ
-jQK
-fmZ
-fmZ
-fmZ
-bYd
-vHZ
-doX
-fmZ
-fmZ
-bYd
-gbz
-nhJ
+bXh
+lYg
+lYg
+lYg
+sEu
+eaz
+ere
+lYg
+lYg
+sEu
+gEh
+tcO
aaa
aaa
aaa
@@ -124487,16 +124845,16 @@ wXh
aeC
ajs
qon
-mBf
-nUS
+taw
+obJ
aep
ggQ
ggQ
aME
aep
-aiB
-ajN
-akK
+ivV
+jnx
+iPK
jvY
ari
aoP
@@ -124512,16 +124870,16 @@ axo
atm
aOr
jvY
-aiB
-aWf
-aiB
+ivV
+otE
+ivV
aep
aME
ggQ
aME
aep
-eWV
-fcW
+hog
+kNq
dHe
kUV
vcE
@@ -124563,18 +124921,18 @@ aaa
aaa
aaa
aaa
-kHq
-enq
-kFi
-iJU
-lSH
-bJr
-gQz
-aRm
-hsf
-aYf
-aYf
-hsf
+emA
+hyb
+fGB
+kjY
+yia
+ugZ
+kcG
+fBo
+ikT
+jEM
+jEM
+ikT
aLT
bco
aMC
@@ -124592,10 +124950,10 @@ brr
aUY
buO
aQL
-aLG
-aYZ
-sLE
-jJs
+fZE
+eFa
+fEF
+tLZ
mCo
bEh
bNQ
@@ -124615,10 +124973,10 @@ bKA
cXR
cal
mCo
-pJJ
-iEb
-bHY
-buH
+wcD
+oYi
+mkx
+oSM
bJC
cdV
bMy
@@ -124636,18 +124994,18 @@ clJ
bVo
clY
bSJ
-dOr
-aCr
-aCr
-aCr
-aCr
-gbz
-tNy
-gbz
-aCr
-aCr
-nxM
-nhJ
+tgm
+xhO
+xhO
+xhO
+xhO
+gEh
+sOD
+gEh
+xhO
+xhO
+tWp
+tcO
aaa
aaa
aaa
@@ -124690,16 +125048,16 @@ aeC
aeC
ajs
aeC
-mBf
-nHf
+taw
+oxy
aep
afj
afk
agM
aep
-alG
-aYj
-aoD
+pEd
+tbD
+fDk
jvY
arj
atm
@@ -124715,16 +125073,16 @@ bzD
atm
aOs
jvY
-alG
-anG
-apd
+pEd
+hqx
+xhi
aep
aHS
afk
sHo
aep
-waa
-fcW
+vmu
+kNq
vcE
kUV
vcE
@@ -124766,18 +125124,18 @@ aaa
aaa
aaa
aaa
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-iED
-eTJ
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+iTq
+snN
aLT
aLT
aLT
@@ -124795,10 +125153,10 @@ aQL
aQL
aQL
aQL
-aLG
-aYZ
-sLE
-qFb
+fZE
+eFa
+fEF
+bNr
bdl
bEi
bZr
@@ -124818,10 +125176,10 @@ bKA
cir
bdl
bdl
-lgX
-iEb
-bHY
-buH
+sXC
+oYi
+mkx
+oSM
bJC
bJC
bJC
@@ -124839,18 +125197,18 @@ bSJ
bSJ
bSJ
bSJ
-oeY
-aCr
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
+cZp
+xhO
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
aaa
aaa
aaa
@@ -124893,16 +125251,16 @@ aeC
aeA
ajk
aeA
-mBf
-nHf
+taw
+oxy
aep
afk
afk
afk
aep
-alG
-aYj
-aoD
+pEd
+tbD
+fDk
jvY
ark
atm
@@ -124918,16 +125276,16 @@ axo
atm
thv
jvY
-alG
-anG
-apd
+pEd
+hqx
+xhi
aep
afk
aHl
afk
aep
-tWL
-fcW
+hLt
+kNq
lJY
itR
kKR
@@ -124978,9 +125336,9 @@ aaa
aaa
aaa
aaa
-kHq
-hsf
-aYf
+emA
+ikT
+jEM
aLT
bcE
aMB
@@ -124998,10 +125356,10 @@ brt
aUZ
buS
aQL
-aLG
-aYZ
-sLE
-jJs
+fZE
+eFa
+fEF
+tLZ
bdl
brp
bZr
@@ -125020,11 +125378,11 @@ bNQ
bNQ
bNQ
bGz
-hMs
-cbw
-iEb
-bHY
-buH
+egD
+oQn
+oYi
+mkx
+oSM
bJC
cdX
bMx
@@ -125042,9 +125400,9 @@ clL
bVn
clZ
bSJ
-dOr
-aCr
-nhJ
+tgm
+xhO
+tcO
aaa
aaa
aaa
@@ -125096,16 +125454,16 @@ asA
amF
ohL
aeA
-mBf
-sJo
+taw
+oQL
aep
aep
aep
aep
aep
-alJ
-aYj
-aoD
+pvE
+tbD
+fDk
jvY
alL
atk
@@ -125121,16 +125479,16 @@ jvY
aAy
alL
jvY
-alG
-anG
-apd
+pEd
+hqx
+xhi
aep
aep
aep
aep
aep
-vKo
-fcW
+ddF
+kNq
lJY
ucw
dcp
@@ -125181,9 +125539,9 @@ aaa
aaa
aaa
aaa
-kHq
-bhe
-aYf
+emA
+qGC
+jEM
aLT
bcE
bdr
@@ -125201,10 +125559,10 @@ brt
bpC
buS
aQL
-aNn
-aYZ
-sLE
-jJs
+bMf
+eFa
+fEF
+tLZ
bdl
bEl
wup
@@ -125223,11 +125581,11 @@ krN
krN
krN
oqY
-can
-buH
-iEb
-bHY
-buH
+lde
+oSM
+oYi
+mkx
+oSM
bJC
cdX
cfo
@@ -125245,9 +125603,9 @@ clL
clg
clZ
bSJ
-iLH
-tRd
-nhJ
+xMm
+pFr
+tcO
aaa
aaa
aaa
@@ -125299,16 +125657,16 @@ ntI
aeA
aeC
puO
-mBf
-nHf
-nXv
+taw
+oxy
+eRG
aep
aep
aep
aep
-alG
-aYj
-aoD
+pEd
+tbD
+fDk
jvY
arl
atm
@@ -125324,16 +125682,16 @@ alL
aMo
aOt
jvY
-alG
-anG
-apf
+pEd
+hqx
+jhm
oIB
jgr
gGp
dMf
oIB
-waa
-fcW
+vmu
+kNq
lJY
uxC
lJY
@@ -125384,9 +125742,9 @@ aaa
aaa
aaa
aaa
-kHq
-hsf
-aYf
+emA
+ikT
+jEM
aLT
abS
bdr
@@ -125404,10 +125762,10 @@ brs
bpC
abT
aQL
-beB
-aYW
-bzV
-beB
+atH
+dAm
+aCX
+atH
bdl
buz
bZr
@@ -125426,11 +125784,11 @@ ibc
uly
bNN
vbR
-pky
-cbv
-cbS
-bHW
-bJz
+eGq
+uuI
+wwv
+sIR
+brq
bJC
ack
cfo
@@ -125448,9 +125806,9 @@ clK
clg
acp
bSJ
-mAO
-gbz
-nhJ
+qKK
+gEh
+tcO
aaa
aaa
aaa
@@ -125496,22 +125854,22 @@ atr
aeC
atr
aeC
-mBf
-mBf
-mBf
-mBf
-rFS
-mBf
-mBf
-nHf
-iIt
-mBf
-mBf
-mBf
-mBf
-alG
-aYj
-aoD
+taw
+taw
+taw
+taw
+mRI
+taw
+taw
+oxy
+hja
+taw
+taw
+taw
+taw
+pEd
+tbD
+fDk
jvY
abF
atm
@@ -125527,22 +125885,22 @@ aIT
atm
aVF
jvY
-alG
-aYD
-uPI
+pEd
+wZp
+amc
oIB
fXE
kaS
aiQ
oIB
-waa
-fcW
-fcW
-fcW
-fcW
-nVz
-fcW
-fcW
+vmu
+kNq
+kNq
+kNq
+kNq
+qDB
+kNq
+kNq
vcE
bXe
vcE
@@ -125587,9 +125945,9 @@ aaa
aaa
aaa
aaa
-kHq
-aYf
-hsf
+emA
+jEM
+ikT
aLT
bcE
aMC
@@ -125607,10 +125965,10 @@ brt
aUY
buS
aQL
-aLG
-aYZ
-sLE
-uBw
+fZE
+eFa
+fEF
+hvz
bdl
bEm
bZr
@@ -125630,10 +125988,10 @@ uys
uys
uys
uys
-iRr
-iEb
-bHY
-buH
+bfd
+oYi
+mkx
+oSM
bJC
cdX
bMy
@@ -125651,9 +126009,9 @@ clL
bVo
clZ
bSJ
-cBR
-uIF
-nhJ
+hTU
+lNk
+tcO
aaa
aaa
aaa
@@ -125699,22 +126057,22 @@ atr
aeC
atr
aeC
-mBf
-eHJ
-lhS
-mBf
-mFa
-mBf
-jYh
-nHf
-sJo
-mBf
-sJo
-sJo
-mBf
-alK
-ajP
-aoD
+taw
+hEj
+cvi
+taw
+wFX
+taw
+ncV
+oxy
+oQL
+taw
+oQL
+oQL
+taw
+pqv
+gqf
+fDk
jvY
jvY
jvY
@@ -125730,22 +126088,22 @@ jvY
jvY
jvY
jvY
-sUF
-anG
-apd
+xeq
+hqx
+xhi
oIB
wqr
bZw
xUV
oIB
-waa
-nUs
-fcW
-glz
-jbl
-gGX
-bWm
-fcW
+vmu
+vDR
+kNq
+toD
+wDq
+aPO
+sNP
+kNq
vcE
bXe
vcE
@@ -125790,9 +126148,9 @@ aaa
aaa
aaa
aaa
-kHq
-kin
-omi
+emA
+rIV
+dYc
aLT
aLT
aLT
@@ -125810,10 +126168,10 @@ aQL
aQL
aQL
aQL
-bxx
-byF
-bzW
-bxx
+edn
+qRd
+gtH
+edn
bdl
bpT
bNN
@@ -125833,10 +126191,10 @@ dyx
eYr
bUo
uys
-cbz
-cbU
-ccu
-cbz
+kKB
+rsL
+jts
+kKB
bJC
bJC
bJC
@@ -125854,9 +126212,9 @@ bSJ
bSJ
bSJ
bSJ
-sFO
-gbz
-nhJ
+xsv
+gEh
+tcO
aaa
aaa
aaa
@@ -125902,22 +126260,22 @@ atu
azU
aeC
ldl
-mBf
-nHf
-euw
-mBf
-llF
-mBf
-pBE
-rDk
-tcP
-nVY
-rDk
-rDk
-nVY
-aTS
-ajP
-aoD
+taw
+oxy
+stA
+taw
+tvA
+taw
+oTc
+nwT
+ocI
+mfH
+nwT
+nwT
+mfH
+pym
+gqf
+fDk
alL
urM
dBG
@@ -125933,22 +126291,22 @@ jvY
wjv
fDG
alL
-alG
-aYD
-aTS
-uHZ
+pEd
+wZp
+pym
+qgK
tEB
uBM
dXo
oIB
-ePc
-wKe
-fcW
-wCF
-pNu
-gGX
-ddC
-fcW
+xPu
+uOE
+kNq
+swG
+jei
+aPO
+hIX
+kNq
vcE
pxJ
swM
@@ -125993,9 +126351,9 @@ aaa
aaa
aaa
aaa
-kHq
-aYf
-dJF
+emA
+jEM
+kDd
aLT
bdJ
bds
@@ -126013,20 +126371,20 @@ aQL
bsS
mqK
aQL
-aLG
-aYZ
-sLE
-jJs
+bqc
+tcS
+mww
+sZe
bdl
bEp
bCA
-iPy
-qvd
-nAC
-hcx
-oxt
-hcx
-lSF
+wlh
+cvb
+bmC
+nwG
+lDL
+nwG
+lMw
jeO
nQv
ltb
@@ -126036,10 +126394,10 @@ dyx
hGN
pVx
uys
-ttM
-iEb
-ccv
-bIS
+wKm
+ekM
+aVM
+wVm
bJC
cfp
cgu
@@ -126057,9 +126415,9 @@ bSJ
clM
clS
bSJ
-oeY
-gbz
-nhJ
+cZp
+gEh
+tcO
aaa
aaa
aaa
@@ -126099,28 +126457,28 @@ aaa
aad
aag
aag
-sTT
-mBf
-mBf
-mBf
-rFS
-mBf
-mBf
-fWP
-euw
-mBf
-lOa
-mBf
-iao
-nHf
-sEC
-mBf
-sJo
-sJo
-mBf
-uBz
-aYj
-aoE
+fTl
+taw
+taw
+taw
+mRI
+taw
+taw
+wpT
+stA
+taw
+wTn
+taw
+nQw
+oxy
+wjP
+taw
+oQL
+oQL
+taw
+gbR
+tbD
+chC
aqe
amw
anO
@@ -126136,28 +126494,28 @@ arq
anO
qaV
kwd
-aSB
-anG
-mPX
+urs
+hqx
+tFQ
oIB
wKF
hzb
ltU
oIB
-gGX
-xsj
-fcW
-maG
-pNu
-gGX
-cvp
-fcW
-fcW
-fcW
-fcW
-nVz
-fcW
-bMH
+aPO
+eDk
+kNq
+bCR
+jei
+aPO
+fJp
+kNq
+kNq
+kNq
+kNq
+qDB
+kNq
+fVe
aag
aag
afm
@@ -126196,9 +126554,9 @@ aaa
aaa
aaa
aaa
-kHq
-aYf
-hsf
+emA
+jEM
+ikT
aLT
beT
bdr
@@ -126216,20 +126574,20 @@ ihY
bpC
dnE
aQL
-kgr
-aYW
-bzV
-beB
+qfI
+dpA
+ggo
+lhs
bdl
ycp
ycp
-qmb
+tPj
ycp
ycp
bdl
bdl
-vna
-vuw
+rtj
+agv
bdl
bdl
bdl
@@ -126239,10 +126597,10 @@ uys
uys
uys
uys
-bJz
-cbS
-bJz
-bHW
+gyw
+bFX
+gyw
+hza
bJC
bMA
cfo
@@ -126260,9 +126618,9 @@ clG
clg
bVq
bSJ
-fNY
-fcx
-nhJ
+ien
+dFL
+tcO
aaa
aaa
aaa
@@ -126302,28 +126660,28 @@ aaa
aaa
aad
aag
-sTT
-bic
-bZu
-mBf
-lOa
-ihI
-mBf
-oBM
-euw
-mBf
-mFa
-mBf
-sMC
-nHf
-iIt
-mBf
-sJo
-iIt
-mBf
-jMK
-ajR
-aoG
+fTl
+vrZ
+qlu
+taw
+wTn
+kCu
+taw
+uPN
+stA
+taw
+wFX
+taw
+lsh
+oxy
+hja
+taw
+oQL
+hja
+taw
+bwN
+gxR
+lCc
aqg
arr
atn
@@ -126339,28 +126697,28 @@ atn
atn
aOB
aRj
-aSC
-aZH
-iAB
+dZR
+kWc
+cwL
oIB
phj
vEf
cNK
oIB
-gGX
-pNu
-caZ
-gGX
-gGX
-gGX
-pNu
-pNu
-vtZ
-pNu
-pNu
-gGX
-pNu
-bMH
+aPO
+jei
+oYr
+aPO
+aPO
+aPO
+jei
+jei
+lYt
+jei
+jei
+aPO
+jei
+fVe
aag
ajZ
aaa
@@ -126399,9 +126757,9 @@ aaa
aaa
aaa
aaa
-kHq
-pMI
-hsf
+emA
+sEg
+ikT
aLT
aLT
aLT
@@ -126419,20 +126777,20 @@ aQL
aQL
aQL
aQL
-pGM
-aYZ
-sLE
-jJs
+oxe
+tcS
+mww
+sZe
bdl
fKT
bGy
-fUL
-aZJ
-fMK
+kOW
+snM
+iqo
bdl
-rGZ
-tLA
-lVK
+clV
+crD
+kLP
gvU
cyo
bdl
@@ -126442,10 +126800,10 @@ sgc
xCa
bUy
bdl
-qYt
-iEb
-bHa
-bIT
+eTx
+ekM
+cJs
+pOW
bJC
bJC
bJC
@@ -126463,9 +126821,9 @@ bSJ
bSJ
bSJ
bSJ
-oeY
-aCr
-nhJ
+cZp
+xhO
+tcO
aaa
aaa
aaa
@@ -126505,28 +126863,28 @@ aaa
aaa
aad
aag
-sTT
-khz
-cPy
-mBf
-kFM
-ihI
-mBf
-rFS
-mBf
-mBf
-llF
-mBf
-sJo
-nHf
-sJo
-mBf
-rsr
-uUa
-mBf
-rFY
-ctC
-aoQ
+fTl
+hjT
+rWb
+taw
+oAK
+kCu
+taw
+mRI
+taw
+taw
+tvA
+taw
+oQL
+oxy
+oQL
+taw
+cap
+fiN
+taw
+vkQ
+kzR
+mXP
kwd
amA
atq
@@ -126542,28 +126900,28 @@ atq
atq
aoT
kwd
-rFY
-ctC
-gPF
+vkQ
+kzR
+oig
oIB
opI
dha
pxj
oIB
-gGX
-gRt
-fcW
-tpQ
-pNu
-fFN
-aYN
-uhn
-iWD
-iWD
-iWD
-mVY
-pNu
-bMH
+aPO
+oUx
+kNq
+fPF
+jei
+nNT
+jwJ
+mgX
+nZG
+nZG
+nZG
+xGm
+jei
+fVe
aag
ajZ
aaa
@@ -126602,9 +126960,9 @@ aaa
aaa
aaa
aaa
-kHq
-aYf
-hsf
+emA
+jEM
+ikT
aLT
beT
bdr
@@ -126622,10 +126980,10 @@ mUx
bpC
dnE
aQL
-aLG
-aYZ
-sLE
-jJs
+bqc
+tcS
+mww
+sZe
bdl
fgm
bdj
@@ -126645,10 +127003,10 @@ fYZ
vYC
noj
hpS
-pJJ
-iEb
-bHa
-bIT
+gyE
+ekM
+cJs
+pOW
bJC
bMA
cfo
@@ -126666,9 +127024,9 @@ clH
oFV
bVq
bSJ
-vEv
-lkg
-nhJ
+vUJ
+hCq
+tcO
aaa
aaa
aaa
@@ -126708,28 +127066,28 @@ aaa
aaa
aad
aag
-sTT
-bZu
-ace
-vMv
-nHf
-sJo
-lGV
-sJo
-iAo
-nHf
-nHf
-vMv
-nHf
-nHf
-sJo
-mBf
-mBf
-mBf
-mBf
-aEp
-lIw
-aoR
+fTl
+qlu
+uKl
+kiR
+oxy
+oQL
+jsu
+oQL
+gqt
+oxy
+oxy
+kiR
+oxy
+oxy
+oQL
+taw
+taw
+taw
+taw
+mQF
+rnO
+ogd
alO
ars
amx
@@ -126745,9 +127103,9 @@ amx
amx
aOC
alO
-aEp
-lIw
-aEp
+mQF
+rnO
+mQF
loP
loP
loP
@@ -126756,17 +127114,17 @@ loP
qej
loP
loP
-fcW
-cvp
-gGX
-ekz
-cBE
-crG
-xdT
-qeO
-uAx
-gRt
-bMH
+kNq
+fJp
+aPO
+wXl
+dJe
+unQ
+nxe
+tjH
+tVn
+oUx
+fVe
aag
ajZ
aaa
@@ -126805,9 +127163,9 @@ aaa
aaa
aaa
aaa
-kHq
-hsf
-aYf
+emA
+ikT
+jEM
aLT
beU
bdv
@@ -126825,13 +127183,13 @@ aQL
bsW
xvX
aQL
-aLG
-txe
-baq
-jJs
+bqc
+noI
+dJG
+sZe
bdl
ntd
-iVj
+hgO
eqb
mLR
hdE
@@ -126848,10 +127206,10 @@ scH
nzO
kxL
hpS
-pJJ
-vzu
-vYi
-bIT
+gyE
+nzt
+jhs
+pOW
bJC
cfq
cgv
@@ -126869,9 +127227,9 @@ bSJ
clN
clT
bSJ
-sFO
-gbz
-nhJ
+xsv
+gEh
+tcO
aaa
aaa
aaa
@@ -126911,28 +127269,28 @@ aaa
aaa
aad
aag
-sTT
-glC
-oCV
-mBf
-nHf
-hYj
-mtj
-oPS
-nHf
-sJo
-hoC
-mBf
-sJo
-nHf
-sJo
-mBf
-lLx
-aoZ
-mBf
-ndJ
-anJ
-aoS
+fTl
+wIu
+wXJ
+taw
+oxy
+kMa
+qIa
+iSB
+oxy
+oQL
+hdy
+taw
+oQL
+oxy
+oQL
+taw
+liF
+wPR
+taw
+cui
+fQU
+onh
inw
amA
amx
@@ -126948,9 +127306,9 @@ atq
amx
aoT
inw
-aiB
-anJ
-mnG
+ivV
+fQU
+hPr
loP
iwB
tOC
@@ -126959,17 +127317,17 @@ vqL
xBY
qwo
loP
-qrS
-jzp
-gGX
-ekz
-cvp
-nLT
-nLT
-nLT
-uAx
-pNu
-bMH
+ang
+hqu
+aPO
+wXl
+fJp
+iCD
+iCD
+iCD
+tVn
+jei
+fVe
aag
ajZ
aaa
@@ -127008,9 +127366,9 @@ aaa
aaa
aaa
aaa
-kHq
-bhe
-aYf
+emA
+qGC
+jEM
aLT
aLT
aLT
@@ -127028,10 +127386,10 @@ aQL
aQL
aQL
aQL
-aLG
-aYO
-kBK
-hyt
+bqc
+ubQ
+fpM
+bEk
bdl
tFS
bdj
@@ -127051,10 +127409,10 @@ jaR
mJa
wWP
rsK
-aGc
-kkE
-iEb
-bIT
+cBC
+feo
+ekM
+pOW
bJC
bJC
bJC
@@ -127072,9 +127430,9 @@ bSJ
bSJ
bSJ
bSJ
-kTt
-toh
-nhJ
+goM
+tfQ
+tcO
aaa
aaa
aaa
@@ -127114,28 +127472,28 @@ aaf
aaf
aag
aag
-sTT
-mBf
-mBf
-mBf
-lOa
-wNN
-vts
-lVv
-nHf
-sJo
-ftE
-mBf
-kWc
-nHf
-sJo
-mBf
-sJo
-sJo
-mBf
-alG
-aDZ
-aoU
+fTl
+taw
+taw
+taw
+wTn
+wOv
+tuJ
+iKV
+oxy
+oQL
+oFr
+taw
+mUL
+oxy
+oQL
+taw
+oQL
+oQL
+taw
+pEd
+gBg
+bLg
aqj
arw
anP
@@ -127151,9 +127509,9 @@ atq
atq
wwJ
inw
-alG
-aYj
-apd
+pEd
+tbD
+xhi
loP
joG
sDu
@@ -127162,17 +127520,17 @@ wSn
xBY
lKa
loP
-yhx
-pNu
-gGX
-ekz
-fcW
-qyu
-pNu
-fXG
-xft
-riw
-bMH
+fvo
+jei
+aPO
+wXl
+kNq
+jcE
+jei
+lVR
+pHD
+dhp
+fVe
aag
aag
aaf
@@ -127207,13 +127565,13 @@ aaa
aaa
aaa
aaa
-kHq
-kHq
-kHq
-kHq
-kHq
-hsf
-hsf
+emA
+emA
+emA
+emA
+emA
+ikT
+ikT
aLT
vZb
tnY
@@ -127231,10 +127589,10 @@ aUZ
uqA
bES
kcl
-aLG
-aYO
-sou
-bAX
+bqc
+ubQ
+uPX
+rHr
bdl
wIr
aQy
@@ -127254,10 +127612,10 @@ nPT
bdl
bdl
bdl
-dhU
-vzq
-iEb
-bIT
+jLg
+uEO
+ekM
+pOW
hNw
wos
bMC
@@ -127275,13 +127633,13 @@ hcI
hcI
vPK
bSJ
-oeY
-gbz
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
+cZp
+gEh
+tcO
+tcO
+tcO
+tcO
+tcO
aaa
aaa
aaa
@@ -127317,28 +127675,28 @@ aag
aag
aag
aag
-sTT
-siP
-sJo
-vMv
-nHf
-wNN
-bZu
-hBR
-nHf
-hYj
-sGD
-mBf
-sMC
-nHf
-sEC
-mBf
-sJo
-sJo
-mBf
-ylJ
-aDZ
-aoD
+fTl
+hEr
+oQL
+kiR
+oxy
+wOv
+qlu
+qAG
+oxy
+kMa
+gQu
+taw
+lsh
+oxy
+wjP
+taw
+oQL
+oQL
+taw
+rhX
+gBg
+fDk
inw
qHM
emn
@@ -127354,9 +127712,9 @@ amx
amx
aBs
inw
-alG
-aYj
-apd
+pEd
+tbD
+xhi
loP
kxo
wSn
@@ -127365,17 +127723,17 @@ kdi
xBY
kxo
loP
-pwJ
-pNu
-gGX
-ekz
-fcW
-wsw
-jzp
-cua
-qJr
-pNu
-bMH
+nSk
+jei
+aPO
+wXl
+kNq
+cke
+hqu
+oSR
+fZI
+jei
+fVe
aag
aag
aag
@@ -127410,13 +127768,13 @@ aaa
aaa
aaa
aaa
-kHq
-enq
-iJU
-gQz
-qXm
-aYf
-hsf
+emA
+hyb
+kjY
+kcG
+tIF
+jEM
+ikT
aWT
aMH
beV
@@ -127434,9 +127792,9 @@ aSE
aVf
bES
kcl
-aLG
-aZg
-bar
+bqc
+sUk
+slo
bdl
bdl
bdl
@@ -127446,21 +127804,21 @@ bdl
bdl
bdl
bdl
-voU
+xWo
bdl
bdl
bdl
bdl
-fqh
-qtO
-fqh
-qgM
-qtO
+reN
+dEp
+reN
+htk
+dEp
bdl
bdl
-cbV
-fpO
-bIT
+udf
+iyC
+pOW
hNw
sZq
jZv
@@ -127478,13 +127836,13 @@ aMI
wGE
erG
ewO
-bYd
-aCr
-uFE
-eMt
-eQa
-vRW
-nhJ
+sEu
+xhO
+ffx
+jhK
+srl
+lWY
+tcO
aaa
aaa
aaa
@@ -127520,28 +127878,28 @@ aag
aag
aag
aag
-sTT
-siP
-dOX
-mBf
-ckq
-wNN
-glC
-lGi
-nHf
-wNN
-heI
-mBf
-oCV
-nHf
-nHf
-vMv
-nHf
-nHf
-vMv
-aWd
-aDZ
-nfp
+fTl
+hEr
+xBS
+taw
+tTG
+wOv
+wIu
+ydf
+oxy
+wOv
+ixu
+taw
+wXJ
+oxy
+oxy
+kiR
+oxy
+oxy
+kiR
+fiH
+gBg
+xsX
alO
alO
alO
@@ -127557,9 +127915,9 @@ atq
atq
aBs
alO
-alG
-aDZ
-aWd
+pEd
+gBg
+fiH
fTF
xBY
xBY
@@ -127568,17 +127926,17 @@ xBY
xBY
jGI
loP
-fcW
-cvp
-uyV
-ekz
-fcW
-fcW
-fcW
-fcW
-jCu
-pNu
-bMH
+kNq
+fJp
+nOx
+wXl
+kNq
+kNq
+kNq
+kNq
+pAV
+jei
+fVe
aag
aag
aag
@@ -127613,13 +127971,13 @@ aaa
aaa
aaa
aaa
-kHq
-pkv
-hsf
-hsf
-hsf
-hsf
-hsf
+emA
+jkN
+ikT
+ikT
+ikT
+ikT
+ikT
aLT
aZf
duV
@@ -127637,33 +127995,33 @@ iIR
aVf
bES
kcl
-aLG
-aYO
-bZK
-mgZ
-wVU
-row
-rXg
-row
-row
-kDT
-fRD
-fRD
-fRD
-muJ
-row
-row
-fRD
-jZz
-row
-evQ
-fRD
-row
-row
-mgZ
-cbW
-iEb
-bIT
+bqc
+ubQ
+kwi
+lZM
+rSR
+xss
+rLK
+xss
+xss
+uHk
+dXb
+dXb
+dXb
+cTX
+xss
+xss
+dXb
+ndm
+xss
+iFY
+dXb
+xss
+xss
+lZM
+kYl
+ekM
+pOW
hNw
sZq
jZv
@@ -127681,13 +128039,13 @@ jGR
jGR
oqu
bSJ
-gbz
-gbz
-gbz
-gbz
-gbz
-aCr
-nhJ
+gEh
+gEh
+gEh
+gEh
+gEh
+xhO
+tcO
aaa
aaa
aaa
@@ -127723,28 +128081,28 @@ aag
aag
aag
aag
-sTT
-ozw
-qzm
-mBf
-nHf
-shJ
-jXL
-rcw
-nHf
-wNN
-bZu
-mBf
-bZu
-nHf
-sJo
-mBf
-sJo
-sJo
-jpu
-alG
-aDZ
-xrr
+fTl
+oqc
+smw
+taw
+oxy
+rgk
+nUT
+cnP
+oxy
+wOv
+qlu
+taw
+qlu
+oxy
+oQL
+taw
+oQL
+oQL
+lnD
+pEd
+gBg
+iea
alO
gKZ
vTv
@@ -127760,9 +128118,9 @@ atq
atq
aBs
alO
-alJ
-aYj
-apd
+pvE
+tbD
+xhi
gdS
wSn
kXN
@@ -127771,17 +128129,17 @@ odD
xBY
mOg
oHx
-gGX
-vnE
-gGX
-rji
-lcM
-cTb
-cTb
-cTb
-gxW
-pNu
-bMH
+aPO
+iXB
+aPO
+gof
+bVr
+ivL
+ivL
+ivL
+fVa
+jei
+fVe
aag
aag
aag
@@ -127816,9 +128174,9 @@ aaa
aaa
aaa
aaa
-kHq
-kSA
-hsf
+emA
+fGi
+ikT
aLT
aLT
aLT
@@ -127840,16 +128198,16 @@ chp
aVf
aQL
aQL
-beB
-aYT
-bzY
-qwT
-qwT
-xIy
-qwT
-qwT
-qwT
-qwT
+lhs
+bww
+tHF
+cvx
+cvx
+bKJ
+cvx
+cvx
+cvx
+cvx
vub
vub
vub
@@ -127857,16 +128215,16 @@ owW
vub
vub
vub
-qwT
-qwT
-qwT
-xIy
-qwT
-qwT
-qwT
-cbX
-cbS
-ccO
+cvx
+cvx
+cvx
+bKJ
+cvx
+cvx
+cvx
+xQz
+bFX
+pmd
bJC
bJC
bMD
@@ -127888,9 +128246,9 @@ bSJ
bSJ
bSJ
bSJ
-gbz
-fcx
-nhJ
+gEh
+dFL
+tcO
aaa
aaa
aaa
@@ -127926,28 +128284,28 @@ aag
aag
aag
aag
-sTT
-mBf
-mBf
-mBf
-lOa
-sJo
-sJo
-rEs
-nHf
-oFn
-kpl
-mBf
-bZu
-nHf
-iIt
-mBf
-wfG
-lPE
-jpu
-alG
-aDZ
-xrr
+fTl
+taw
+taw
+taw
+wTn
+oQL
+oQL
+lUQ
+oxy
+tBU
+iDs
+taw
+qlu
+oxy
+hja
+taw
+kLZ
+tty
+lnD
+pEd
+gBg
+iea
alO
arz
atq
@@ -127963,9 +128321,9 @@ auB
atc
aOF
alO
-alG
-aYj
-apd
+pEd
+tbD
+xhi
gdS
lBg
dXd
@@ -127974,17 +128332,17 @@ loP
eMh
loP
loP
-fcW
-cGP
-gGX
-wXS
-kHv
-rbE
-kHv
-kHv
-foU
-pNu
-bMH
+kNq
+hnt
+aPO
+wSx
+gYI
+wPa
+gYI
+gYI
+rzk
+jei
+fVe
aag
aag
aag
@@ -128019,9 +128377,9 @@ aaa
aaa
aaa
aaa
-kHq
-aYf
-hsf
+emA
+jEM
+ikT
aLT
bBg
vPv
@@ -128043,9 +128401,9 @@ brA
aVf
lQz
aQL
-aLG
-aZi
-aLG
+bqc
+qIf
+bqc
bbs
cbh
xYP
@@ -128067,9 +128425,9 @@ tez
gsm
bCM
bbr
-buH
-iEb
-bIT
+uPE
+ekM
+pOW
bJC
jht
jZv
@@ -128091,9 +128449,9 @@ qNd
hzu
hcI
bSJ
-aCr
-aCr
-nhJ
+xhO
+xhO
+tcO
aaa
aaa
aaa
@@ -128129,28 +128487,28 @@ aag
aag
aag
aag
-sTT
-sJo
-oPv
-rEd
-nHf
-sJo
-mBf
-mBf
-rFS
-mBf
-mBf
-mBf
-heI
-nHf
-sJo
-mBf
-mBf
-mBf
-mBf
-alG
-aDZ
-xrr
+fTl
+oQL
+mOE
+gUG
+oxy
+oQL
+taw
+taw
+mRI
+taw
+taw
+taw
+ixu
+oxy
+oQL
+taw
+taw
+taw
+taw
+pEd
+gBg
+iea
alO
arz
atq
@@ -128166,9 +128524,9 @@ aIU
aMq
aOG
alO
-alG
-aDZ
-apd
+pEd
+gBg
+xhi
loP
loP
loP
@@ -128178,16 +128536,16 @@ vyI
lPB
oHl
jWh
-fcW
-nVz
-fcW
-fcW
-fcW
-fcW
-fcW
-eEv
-gRt
-bMH
+kNq
+qDB
+kNq
+kNq
+kNq
+kNq
+kNq
+gGb
+oUx
+fVe
aag
aag
aag
@@ -128222,9 +128580,9 @@ aaa
aaa
aaa
aaa
-kHq
-aYf
-aYf
+emA
+jEM
+jEM
aLT
nuN
nuN
@@ -128246,9 +128604,9 @@ bOG
aVf
iaq
aQL
-aLG
-aZi
-aLG
+bqc
+qIf
+bqc
bbs
bKD
vTS
@@ -128270,9 +128628,9 @@ tez
ccQ
bCN
bbr
-buH
-iEb
-bIT
+uPE
+ekM
+pOW
bJC
cjC
jZv
@@ -128294,9 +128652,9 @@ rYp
oEo
oEo
bSJ
-aCr
-aCB
-nhJ
+xhO
+lMO
+tcO
aaa
aaa
aaa
@@ -128332,28 +128690,28 @@ aag
aag
aag
aag
-sTT
-nHf
-nHf
-vag
-nHf
-sJo
-mBf
-lnb
-gBO
-ozt
-mBf
-sMC
-sJo
-nHf
-sJo
-eNO
-sCi
-kpl
-mBf
-alG
-aDZ
-xrr
+fTl
+oxy
+oxy
+bCv
+oxy
+oQL
+taw
+gCQ
+rEs
+tvr
+taw
+lsh
+oQL
+oxy
+oQL
+aYU
+uxs
+iDs
+taw
+pEd
+gBg
+iea
alO
arz
atq
@@ -128369,9 +128727,9 @@ xBe
xBe
xBe
xBe
-alG
-aDZ
-apd
+pEd
+gBg
+xhi
jWh
eFK
wGd
@@ -128381,16 +128739,16 @@ hSk
hSk
uIv
jWh
-nmp
-iPe
-dbj
-fcW
-eje
-olv
-njr
-eEv
-pNu
-bMH
+jZj
+sRP
+oko
+kNq
+tiY
+qAK
+xGK
+gGb
+jei
+fVe
aag
aag
aag
@@ -128425,9 +128783,9 @@ aaa
aaa
aaa
aaa
-kHq
-slG
-aYf
+emA
+oPF
+jEM
aLT
vug
vug
@@ -128449,9 +128807,9 @@ bRg
aVf
aQL
aQL
-fvK
-aZi
-aLG
+ylN
+qIf
+bqc
bbs
ydM
xYP
@@ -128473,9 +128831,9 @@ tez
ccQ
cdn
bbr
-buH
-iEb
-bIT
+uPE
+ekM
+pOW
bJC
bJC
kGF
@@ -128497,9 +128855,9 @@ yle
wWX
wWX
bSJ
-aCr
-dvi
-nhJ
+xhO
+xHa
+tcO
aaa
aaa
aaa
@@ -128535,28 +128893,28 @@ aag
aag
aag
aag
-sTT
-lOa
-sJo
-dLx
-sJo
-rYM
-mBf
-lnb
-pVG
-ndd
-mBf
-vAu
-sJo
-nHf
-sJo
-sJo
-sJo
-tlX
-mBf
-alJ
-aDZ
-xrr
+fTl
+wTn
+oQL
+qmq
+oQL
+nXo
+taw
+gCQ
+bNc
+tCC
+taw
+ftG
+oQL
+oxy
+oQL
+oQL
+oQL
+keE
+taw
+pvE
+gBg
+iea
xnR
arm
ats
@@ -128572,9 +128930,9 @@ aIV
qqr
arH
xBe
-alG
-aDZ
-apd
+pEd
+gBg
+xhi
vXd
duF
hSk
@@ -128584,16 +128942,16 @@ hSk
hSk
uIv
jWh
-iCI
-gGX
-gMj
-fcW
-pNu
-vBa
-bcQ
-eEv
-yen
-bMH
+eHz
+aPO
+tMT
+kNq
+jei
+ltm
+oAT
+gGb
+cmV
+fVe
aag
aag
aag
@@ -128628,9 +128986,9 @@ aaa
aaa
aaa
aaa
-kHq
-kin
-iZh
+emA
+rIV
+nvI
aLT
iPS
vAE
@@ -128652,9 +129010,9 @@ jOi
aVf
bES
kcl
-aLG
-aZi
-aLG
+bqc
+qIf
+bqc
bbs
dvs
xYP
@@ -128676,9 +129034,9 @@ tez
ccQ
bCM
bbr
-buH
-iEb
-bIT
+uPE
+ekM
+pOW
hNw
sZq
lef
@@ -128700,9 +129058,9 @@ vSW
scy
kPJ
bSJ
-aCr
-wkJ
-nhJ
+xhO
+eeR
+tcO
aaa
aaa
aaa
@@ -128738,28 +129096,28 @@ aag
aag
aag
aag
-sTT
-nHf
-mBf
-mBf
-mkq
-mBf
-mBf
-opU
-nHf
-iqN
-ovx
-fwQ
-wJS
-fwQ
-fwQ
-fwQ
-fwQ
-fwQ
-wZD
-alP
-ajW
-apc
+fTl
+oxy
+taw
+taw
+xcs
+taw
+taw
+utC
+oxy
+ikC
+vRJ
+gNQ
+laP
+gNQ
+gNQ
+gNQ
+gNQ
+gNQ
+xDG
+tJH
+qpH
+iSu
alO
arA
att
@@ -128775,9 +129133,9 @@ azo
aJg
abR
xBe
-alG
-aDZ
-apf
+pEd
+gBg
+jhm
jWh
oih
khE
@@ -128787,16 +129145,16 @@ vyI
kpQ
vSE
jWh
-pPw
-iay
-waG
-fcW
-pNu
-vBa
-xiD
-eEv
-pNu
-bMH
+nwA
+xZz
+kRN
+kNq
+jei
+ltm
+ejj
+gGb
+jei
+fVe
aag
aag
aag
@@ -128831,9 +129189,9 @@ aaa
aaa
aaa
aaa
-kHq
-pMI
-dJF
+emA
+sEg
+kDd
aLT
aLT
aLT
@@ -128855,9 +129213,9 @@ vfx
aVf
bES
kcl
-beB
-byI
-beB
+lhs
+uvh
+lhs
kFY
jmK
bDL
@@ -128879,9 +129237,9 @@ tez
ccQ
bCN
jhb
-jiw
-cbS
-bHW
+kAj
+bFX
+hza
hNw
sZq
ltI
@@ -128903,9 +129261,9 @@ bSJ
bSJ
bSJ
bSJ
-twi
-uIF
-nhJ
+qid
+lNk
+tcO
aaa
aaa
aaa
@@ -128941,28 +129299,28 @@ aag
aag
aag
aag
-sTT
-nHf
-mBf
-vkW
-uVx
-aFE
-mBf
-lnb
-fmY
-mkW
-mBf
-mBf
-mBf
-rFS
-mBf
-mBf
-mBf
-mBf
-mBf
-ylJ
-aDZ
-apd
+fTl
+oxy
+taw
+tZM
+qEZ
+frV
+taw
+gCQ
+uqJ
+vbu
+taw
+taw
+taw
+mRI
+taw
+taw
+taw
+taw
+taw
+rhX
+gBg
+xhi
wDM
wDM
wDM
@@ -128978,9 +129336,9 @@ atv
auV
amE
xBe
-alG
-aDZ
-apd
+pEd
+gBg
+xhi
jWh
jWh
uUz
@@ -128990,16 +129348,16 @@ qbZ
jWh
jWh
jWh
-rYT
-gGX
-lQk
-fcW
-iOt
-pNu
-fXG
-xft
-riw
-bMH
+fQl
+aPO
+nGZ
+kNq
+xQe
+jei
+lVR
+pHD
+dhp
+fVe
aag
aag
aag
@@ -129034,9 +129392,9 @@ aaa
aaa
aaa
aaa
-kHq
-aEE
-hsf
+emA
+eTD
+ikT
aLT
bBg
vPv
@@ -129058,9 +129416,9 @@ bRV
bSe
bES
kcl
-aLG
-aZi
-aLG
+bqc
+qIf
+bqc
bBd
aPr
bfl
@@ -129082,9 +129440,9 @@ bSb
bEa
bFp
bBd
-buH
-iEb
-bIT
+uPE
+ekM
+pOW
hNw
sZq
lwJ
@@ -129106,9 +129464,9 @@ mAV
hzu
hcI
bSJ
-dpM
-aCr
-nhJ
+rqz
+xhO
+tcO
aaa
aaa
aaa
@@ -129144,17 +129502,17 @@ aag
aag
aag
aag
-sTT
-pSP
-mBf
-vwJ
-vWa
-iIa
-mBf
-lnb
-gBO
-sXg
-mBf
+fTl
+lmq
+taw
+mDz
+pIf
+uwf
+taw
+gCQ
+rEs
+bhZ
+taw
uiG
rTZ
tfb
@@ -129163,9 +129521,9 @@ tfb
tfb
tfb
ptK
-alG
-aYj
-apd
+pEd
+tbD
+xhi
wDM
aOM
aoW
@@ -129181,9 +129539,9 @@ atv
auV
amE
xBe
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jWh
xXa
xXa
@@ -129193,16 +129551,16 @@ cKL
jbH
rJh
jWh
-pOa
-fZu
-gyT
-fcW
-eeL
-pNu
-cua
-fNv
-pNu
-bMH
+rJY
+dPl
+qQG
+kNq
+cfm
+jei
+oSR
+grd
+jei
+fVe
aag
aag
aag
@@ -129237,9 +129595,9 @@ aaa
aaa
aaa
aaa
-kHq
-gER
-hsf
+emA
+efP
+ikT
aLT
cjc
cjc
@@ -129261,9 +129619,9 @@ csZ
odB
aQL
aQL
-aLG
-aZg
-tBF
+bqc
+sUk
+ade
bBe
bFq
bfm
@@ -129285,9 +129643,9 @@ bCD
bEb
bFq
bBe
-bFu
-fpO
-bIT
+hWD
+iyC
+pOW
bJC
bJC
rbH
@@ -129309,9 +129667,9 @@ yfm
fXN
fXN
bSJ
-gbz
-aCr
-nhJ
+gEh
+xhO
+tcO
aaa
aaa
aaa
@@ -129347,17 +129705,17 @@ aag
aag
aag
aag
-sTT
-nHf
-mBf
-mBf
-mBf
-mBf
-mBf
-mBf
-rFS
-mBf
-mBf
+fTl
+oxy
+taw
+taw
+taw
+taw
+taw
+taw
+mRI
+taw
+taw
bNM
wkX
jhx
@@ -129366,9 +129724,9 @@ jhx
jhx
dnH
gpc
-aWd
-aYj
-apd
+fiH
+tbD
+xhi
wDM
uto
aoX
@@ -129384,9 +129742,9 @@ nNY
qKi
abR
xBe
-alJ
-ajR
-aTS
+pvE
+gxR
+pym
dEt
soP
pDr
@@ -129396,16 +129754,16 @@ soP
eoG
uIv
jWh
-fcW
-nVz
-fcW
-fcW
-fcW
-cvp
-tIE
-eEv
-gRt
-bMH
+kNq
+qDB
+kNq
+kNq
+kNq
+fJp
+ekz
+gGb
+oUx
+fVe
aag
aag
aag
@@ -129440,9 +129798,9 @@ aaa
aaa
aaa
aaa
-kHq
-kAN
-hsf
+emA
+uzv
+ikT
aLT
cjc
cjc
@@ -129464,9 +129822,9 @@ vil
bpC
qZX
aQL
-kEb
-aZi
-bad
+pjP
+qIf
+lfz
bbs
cdp
cdp
@@ -129488,9 +129846,9 @@ fJO
fJO
fJO
bbs
-nmD
-iEb
-twT
+wMI
+ekM
+oHt
bJC
lbf
cft
@@ -129512,9 +129870,9 @@ yfm
fXN
fXN
bSJ
-aCr
-fcx
-nhJ
+xhO
+dFL
+tcO
aaa
aaa
aaa
@@ -129550,13 +129908,13 @@ aag
aag
aag
aag
-sTT
-lOa
-oPv
-dFW
-gog
-bBO
-mBf
+fTl
+wTn
+mOE
+sWp
+nUm
+moL
+taw
mDJ
owg
xUA
@@ -129569,9 +129927,9 @@ nwU
owg
owg
ptK
-wOh
-ajP
-apd
+nhT
+gqf
+xhi
wDM
aOQ
fxI
@@ -129587,9 +129945,9 @@ azp
qJf
anV
xBe
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jWh
iqH
khE
@@ -129599,16 +129957,16 @@ ovi
iat
eim
jWh
-fcW
-mEN
-fcW
-fcW
-ieG
-nGp
-lcM
-xft
-pNu
-bMH
+kNq
+spd
+kNq
+kNq
+dVH
+cAz
+bVr
+pHD
+jei
+fVe
aag
aag
aag
@@ -129643,9 +130001,9 @@ aaa
aaa
aaa
aaa
-kHq
-aDY
-hsf
+emA
+hfO
+ikT
aLT
iPS
vAE
@@ -129667,9 +130025,9 @@ vil
bpC
qDq
kbc
-aLG
-aYO
-aLG
+bqc
+ubQ
+bqc
bbs
bdw
bfo
@@ -129691,9 +130049,9 @@ lJu
bEd
bFs
bbs
-buH
-iEb
-bIT
+uPE
+ekM
+pOW
fzq
oXb
cft
@@ -129715,9 +130073,9 @@ gEo
scy
kPJ
bSJ
-gbz
-tRd
-nhJ
+gEh
+pFr
+tcO
aaa
aaa
aaa
@@ -129753,13 +130111,13 @@ aag
aag
aag
aag
-sTT
-nHf
-nHf
-fcK
-nHf
-nHf
-vMv
+fTl
+oxy
+oxy
+tIN
+oxy
+oxy
+kiR
owg
owg
uKV
@@ -129772,9 +130130,9 @@ eNi
eNi
eNi
eNi
-alG
-aDZ
-apf
+pEd
+gBg
+jhm
wDM
aOH
aJf
@@ -129790,9 +130148,9 @@ xBe
xBe
xBe
xBe
-alG
-aYj
-wSk
+pEd
+tbD
+rXV
jWh
jWh
jlQ
@@ -129802,16 +130160,16 @@ thV
uWV
uIv
oSx
-fcW
-gRt
-fcW
-fcW
-cvp
-tIE
-jzp
-pNu
-ght
-bMH
+kNq
+oUx
+kNq
+kNq
+fJp
+ekz
+hqu
+jei
+qDS
+fVe
aag
aag
aag
@@ -129846,9 +130204,9 @@ aaa
aaa
aaa
aaa
-kHq
-pkv
-hsf
+emA
+jkN
+ikT
aLT
aLT
aLT
@@ -129870,9 +130228,9 @@ ngA
koC
koC
xGE
-aem
-mUa
-aLG
+jno
+fqw
+bqc
lgy
ccb
xYP
@@ -129894,9 +130252,9 @@ rXk
xYP
jew
laU
-buH
-jGN
-bJb
+uPE
+dEL
+rzy
uCM
lNw
eFj
@@ -129918,9 +130276,9 @@ bSJ
bSJ
bSJ
bSJ
-gbz
-owD
-nhJ
+gEh
+kMR
+tcO
aaa
aaa
aaa
@@ -129956,13 +130314,13 @@ aah
aag
aag
aag
-sTT
-jaF
-emX
-iGH
-mtj
-mtj
-mBf
+fTl
+pWw
+hbE
+cbc
+qIa
+qIa
+taw
ptK
afX
ptK
@@ -129975,9 +130333,9 @@ olO
wiG
nWN
eNi
-alG
-aYj
-apd
+pEd
+tbD
+xhi
wDM
wDM
wDM
@@ -129993,9 +130351,9 @@ aJh
arq
ufx
alR
-alG
-aYj
-apf
+pEd
+tbD
+jhm
jWh
hSk
hSk
@@ -130005,16 +130363,16 @@ upR
fCL
uIv
vVw
-cWF
-pNu
-caZ
-pNu
-gGX
-gGX
-gGX
-mdG
-hNn
-bMH
+iSV
+jei
+oYr
+jei
+aPO
+aPO
+aPO
+gtQ
+wiO
+fVe
aag
aag
aag
@@ -130049,14 +130407,14 @@ aaa
aaa
aaa
aaa
-kHq
-enq
-aYf
-aYf
-aYf
-aYf
-enq
-aYf
+emA
+hyb
+jEM
+jEM
+jEM
+jEM
+hyb
+jEM
aLT
cjc
cjc
@@ -130073,9 +130431,9 @@ jOx
bpC
qDq
aQL
-jKA
-aYT
-beB
+nYR
+bww
+lhs
lgy
bsG
xYP
@@ -130097,9 +130455,9 @@ lJu
xYP
hLI
laU
-bJz
-rrV
-bJz
+gyw
+uNQ
+gyw
bJC
oXb
cfo
@@ -130116,14 +130474,14 @@ kPJ
fXN
fXN
bSJ
-hMV
-eQa
-gbz
-aCr
-aCr
-aCr
-sce
-nhJ
+enY
+srl
+gEh
+xhO
+xhO
+xhO
+jay
+tcO
aaa
aaa
aaa
@@ -130159,13 +130517,13 @@ aaa
aad
aag
aag
-sTT
-hEB
-ojg
-mbp
-bib
-bZu
-mBf
+fTl
+prX
+oYs
+odG
+biC
+qlu
+taw
bKm
hsr
mDJ
@@ -130178,9 +130536,9 @@ ueG
rPt
jyE
eNi
-alG
-aYj
-apd
+pEd
+tbD
+xhi
hwC
rcS
amx
@@ -130196,9 +130554,9 @@ aJi
azs
atq
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jlQ
tst
uUe
@@ -130208,16 +130566,16 @@ pZK
fCL
uIv
lFA
-fcW
-pNu
-fcW
-fcW
-pNu
-pNu
-kjY
-kMW
-uGy
-bMH
+kNq
+jei
+kNq
+kNq
+jei
+jei
+gYU
+oGi
+dVR
+fVe
aag
aag
ajZ
@@ -130252,14 +130610,14 @@ aaa
aaa
aaa
aaa
-kHq
-kHq
-kHq
-kHq
-kHq
-aYf
-hsf
-aYf
+emA
+emA
+emA
+emA
+emA
+jEM
+ikT
+jEM
aLT
iPS
vAE
@@ -130276,9 +130634,9 @@ jOx
bpC
ksp
aQL
-aLG
-bSY
-aWR
+bqc
+wqO
+wxD
cau
bCG
cgE
@@ -130298,11 +130656,11 @@ xYP
jmK
hcw
cgE
-qGS
-dPf
-buJ
-lln
-buH
+yht
+blq
+ddL
+eZR
+uPE
bJC
kIP
cfo
@@ -130319,14 +130677,14 @@ oer
vSW
scy
bSJ
-ljD
-twi
-lkg
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
+mCE
+qid
+hCq
+tcO
+tcO
+tcO
+tcO
+tcO
aaa
aaa
aaa
@@ -130362,13 +130720,13 @@ aaa
aad
aag
aag
-sTT
-sTT
-sTT
-sTT
-sTT
-sTT
-sTT
+fTl
+fTl
+fTl
+fTl
+fTl
+fTl
+fTl
qJx
hsr
mDJ
@@ -130381,9 +130739,9 @@ iKD
rPt
rPt
eNi
-alG
-aYj
-apd
+pEd
+tbD
+xhi
alR
amA
atq
@@ -130399,9 +130757,9 @@ aJj
aMD
atq
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jlQ
tZZ
gLz
@@ -130411,16 +130769,16 @@ ovi
fCL
lYk
bYn
-bMH
-bMH
-bMH
-bMH
-bMH
-bMH
-bMH
-bMH
-bMH
-bMH
+fVe
+fVe
+fVe
+fVe
+fVe
+fVe
+fVe
+fVe
+fVe
+fVe
aag
aag
ajZ
@@ -130459,10 +130817,10 @@ aaa
aaa
aaa
aaa
-kHq
-slG
-hsf
-aYf
+emA
+oPF
+ikT
+jEM
aLT
meY
meY
@@ -130479,9 +130837,9 @@ pyl
pDt
aQL
aQL
-aLG
-aYO
-aLG
+bqc
+ubQ
+bqc
lgy
ccN
xYP
@@ -130501,11 +130859,11 @@ wLm
wLm
lJu
xYP
-hko
+wbV
laU
-buH
-hop
-buH
+uPE
+vuV
+uPE
bJC
bJC
vLA
@@ -130522,10 +130880,10 @@ oer
oer
oer
oer
-tQw
-gbz
-tRd
-nhJ
+uVp
+gEh
+pFr
+tcO
aaa
aaa
aaa
@@ -130584,9 +130942,9 @@ eNi
eNi
gIh
eNi
-geH
-aDZ
-apd
+iIQ
+gBg
+xhi
alR
amA
atq
@@ -130602,9 +130960,9 @@ amA
ayl
amx
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jWh
jmQ
vcu
@@ -130662,18 +131020,18 @@ aaa
aaa
aaa
aaa
-kHq
-eRm
-hsf
-hsf
-hsf
-hsf
-hsf
-hsf
-hsf
-aYf
-hsf
-aYf
+emA
+wtn
+ikT
+ikT
+ikT
+ikT
+ikT
+ikT
+ikT
+jEM
+ikT
+jEM
aQL
qZX
qZX
@@ -130682,9 +131040,9 @@ jOx
bpC
qZX
aQL
-aLG
-aYO
-aLG
+bqc
+ubQ
+bqc
lgy
ccb
xYP
@@ -130706,9 +131064,9 @@ rXk
xYP
jew
laU
-buH
-hop
-buH
+uPE
+vuV
+uPE
bJC
lbf
cfo
@@ -130717,18 +131075,18 @@ lbf
lbf
lbf
bJC
-gbz
-ofP
-gbz
-aCr
-doM
-nda
-aCr
-gbz
-gbz
-gbz
-gbz
-nhJ
+gEh
+cmN
+gEh
+xhO
+dzX
+foS
+xhO
+gEh
+gEh
+gEh
+gEh
+tcO
aaa
aaa
aaa
@@ -130787,9 +131145,9 @@ aWb
dyK
vzK
wYY
-alG
-aDZ
-apd
+pEd
+gBg
+xhi
alR
amA
atq
@@ -130805,9 +131163,9 @@ aJl
amx
atq
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jlQ
snE
sGL
@@ -130865,18 +131223,18 @@ aaa
aaa
aaa
aaa
-kHq
-dJm
-nmS
-aYf
-aYf
-aYf
-aYf
-aRm
-aYf
-aYf
-aYf
-aYf
+emA
+pGj
+uoj
+jEM
+jEM
+jEM
+jEM
+fBo
+jEM
+jEM
+jEM
+jEM
aQL
qDq
qDq
@@ -130885,9 +131243,9 @@ jOx
bpC
qDq
bTb
-aLG
-aYO
-aLG
+bqc
+ubQ
+bqc
bbs
ccd
ccN
@@ -130909,9 +131267,9 @@ lJu
huK
jeQ
bbs
-buH
-hop
-buH
+uPE
+vuV
+uPE
xSw
oXb
cfo
@@ -130920,18 +131278,18 @@ oXb
oXb
oXb
bJC
-gbz
-aCr
-gbz
-aCr
-gbz
-uvB
-aCr
-gbz
-aCr
-aCr
-wqX
-nhJ
+gEh
+xhO
+gEh
+xhO
+gEh
+hWH
+xhO
+gEh
+xhO
+xhO
+rhD
+tcO
aaa
aaa
aaa
@@ -130990,9 +131348,9 @@ tii
eJX
sAC
wYY
-alG
-aDZ
-apd
+pEd
+gBg
+xhi
alR
amA
amx
@@ -131008,9 +131366,9 @@ aJk
amx
atq
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jlQ
tZZ
cBj
@@ -131068,18 +131426,18 @@ aaa
aaa
aaa
aaa
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-hsf
-qwE
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+emA
+ikT
+oBr
aQL
qDq
qDq
@@ -131088,9 +131446,9 @@ osA
cHl
cHl
bTb
-beB
-aYT
-beB
+lhs
+bww
+lhs
bbs
cdp
cdp
@@ -131112,9 +131470,9 @@ fJO
fJO
fJO
bbs
-bJz
-rrV
-bJz
+gyw
+uNQ
+gyw
xSw
ejo
ejo
@@ -131123,18 +131481,18 @@ oXb
oXb
oXb
bJC
-aCr
-gbz
-gbz
-nhJ
-nhJ
-urZ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
+xhO
+gEh
+gEh
+tcO
+tcO
+ucy
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
aaa
aaa
aaa
@@ -131193,9 +131551,9 @@ sjj
fzP
sAC
wYY
-alG
-aYj
-apd
+pEd
+tbD
+xhi
alR
amA
atq
@@ -131211,9 +131569,9 @@ xEO
xEO
lnP
alR
-alG
-aYj
-apf
+pEd
+tbD
+jhm
jWh
qLs
qLs
@@ -131280,9 +131638,9 @@ aaa
aaa
aaa
aaa
-kHq
-bhe
-enq
+emA
+qGC
+hyb
aQL
ksp
ksp
@@ -131291,33 +131649,33 @@ qDq
qDq
qDq
bTb
-aLG
-aYO
-aLG
-bBh
-aLG
-aLG
-aLG
-aLG
-byC
-aLG
-beB
-aLG
-aLG
-bsT
-buH
-buH
-bJz
-buH
-bSd
-buH
-buH
-buH
-buH
-cbD
-buH
-hop
-buH
+bqc
+ubQ
+bqc
+bqc
+bqc
+bqc
+bqc
+bqc
+dYb
+bqc
+fpI
+bqc
+bqc
+tGS
+uPE
+uPE
+uuT
+uPE
+fRL
+uPE
+uPE
+uPE
+uPE
+uPE
+uPE
+vuV
+uPE
xSw
oXb
oXb
@@ -131326,10 +131684,10 @@ kIP
qer
kIP
bJC
-aCr
-wFG
-tRd
-nhJ
+xhO
+wYd
+pFr
+tcO
aaa
aaa
aaa
@@ -131396,9 +131754,9 @@ fcM
uzE
qsL
nim
-qhc
-ajP
-apd
+prV
+gqf
+xhi
alR
amA
atq
@@ -131414,9 +131772,9 @@ iWR
iWR
kbx
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jWh
jWh
jlQ
@@ -131483,9 +131841,9 @@ aaa
aaa
aaa
aaa
-kHq
-hsf
-aYf
+emA
+ikT
+jEM
aQL
aQL
aQL
@@ -131494,33 +131852,33 @@ ksp
rou
ksp
aQL
-aLG
-nFG
-tzf
-mRS
-tzf
-tBL
-dUf
-tBL
-tBL
-tBL
-sub
-tBL
-tBL
-wnQ
-uWp
-uWp
-kJr
-uWp
-uWp
-uWp
-xcl
-uWp
-hvp
-mBZ
-hvp
-gcz
-bIR
+bqc
+qas
+qUO
+qUO
+qUO
+reu
+fLf
+reu
+reu
+reu
+kkN
+reu
+reu
+uTP
+kEE
+kEE
+dCM
+kEE
+kEE
+kEE
+ulH
+kEE
+wzJ
+wzJ
+wzJ
+nmH
+xui
bJC
kIP
qer
@@ -131529,10 +131887,10 @@ bJC
bJC
bJC
bJC
-gbz
-gbz
-gbz
-nhJ
+gEh
+gEh
+gEh
+tcO
aaa
aaa
aaa
@@ -131599,9 +131957,9 @@ xlC
gyO
kTN
eNi
-alJ
-aYj
-apd
+pvE
+tbD
+xhi
alR
amA
atq
@@ -131617,9 +131975,9 @@ xEO
xEO
aOV
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jWh
kUw
dod
@@ -131686,56 +132044,56 @@ aaa
aaa
aaa
aaa
-kHq
-hsf
-aYf
-aYf
-gHm
-aYf
-qwE
-qwE
-qwE
-qwE
-qwE
-tfl
-aLG
-aLG
-bBh
-aLG
-aNO
-sLE
-aNO
-aNO
-aLG
-beB
-aLG
-aLG
-qll
-buH
-buH
-bJz
-buH
-bHa
-bHa
-hop
-bHa
-buH
-cbD
-buH
-buH
-sXh
+emA
+ikT
+jEM
+jEM
+hYf
+jEM
+oBr
+oBr
+oBr
+oBr
+oBr
+ovQ
+bqc
+bqc
+bqc
+bqc
+nci
+mww
+nci
+nci
+bqc
+rVC
+bqc
+bqc
+tGS
+uPE
+uPE
+tIl
+uPE
+cJs
+cJs
+vuV
+cJs
+uPE
+uPE
+uPE
+uPE
+pqw
bJC
bJC
bJC
bJC
bJC
-aCr
-aCr
-aCr
-gbz
-aCr
-dXc
-nhJ
+xhO
+xhO
+xhO
+gEh
+xhO
+xfq
+tcO
aaa
aaa
aaa
@@ -131802,9 +132160,9 @@ oNb
iFC
qAA
eNi
-alG
-aDZ
-apd
+pEd
+gBg
+xhi
alR
arK
atc
@@ -131820,9 +132178,9 @@ aJq
aMG
aOW
alR
-alG
-aYj
-apd
+pEd
+tbD
+xhi
jWh
tZP
hSk
@@ -131889,56 +132247,56 @@ aaa
aaa
aaa
aaa
-kHq
-kai
-aYf
-hsf
-hsf
-aYf
-aYf
-lfs
-hsf
-hsf
-qwE
-qwE
-bhV
-qwE
-qwE
-bCW
-bEH
-bHt
-bJi
-bKE
-bKE
+emA
+kAv
+jEM
+ikT
+ikT
+jEM
+jEM
+gCu
+ikT
+ikT
+oBr
+oBr
+qPn
+oBr
+oBr
+jxX
+knl
+pum
+jAj
+kKY
+kKY
oJk
lNR
lNR
-lNR
+oJk
lNR
lNR
oJk
-bWV
-jkd
-bYE
-bZz
-cav
-bBa
-lij
-lij
-saa
-lij
-lij
-aCr
-aCr
-aCr
-aCr
-aCr
-aCr
-aCr
-aCr
-aCr
-eQa
-nhJ
+mXy
+oGh
+far
+vDo
+nnr
+cNm
+ljv
+ljv
+sUi
+ljv
+ljv
+xhO
+xhO
+xhO
+xhO
+xhO
+xhO
+xhO
+xhO
+xhO
+srl
+tcO
aaa
aaa
aaa
@@ -132005,9 +132363,9 @@ eNi
eNi
eNi
eNi
-aEp
-lIw
-aEp
+mQF
+rnO
+mQF
alO
alO
alO
@@ -132023,9 +132381,9 @@ alO
alO
alO
alO
-aEp
-lIw
-aEp
+mQF
+rnO
+mQF
jWh
nDL
vyI
@@ -132092,22 +132450,22 @@ aaa
aaa
aaa
aaa
-kHq
-qev
-gaW
-aYf
-aYf
-aYf
-aYf
-lfs
-aYf
-aYf
-qwE
-nSI
-aYf
-aYf
-qwE
-qwE
+emA
+qFS
+pPG
+jEM
+jEM
+jEM
+jEM
+gCu
+jEM
+jEM
+oBr
+sRM
+jEM
+jEM
+oBr
+oBr
sqg
rPQ
sqg
@@ -132125,23 +132483,23 @@ oJk
sqg
mgu
sqg
-lij
-lij
-aCr
-gbz
-aCr
-aCr
-gbz
-gbz
-gbz
-aCr
-aCr
-aCr
-aCr
-gbz
-tbz
-xUS
-nhJ
+ljv
+ljv
+xhO
+gEh
+xhO
+xhO
+gEh
+gEh
+gEh
+xhO
+xhO
+xhO
+xhO
+gEh
+aEr
+keO
+tcO
aaa
aaa
aaa
@@ -132208,9 +132566,9 @@ dWX
owg
owg
ptK
-aGD
-aPb
-apj
+bZq
+hfc
+jgS
aqq
aPa
eky
@@ -132226,9 +132584,9 @@ eky
eky
aPa
aqq
-aGD
-aPb
-kff
+bZq
+hfc
+lBf
jWh
xXa
xXa
@@ -132295,22 +132653,22 @@ aaa
aaa
aaa
aaa
-kHq
-hFR
-kJD
-fMn
-hsf
-hsf
-hsf
-aPP
-fMn
-aYf
-aYf
-aYf
-aYf
-hsf
-hsf
-qwE
+emA
+twp
+iyE
+ecb
+ikT
+ikT
+ikT
+ctp
+ecb
+jEM
+jEM
+jEM
+jEM
+ikT
+ikT
+oBr
fcS
gdJ
oyR
@@ -132328,23 +132686,23 @@ oJk
ppn
nAY
cjt
-lij
-xtk
-xWh
-gbz
-gbz
-gbz
-aCr
-erR
-aCr
-gbz
-aCr
-gbz
-gbz
-tNy
-lgI
-ulI
-nhJ
+ljv
+ceY
+gIm
+gEh
+gEh
+gEh
+xhO
+wra
+xhO
+gEh
+xhO
+gEh
+gEh
+sOD
+eMx
+xgr
+tcO
aaa
aaa
aaa
@@ -132411,9 +132769,9 @@ keR
jhx
keR
dwI
-aTS
-wqq
-agJ
+pym
+jae
+tGW
hal
uYg
nau
@@ -132429,9 +132787,9 @@ uYg
nau
uYg
hal
-aGC
-wqq
-aTS
+rrG
+jae
+pym
mPh
soP
tWi
@@ -132498,22 +132856,22 @@ aaa
aaa
aaa
aaa
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
-kHq
+emA
+emA
+emA
+emA
+emA
+emA
+emA
vgw
sqg
sqg
sqg
mpP
sqg
-qwE
-bhe
-qwE
+oBr
+qGC
+oBr
fcS
gdJ
oyR
@@ -132531,23 +132889,23 @@ oJk
pkA
nAY
cjt
-lij
-gbz
-lij
+ljv
+gEh
+ljv
sqg
mpP
aep
aep
aep
dKL
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
-nhJ
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
+tcO
aaa
aaa
aaa
@@ -132614,9 +132972,9 @@ kPG
kPG
cVw
ptK
-aIe
-anR
-lNl
+iOP
+xjI
+fzm
aqq
eky
aNl
@@ -132632,9 +132990,9 @@ eky
aNl
eky
aqq
-aIe
-iYj
-lNl
+iOP
+xSl
+fzm
jWh
tim
uWV
@@ -132715,8 +133073,8 @@ sqg
rwB
lKM
sqg
-vJJ
-qwE
+nSq
+oBr
fcS
gdJ
cjt
@@ -132734,8 +133092,8 @@ pRZ
fcS
nAY
jOE
-lij
-lGo
+ljv
+mPc
sqg
qEL
vmE
@@ -132817,9 +133175,9 @@ ucp
cIW
ptK
ptK
-pji
-dKm
-pji
+ybk
+sDe
+ybk
aHe
jlT
exi
@@ -132835,9 +133193,9 @@ eky
ins
wRP
aHe
-wUB
-wUB
-wUB
+eZm
+eZm
+eZm
jWh
jWh
sWC
@@ -132918,8 +133276,8 @@ sqg
eKy
wQA
sqg
-aYf
-qwE
+jEM
+oBr
uYn
jaM
oXM
@@ -132937,8 +133295,8 @@ mkP
muQ
ojh
nxx
-lij
-aCr
+ljv
+xhO
sqg
gEC
skC
@@ -133020,9 +133378,9 @@ gPc
trB
exy
ptK
-diy
-diy
-diy
+fLl
+fLl
+fLl
eky
eky
aNl
@@ -133038,9 +133396,9 @@ eky
aNl
eky
rqj
-wUB
-pLB
-tpk
+eZm
+jYm
+aZI
jWh
duz
hXG
@@ -133223,9 +133581,9 @@ eet
fcP
pDh
ptK
-uQp
-uQp
-rlO
+aqZ
+aqZ
+ptQ
aMT
aMT
dPm
@@ -133241,9 +133599,9 @@ okg
dPm
aMT
aMT
-qtZ
-aBO
-aBO
+hbp
+mwP
+mwP
jWh
axR
mIP
@@ -133426,9 +133784,9 @@ wxj
lht
rYv
ptK
-frq
-iDx
-diy
+haO
+pKB
+fLl
svf
arV
wZX
@@ -133444,9 +133802,9 @@ eky
wZX
arV
vUh
-wUB
-dnW
-aBO
+eZm
+xUy
+mwP
jWh
vpv
pgw
@@ -133629,9 +133987,9 @@ ptK
afX
ptK
ptK
-frq
-diy
-diy
+haO
+fLl
+fLl
lDn
arV
wZX
@@ -133647,9 +134005,9 @@ eky
wZX
arV
wkA
-wUB
-wUB
-aBO
+eZm
+eZm
+mwP
jWh
jWh
kLc
@@ -133824,16 +134182,16 @@ bdH
uMc
bNM
ofK
-diy
-lkN
-frq
-dfv
-frq
-uQp
-hOc
-frq
-oeq
-diy
+fLl
+uxl
+haO
+ebf
+haO
+aqZ
+tot
+haO
+qqS
+fLl
xrq
vVu
arV
@@ -133851,16 +134209,16 @@ wZX
arV
oIt
xrq
-wUB
-hZp
-aBO
-dsp
-vsa
-aBO
-exX
-fDm
-hyL
-wUB
+eZm
+qHG
+mwP
+xQW
+vJR
+mwP
+hkz
+ckj
+oaw
+eZm
lbB
uIv
pql
@@ -134027,16 +134385,16 @@ bdH
uMc
bNM
ofK
-diy
-lkN
-frq
-cIZ
-frq
-uQp
-fUF
-frq
-ruS
-diy
+fLl
+uxl
+haO
+uLG
+haO
+aqZ
+pbo
+haO
+xLn
+fLl
vlk
mKy
aMT
@@ -134054,16 +134412,16 @@ sQO
aMT
wNS
vlk
-wUB
-fAH
-fOO
-aBO
-vsa
-aBO
-iUD
-cLt
-ebz
-wUB
+eZm
+oHg
+uiK
+mwP
+vJR
+mwP
+jrB
+eoK
+xTG
+eZm
lbB
uIv
pql
@@ -134136,8 +134494,8 @@ aWZ
qAB
gEC
sqg
-jon
-iQK
+aIh
+eTb
kkW
iwf
uFg
@@ -134155,8 +134513,8 @@ vXo
gWu
xMl
lft
-iQK
-jon
+eTb
+aIh
sqg
siN
cjt
@@ -134230,17 +134588,17 @@ bdH
uMc
bNM
rtd
-rlO
-uQp
-uQp
-uQp
-uQp
-uQp
-nLN
-frq
-wIz
-diy
-diy
+ptQ
+aqZ
+aqZ
+aqZ
+aqZ
+aqZ
+leM
+haO
+iYm
+fLl
+fLl
vjd
aRp
jBX
@@ -134256,17 +134614,17 @@ tKf
jBX
aRp
quy
-wUB
-wUB
-jDf
-hfs
-aBO
-opf
-opf
-opf
-opf
-opf
-qtZ
+eZm
+eZm
+bjt
+eIN
+mwP
+ksw
+ksw
+ksw
+ksw
+ksw
+hbp
uWV
uIv
pql
@@ -134339,14 +134697,14 @@ ggQ
pYS
ivS
sqg
-xjU
-iQK
+ppM
+eTb
hbs
vZU
elx
jnI
oJk
-ggx
+xef
dPQ
ams
eni
@@ -134358,8 +134716,8 @@ nYn
elx
mDL
fSF
-iQK
-xjU
+eTb
+ppM
sqg
lvh
iks
@@ -134433,17 +134791,17 @@ bdH
cuC
htb
pfc
-diy
-diy
-diy
-diy
-gNj
-uQp
-uQp
-uQp
-uQp
-uQp
-rlO
+fLl
+fLl
+fLl
+fLl
+rht
+aqZ
+aqZ
+aqZ
+aqZ
+aqZ
+ptQ
qYG
atM
bGc
@@ -134459,17 +134817,17 @@ atM
bGc
atK
qYG
-qtZ
-opf
-opf
-vrG
-opf
-vsa
-oDI
-wUB
-wUB
-wUB
-wUB
+hbp
+ksw
+ksw
+rHB
+ksw
+vJR
+rPq
+eZm
+eZm
+eZm
+eZm
jAJ
lAu
bYn
@@ -134542,8 +134900,8 @@ aep
mkL
gEC
sqg
-xjU
-iQK
+ppM
+eTb
hsy
hsy
baJ
@@ -134561,8 +134919,8 @@ foC
kph
hsy
hsy
-iQK
-nJm
+eTb
+eUe
sqg
wWl
trh
@@ -134639,14 +134997,14 @@ tgK
tfb
wuT
lMx
-bma
-bma
-bma
-bma
-bma
-bma
-bma
-bma
+gJF
+gJF
+gJF
+gJF
+gJF
+gJF
+gJF
+gJF
aPw
avu
mhG
@@ -134662,14 +135020,14 @@ dxK
dPC
aMU
aPw
-nzC
-nzC
-nzC
-nzC
-nzC
-nzC
-nzC
-nzC
+wxy
+wxy
+wxy
+wxy
+wxy
+wxy
+wxy
+wxy
jFY
qKY
jHL
@@ -134745,27 +135103,27 @@ wpS
fZA
fEe
sqg
-xjU
-xjU
+ppM
+ppM
hsy
shL
uXk
mlF
hsy
-wdN
-lsQ
-lsQ
+ckZ
+hmv
+hmv
dTS
-lsQ
-lsQ
-wdN
+hmv
+hmv
+ckZ
hsy
tos
uXk
tkn
hsy
-jon
-xjU
+aIh
+ppM
sqg
fEe
nqW
@@ -134948,8 +135306,8 @@ vgw
vgw
vgw
vgw
-jon
-jon
+aIh
+aIh
hsy
wed
uXk
@@ -134967,8 +135325,8 @@ tos
uXk
wed
hsy
-hts
-afA
+qBS
+lib
vgw
vgw
vgw
@@ -135150,11 +135508,11 @@ aah
aag
aag
aag
-eUf
-ioT
-xjU
+nic
+tmQ
+ppM
hsy
-ujr
+txS
bVN
oGJ
xpZ
@@ -135168,11 +135526,11 @@ coH
oTO
uqh
iAE
-vji
+sct
hsy
-gMX
-uSI
-eUf
+iWa
+fZR
+nic
aag
aag
aag
@@ -135353,29 +135711,29 @@ bdH
aad
aag
aag
-eUf
-jon
-jon
+nic
+aIh
+aIh
hsy
-lxm
+fCT
uXk
rae
jIV
pzM
mtZ
-lsQ
-lsQ
-lsQ
+hmv
+hmv
+hmv
fQn
pzM
nac
xNf
uXk
-kIj
+slv
hsy
-jon
-jon
-eUf
+aIh
+aIh
+nic
aag
aag
ajZ
@@ -135556,29 +135914,29 @@ bdH
aad
aag
aag
-eUf
-xjU
-xjU
+nic
+ppM
+ppM
hsy
-duP
+igs
nCn
oGJ
uSW
kzO
vaZ
kYL
-lsQ
+hmv
sCV
rjO
suY
pdK
uqh
pJr
-kIj
+slv
hsy
-jon
-jon
-eUf
+aIh
+aIh
+nic
aag
aag
ajZ
@@ -135759,29 +136117,29 @@ bdH
aad
aag
aag
-eUf
-jon
-xjU
+nic
+aIh
+ppM
hsy
hsy
-mBT
+wTB
mlF
uXk
hmw
gSa
mtZ
-lsQ
+hmv
fQn
wSV
ulp
uXk
tos
-kIj
+slv
hsy
hsy
-xjU
-nJm
-eUf
+ppM
+eUe
+nic
aag
aag
ajZ
@@ -135962,29 +136320,29 @@ bdH
aad
aag
aag
-eUf
-jon
-jon
-jon
+nic
+aIh
+aIh
+aIh
hsy
-osd
+ygP
mlF
hsy
-jiq
+hcX
fQn
mtZ
-lsQ
+hmv
fQn
mtZ
-lsQ
+hmv
hsy
beL
-osd
+ygP
hsy
-tHw
-jon
-jon
-eUf
+cWb
+aIh
+aIh
+nic
aag
aag
ajZ
@@ -136165,29 +136523,29 @@ bdH
aad
aag
aag
-eUf
-xjU
-xjU
-xjU
+nic
+ppM
+ppM
+ppM
hsy
ylh
opH
hsy
-gTV
+pvI
fQn
qoR
aPU
rjO
mtZ
-goF
+njS
hsy
iEw
ylh
hsy
-qEP
-xjU
-qEP
-eUf
+dDT
+ppM
+dDT
+nic
aag
aag
ajZ
@@ -136368,29 +136726,29 @@ bdH
aad
aag
aag
-eUf
-eUf
-xUt
-jon
+nic
+nic
+wsw
+aIh
hsy
ylh
mlF
hsy
-lsQ
+hmv
eZp
kzO
pzM
hip
ptZ
-lsQ
+hmv
hsy
tos
ylh
hsy
-hts
-hEy
-eUf
-eUf
+qBS
+piJ
+nic
+nic
aag
aag
ajZ
@@ -136572,9 +136930,9 @@ aad
aag
aag
aag
-eUf
-hts
-afA
+nic
+qBS
+lib
hsy
hsy
suJ
@@ -136590,9 +136948,9 @@ hsy
wdv
hsy
hsy
-sUq
-xjU
-eUf
+yjE
+ppM
+nic
aag
aag
aag
@@ -136775,9 +137133,9 @@ aad
aag
aag
aag
-eUf
-jon
-mtQ
+nic
+aIh
+vsi
hsy
uiC
sIr
@@ -136793,9 +137151,9 @@ rlc
hfb
hUk
hsy
-xjU
-uSI
-eUf
+ppM
+fZR
+nic
aag
aag
aag
@@ -136978,9 +137336,9 @@ aad
aag
aag
aag
-eUf
-xjU
-xjU
+nic
+ppM
+ppM
hsy
thc
sIr
@@ -136996,9 +137354,9 @@ pAm
sIr
fZl
hsy
-tyY
-jon
-eUf
+mxV
+aIh
+nic
aag
aag
aag
@@ -137181,9 +137539,9 @@ aad
aag
aag
aag
-eUf
-jon
-jon
+nic
+aIh
+aIh
hsy
tIe
uAK
@@ -137199,9 +137557,9 @@ bVv
nJa
jPd
hsy
-xjU
-flY
-eUf
+ppM
+eeC
+nic
aag
aag
aag
@@ -137384,9 +137742,9 @@ aad
aag
aag
aag
-eUf
-xjU
-xjU
+nic
+ppM
+ppM
hsy
dPH
sov
@@ -137402,9 +137760,9 @@ pAm
fZl
oex
hsy
-jon
-jon
-eUf
+aIh
+aIh
+nic
aag
aag
aag
@@ -137587,9 +137945,9 @@ aad
aag
aag
aag
-eUf
-jon
-jon
+nic
+aIh
+aIh
hsy
rBv
sov
@@ -137605,9 +137963,9 @@ pAm
fZl
snt
hsy
-xjU
-xjU
-eUf
+ppM
+ppM
+nic
aag
aag
aag
@@ -137790,9 +138148,9 @@ aad
aag
aag
aag
-eUf
-xjU
-xjU
+nic
+ppM
+ppM
hsy
fqW
qYq
@@ -137808,9 +138166,9 @@ mQn
wQD
fqW
hsy
-jon
-jon
-eUf
+aIh
+aIh
+nic
aag
aag
aag
@@ -137993,9 +138351,9 @@ aad
aag
aag
aag
-eUf
-jon
-xjU
+nic
+aIh
+ppM
hsy
hsy
hsy
@@ -138011,9 +138369,9 @@ hsy
hsy
hsy
hsy
-xjU
-xjU
-eUf
+ppM
+ppM
+nic
aag
aag
aag
@@ -138196,11 +138554,11 @@ aad
aag
aag
aag
-eUf
-jon
-xjU
-liF
-aBK
+nic
+aIh
+ppM
+csd
+dDJ
hsy
haz
fQn
@@ -138212,11 +138570,11 @@ pzM
mtZ
haz
hsy
-aBK
-feZ
-jon
-jon
-eUf
+dDJ
+rXH
+aIh
+aIh
+nic
aag
aag
aag
@@ -138290,7 +138648,7 @@ aaa
cuC
cuC
jPq
-jZS
+xgm
aqK
cuC
uiR
@@ -138399,11 +138757,11 @@ aad
aag
aag
aag
-eUf
-jon
-jon
-jon
-jon
+nic
+aIh
+aIh
+aIh
+aIh
hsy
haz
pLt
@@ -138415,11 +138773,11 @@ mZL
lOX
haz
hsy
-gvt
-jon
-jon
-jon
-eUf
+fpi
+aIh
+aIh
+aIh
+nic
aag
aag
aag
@@ -138602,11 +138960,11 @@ aad
aag
aag
aag
-eUf
-eUf
-ydb
-hEy
-hEy
+nic
+nic
+mem
+piJ
+piJ
hsy
mkI
aPS
@@ -138618,11 +138976,11 @@ nop
aPS
ddf
hsy
-wQV
-xjU
-uSI
-eUf
-eUf
+atS
+ppM
+fZR
+nic
+nic
aag
aag
aag
@@ -138806,10 +139164,10 @@ aag
aag
aag
aag
-eUf
-jon
-xjU
-wri
+nic
+aIh
+ppM
+sER
hsy
hsy
hsy
@@ -138821,10 +139179,10 @@ hsy
hsy
hsy
hsy
-jon
-jon
-jon
-eUf
+aIh
+aIh
+aIh
+nic
aag
aag
aag
@@ -139009,25 +139367,25 @@ aag
aag
aag
aag
-eUf
-jon
-xjU
-jon
-xjU
-olk
-jon
-mdF
-xjU
-xjU
-xjU
-mdF
-jon
-ssH
-xjU
-xjU
-xjU
-jon
-eUf
+nic
+aIh
+ppM
+aIh
+ppM
+puT
+aIh
+xrg
+ppM
+ppM
+ppM
+xrg
+aIh
+erE
+ppM
+ppM
+ppM
+aIh
+nic
aag
aag
aag
diff --git a/maps/shuttles/dropship_alamo.dmm b/maps/shuttles/dropship_alamo.dmm
index d23036afdea3..7ea59dbb1185 100644
--- a/maps/shuttles/dropship_alamo.dmm
+++ b/maps/shuttles/dropship_alamo.dmm
@@ -101,7 +101,7 @@
/area/shuttle/drop1/sulaco)
"if" = (
/obj/structure/shuttle/part/dropship1/left_outer_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"ig" = (
/turf/closed/shuttle/dropship1{
@@ -218,7 +218,7 @@
/area/shuttle/drop1/sulaco)
"rl" = (
/obj/structure/shuttle/part/dropship1/lower_right_wall,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"rr" = (
/turf/closed/shuttle/dropship1/transparent{
@@ -239,7 +239,7 @@
/area/shuttle/drop1/sulaco)
"sA" = (
/obj/structure/shuttle/part/dropship1/lower_left_wall,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"tR" = (
/obj/item/device/radio/intercom/alamo{
@@ -279,7 +279,7 @@
/area/shuttle/drop1/sulaco)
"xM" = (
/obj/structure/shuttle/part/dropship1/bottom_right_wall,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"yQ" = (
/turf/closed/shuttle/dropship1/transparent{
@@ -288,7 +288,7 @@
/area/shuttle/drop1/sulaco)
"yU" = (
/obj/structure/shuttle/part/dropship1/bottom_left_wall,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"zw" = (
/obj/structure/shuttle/part/dropship1/transparent/upper_left_wing,
@@ -358,7 +358,7 @@
/area/shuttle/drop1/sulaco)
"EN" = (
/obj/structure/shuttle/part/dropship1/transparent/engine_left_exhaust,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"FA" = (
/obj/structure/shuttle/part/dropship1/transparent/engine_left_cap,
@@ -408,7 +408,7 @@
/area/shuttle/drop1/sulaco)
"Jm" = (
/obj/structure/shuttle/part/dropship1/transparent/engine_right_exhaust,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"JP" = (
/turf/closed/shuttle/dropship1{
@@ -442,7 +442,7 @@
/area/shuttle/drop1/sulaco)
"Me" = (
/obj/structure/shuttle/part/dropship1/left_inner_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"MP" = (
/turf/closed/shuttle/dropship1{
@@ -539,7 +539,7 @@
/area/shuttle/drop1/sulaco)
"Ta" = (
/obj/structure/shuttle/part/dropship1/right_inner_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"Te" = (
/obj/structure/shuttle/part/dropship1/transparent/right_inner_bottom_wing,
@@ -609,7 +609,7 @@
/area/shuttle/drop1/sulaco)
"Wg" = (
/obj/structure/shuttle/part/dropship1/right_outer_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop1/sulaco)
"WQ" = (
/turf/closed/shuttle/dropship1{
diff --git a/maps/shuttles/dropship_normandy.dmm b/maps/shuttles/dropship_normandy.dmm
index e64fbe62372d..0cf629e638e1 100644
--- a/maps/shuttles/dropship_normandy.dmm
+++ b/maps/shuttles/dropship_normandy.dmm
@@ -63,7 +63,7 @@
/area/shuttle/drop2/sulaco)
"fQ" = (
/obj/structure/shuttle/part/dropship2/left_inner_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop2/sulaco)
"gD" = (
/turf/closed/shuttle/dropship2/transparent{
@@ -118,7 +118,7 @@
/area/shuttle/drop2/sulaco)
"iI" = (
/obj/structure/shuttle/part/dropship2/right_inner_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop2/sulaco)
"jc" = (
/obj/item/device/radio/intercom/normandy{
@@ -216,7 +216,7 @@
/area/shuttle/drop2/sulaco)
"nS" = (
/obj/structure/shuttle/part/dropship2/lower_left_wall,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop2/sulaco)
"oc" = (
/obj/structure/shuttle/part/dropship2/transparent/nose_top_right,
@@ -514,7 +514,7 @@
/area/shuttle/drop2/sulaco)
"NM" = (
/obj/structure/shuttle/part/dropship2/left_outer_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop2/sulaco)
"Od" = (
/obj/effect/attach_point/fuel/dropship2{
@@ -587,7 +587,7 @@
/area/shuttle/drop2/sulaco)
"QK" = (
/obj/structure/shuttle/part/dropship2/lower_right_wall,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop2/sulaco)
"Rr" = (
/turf/template_noop,
@@ -607,7 +607,7 @@
/area/shuttle/drop2/sulaco)
"RJ" = (
/obj/structure/shuttle/part/dropship2/right_outer_wing_connector,
-/turf/open/space/basic,
+/turf/template_noop,
/area/shuttle/drop2/sulaco)
"SB" = (
/obj/structure/shuttle/part/dropship2/nose_front_left,
diff --git a/tgui/packages/tgui/interfaces/ListInput.jsx b/tgui/packages/tgui/interfaces/ListInput.jsx
index 2ed72bcc63bf..324e1f6b64fe 100644
--- a/tgui/packages/tgui/interfaces/ListInput.jsx
+++ b/tgui/packages/tgui/interfaces/ListInput.jsx
@@ -123,9 +123,9 @@ export const ListInput = (props) => {
}}
/>
}>
- {displayedArray.map((button) => (
+ {displayedArray.map((button, i) => (
{
setDisplayedArray(
buttons.filter(
diff --git a/tgui/packages/tgui/interfaces/PlayerPanel.jsx b/tgui/packages/tgui/interfaces/PlayerPanel.jsx
index 88b30aa51802..286be504e490 100644
--- a/tgui/packages/tgui/interfaces/PlayerPanel.jsx
+++ b/tgui/packages/tgui/interfaces/PlayerPanel.jsx
@@ -399,6 +399,14 @@ const PunishmentActions = (props) => {
disabled={!hasPermission(data, 'show_notes')}
onClick={() => act('show_notes')}
/>
+ act('check_ckey')}
+ />