diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index f090607dc02..f920cc74a0d 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -1,4 +1,4 @@
-/*
+/**
Screen objects
Todo: improve/re-implement
@@ -11,8 +11,10 @@
icon = 'icons/mob/screen/generic.dmi'
plane = HUD_PLANE
layer = HUD_BASE_LAYER
- var/obj/master = null //A reference to the object in the slot. Grabs or items, generally.
- var/datum/hud/hud = null // A reference to the owner HUD, if any.
+ /// A reference to the object in the slot. Grabs or items, generally.
+ var/obj/master = null
+ /// A reference to the owner HUD, if any.
+ var/datum/hud/hud = null
appearance_flags = NO_CLIENT_COLOR
/atom/movable/screen/Initialize(mapload, ...)
@@ -27,7 +29,7 @@
hud = null
. = ..()
-///Screen elements are always on top of the players screen and don't move so yes they are adjacent
+/// Screen elements are always on top of the players screen and don't move so yes they are adjacent
/atom/movable/screen/Adjacent(atom/neighbor, atom/target, atom/movable/mover)
return TRUE
@@ -49,8 +51,10 @@
maptext_width = 480
/atom/movable/screen/inventory
- var/slot_id //The identifier for the slot. It has nothing to do with ID cards.
- var/list/object_overlays = list() // Required for inventory/screen overlays.
+ /// The identifier for the slot. It has nothing to do with ID cards.
+ var/slot_id
+ /// Required for inventory/screen overlays.
+ var/list/object_overlays = list()
var/color_changed = FALSE
/atom/movable/screen/inventory/MouseEntered()
@@ -294,6 +298,7 @@
if(!usr)
return TRUE
var/list/modifiers = params2list(params)
+ var/client/viewer_client = usr?.client
switch(name)
if("toggle")
if(usr.hud_used.inventory_shown)
@@ -344,20 +349,21 @@
if(ishuman(usr))
var/mob/living/carbon/human/H = usr
if(H.last_special + 50 > world.time)
+ to_chat(usr, "You cannot do that again so quickly.")
return
H.last_special = world.time
to_chat(usr, SPAN_NOTICE("You take look around to see if there are any holes in the roof around."))
- for(var/turf/T in view(usr.client.view + 3, usr)) // slightly extra to account for moving while looking for openness
+ for(var/turf/T in view(viewer_client.view, usr))
if(T.density)
continue
var/turf/above_turf = GET_TURF_ABOVE(T)
- if(!isopenspace(above_turf))
+ if(!isopenturf(above_turf))
continue
- var/image/up_image = image(icon = 'icons/mob/screen/generic.dmi', icon_state = "arrow_up", loc = T)
- up_image.plane = LIGHTING_LAYER + 1
- up_image.layer = LIGHTING_LAYER + 1
- usr << up_image
- QDEL_IN(up_image, 12)
+ var/image/point_up = image(icon = 'icons/mob/screen/generic.dmi', icon_state = "arrow_up", loc = T)
+ point_up.plane = DEFAULT_PLANE
+ point_up.layer = POINTER_LAYER
+ viewer_client?.images += point_up
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(remove_image_from_client), point_up, viewer_client), 3 SECONDS)
return
if(!isliving(usr))
@@ -367,7 +373,7 @@
var/turf/T = GET_TURF_ABOVE(T1)
if (!T)
to_chat(user, SPAN_NOTICE("There is nothing above you!"))
- else if (T.is_hole)
+ else if (isopenturf(T))
user.look_up_open_space(T1)
else
to_chat(user, SPAN_NOTICE("You see a ceiling staring back at you."))
@@ -466,7 +472,7 @@
name = "mov_intent"
screen_loc = ui_movi
-//This updates the run/walk button on the hud
+/// This updates the run/walk button on the hud.
/atom/movable/screen/movement_intent/proc/update_move_icon(var/mob/living/user)
if(!user.client)
return
@@ -547,7 +553,7 @@
#undef BLACKLIST_SPECIES_RUNNING
-// Hand slots are special to handle the handcuffs overlay
+/// Hand slots are special to handle the handcuffs overlay
/atom/movable/screen/inventory/hand
var/image/handcuff_overlay
var/image/disabled_hand_overlay
diff --git a/code/datums/tips/tips.dm b/code/datums/tips/tips.dm
index 5216cb29745..3f0aa68bd76 100644
--- a/code/datums/tips/tips.dm
+++ b/code/datums/tips/tips.dm
@@ -57,7 +57,8 @@ GLOBAL_LIST_EMPTY(tips_by_category)
"Role-playing isn't easy, the wiki contains resources to help.",
"Trash piles are bounties of interesting loot, but you can also hide in them, just drag your sprite onto the pile.",
"Switching to another weapon is always faster than reloading.",
- "Remember to turn off your VPN before you try and connect."
+ "Remember to turn off your VPN before you try and connect.",
+ "You can shift-click the 'up-hint' button (that shows you whether or not the turf above you can be Looked Up through) to see ALL nearby turfs that you can Look Up through."
)
/*
diff --git a/code/datums/uplink/devices_and_tools.dm b/code/datums/uplink/devices_and_tools.dm
index 4dfe8959ace..ebfb7512198 100644
--- a/code/datums/uplink/devices_and_tools.dm
+++ b/code/datums/uplink/devices_and_tools.dm
@@ -74,6 +74,7 @@
telecrystal_cost = 1
bluecrystal_cost = 1
path = /obj/item/card/emag
+ desc = "It's a card that can be used to override, booby-trap, manipulate, take over, and otherwise do nefarious things to a wide variety of objects. Has ten uses."
/datum/uplink_item/item/tools/personal_shield
name = "Personal Shield"
diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm
index 855acf3fd94..8b914034c02 100644
--- a/code/game/machinery/alarm.dm
+++ b/code/game/machinery/alarm.dm
@@ -307,65 +307,32 @@ pixel_x = 10;
req_access = null
highpower = 1
-/obj/machinery/alarm/shuttle/intrepid
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_INTREPID)
-
-/obj/machinery/alarm/shuttle/intrepid/north
+/obj/machinery/alarm/shuttle/north
PRESET_NORTH
-/obj/machinery/alarm/shuttle/intrepid/east
+/obj/machinery/alarm/shuttle/east
PRESET_EAST
-/obj/machinery/alarm/shuttle/intrepid/west
+/obj/machinery/alarm/shuttle/west
PRESET_WEST
-/obj/machinery/alarm/shuttle/intrepid/south
+/obj/machinery/alarm/shuttle/south
PRESET_SOUTH
-/obj/machinery/alarm/shuttle/spark
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_SPARK)
+/// Assigns req_one_access perms associated with the area of the shuttle its mapped in.
+/obj/machinery/alarm/shuttle/Initialize()
+ . = ..()
+ var/area = get_area(src)
-/obj/machinery/alarm/shuttle/spark/north
- PRESET_NORTH
+ if(istype(area, /area/horizon/shuttle/intrepid))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_INTREPID)
+ if(istype(area, /area/horizon/shuttle/quark))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_QUARK)
+ if(istype(area, /area/horizon/shuttle/mining))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_SPARK)
+ if(istype(area, /area/horizon/shuttle/canary))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_CANARY)
-/obj/machinery/alarm/shuttle/spark/east
- PRESET_EAST
-
-/obj/machinery/alarm/shuttle/spark/west
- PRESET_WEST
-
-/obj/machinery/alarm/shuttle/spark/south
- PRESET_SOUTH
-
-/obj/machinery/alarm/shuttle/quark
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_QUARK)
-
-/obj/machinery/alarm/shuttle/quark/north
- PRESET_NORTH
-
-/obj/machinery/alarm/shuttle/quark/east
- PRESET_EAST
-
-/obj/machinery/alarm/shuttle/quark/west
- PRESET_WEST
-
-/obj/machinery/alarm/shuttle/quark/south
- PRESET_SOUTH
-
-/obj/machinery/alarm/shuttle/canary
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS, ACCESS_CANARY)
-
-/obj/machinery/alarm/shuttle/canary/north
- PRESET_NORTH
-
-/obj/machinery/alarm/shuttle/canary/east
- PRESET_EAST
-
-/obj/machinery/alarm/shuttle/canary/west
- PRESET_WEST
-
-/obj/machinery/alarm/shuttle/canary/south
- PRESET_SOUTH
/obj/machinery/alarm/server/Initialize()
. = ..()
@@ -433,7 +400,7 @@ pixel_x = 10;
/obj/machinery/alarm/set_pixel_offsets()
pixel_x = ((src.dir & (NORTH|SOUTH)) ? 0 : (src.dir == EAST ? 10 : -10))
- pixel_y = ((src.dir & (NORTH|SOUTH)) ? (src.dir == NORTH ? 21 : -6) : 0)
+ pixel_y = ((src.dir & (NORTH|SOUTH)) ? (src.dir == NORTH ? 21 : -4) : 0)
/obj/machinery/alarm/proc/first_run()
alarm_area = get_area(src)
diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm
index bd0529956de..f39f9d72762 100644
--- a/code/game/machinery/firealarm.dm
+++ b/code/game/machinery/firealarm.dm
@@ -276,7 +276,7 @@
/obj/machinery/firealarm/set_pixel_offsets()
// Overwrite the mapped in values.
pixel_x = ((dir & (NORTH|SOUTH)) ? 0 : (dir == EAST ? 22 : -22))
- pixel_y = ((dir & (NORTH|SOUTH)) ? (dir == NORTH ? 32 : -17) : 0)
+ pixel_y = ((dir & (NORTH|SOUTH)) ? (dir == NORTH ? 32 : -19) : 0)
// Convenience subtypes for mappers.
/obj/machinery/firealarm/north
@@ -293,7 +293,7 @@
/obj/machinery/firealarm/south
dir = SOUTH
- pixel_y = -17
+ pixel_y = -19
/*
FIRE ALARM CIRCUIT
diff --git a/code/game/objects/items/weapons/cards_ids.dm b/code/game/objects/items/weapons/cards_ids.dm
index 7465b4c965d..9e3c9b67b3a 100644
--- a/code/game/objects/items/weapons/cards_ids.dm
+++ b/code/game/objects/items/weapons/cards_ids.dm
@@ -86,6 +86,10 @@
origin_tech = list(TECH_MAGNET = 2, TECH_ILLEGAL = 2)
var/uses = 10
+/obj/item/card/emag/feedback_hints(mob/user, distance, is_adjacent)
+ . += ..()
+ . += SPAN_NOTICE("\The [src] has [uses] use\s left.")
+
/obj/item/card/emag_broken
desc = "It's a card with a magnetic strip attached to some circuitry. It looks too busted to be used for anything but salvage."
name = "broken cryptographic sequencer"
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
index dbf2a39fe65..8b5ae0c3788 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
@@ -54,3 +54,29 @@
new /obj/item/gun/projectile/peac/unloaded(src)
for(var/i = 1 to 4)
new /obj/item/ammo_casing/peac(src)
+
+/obj/structure/closet/secure_closet/guncabinet/station/lessthanlethals
+ name = "Less than Lethal Ammunitions"
+
+/obj/structure/closet/secure_closet/guncabinet/station/lessthanlethals/fill()
+ for(var/i = 1 to 15)
+ new /obj/item/ammo_magazine/c45m/rubber(src)
+ for(var/i = 1 to 8)
+ new /obj/item/ammo_magazine/mc9mmt/rubber(src)
+ for(var/i = 1 to 4)
+ new /obj/item/storage/box/shells/beanbags(src)
+ new /obj/item/storage/box/shells/flashshells(src)
+ new /obj/item/storage/box/shells/stunshells(src)
+ new /obj/item/storage/box/shells/trackingslugs(src)
+
+/obj/structure/closet/secure_closet/guncabinet/station/lethals
+ name = "Lethal Ammunitions"
+
+/obj/structure/closet/secure_closet/guncabinet/station/lethals/fill()
+ for(var/i = 1 to 8)
+ new /obj/item/ammo_magazine/c45m(src)
+ for(var/i = 1 to 6)
+ new /obj/item/ammo_magazine/mc9mmt(src)
+ new /obj/item/ammo_magazine/a556/carbine/polymer(src)
+ for(var/i = 1 to 2)
+ new /obj/item/storage/box/shells/buckshot(src)
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/kitchen.dm b/code/game/objects/structures/crates_lockers/closets/secure/kitchen.dm
index 63b32e48c99..6f24e921eed 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/kitchen.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/kitchen.dm
@@ -13,39 +13,62 @@
// Standard Refrigerator
/obj/structure/closet/secure_closet/refrigerator/standard/fill()
// 5 Cartons of Milk
- for(var/i = 0, i < 5, i++)
+ for(var/i = 0 to 5)
new /obj/item/reagent_containers/food/drinks/carton/milk(src)
// 2 Cartons of Soy Milk
- for(var/i = 0, i < 2, i++)
+ for(var/i = 0 to 2)
new /obj/item/reagent_containers/food/drinks/carton/soymilk(src)
// 1 Egg Box
- for(var/i = 0, i < 2, i++)
+ for(var/i = 0 to 1)
new /obj/item/storage/box/fancy/egg_box(src)
// 1 Stick of Butter
- for(var/i = 0, i < 1, i++)
+ for(var/i = 0 to 1)
new /obj/item/reagent_containers/food/snacks/spreads/butter(src)
// 4 Random Condiments
- for(var/i = 0, i < 4, i++)
+ for(var/i = 0 to 4)
new /obj/random/condiment(src)
// 2 Random Kitchen Staples
- for(var/i = 0, i < 2, i++)
+ for(var/i = 0 to 2)
new /obj/random/kitchen_staples(src)
// Cafe Refrigerator
/obj/structure/closet/secure_closet/refrigerator/cafe/fill()
// 6 Cartons of Milk
- for(var/i = 0, i < 6, i++)
+ for(var/i = 0 to 6)
new /obj/item/reagent_containers/food/drinks/carton/milk(src)
// 3 Egg Boxes
// 3 Bags of Flour
- for(var/i = 0, i < 3, i++)
+ for(var/i = 0 to 3)
new /obj/item/storage/box/fancy/egg_box(src)
new /obj/item/reagent_containers/food/condiment/flour(src)
// 2 Cartons of Soymilk and 2 Bags of Sugar
- for(var/i = 0, i < 2, i++)
+ for(var/i = 0 to 2)
new /obj/item/reagent_containers/food/drinks/carton/soymilk(src)
new /obj/item/reagent_containers/food/condiment/sugar(src)
+// Horizon Kitchen fridge variants
+/obj/structure/closet/secure_closet/refrigerator/station/main
+ name = "refrigerator"
+
+/obj/structure/closet/secure_closet/refrigerator/station/main/fill()
+ for(var/i = 0 to 2)
+ new /obj/item/storage/box/fancy/egg_box(src)
+ new /obj/item/reagent_containers/food/drinks/carton/milk(src)
+ new /obj/item/reagent_containers/food/drinks/carton/soymilk(src)
+ new /obj/item/reagent_containers/food/drinks/carton/cream(src)
+ new /obj/item/reagent_containers/food/condiment/soysauce(src)
+
+/obj/structure/closet/secure_closet/refrigerator/station/alt
+ name = "refrigerator"
+
+/obj/structure/closet/secure_closet/refrigerator/station/alt/fill()
+ for(var/i = 0 to 2)
+ new /obj/item/reagent_containers/food/condiment/flour(src)
+ new /obj/item/reagent_containers/food/condiment/rice(src)
+ new /obj/item/storage/box/large/produce/adhomai(src)
+ new /obj/item/storage/box/large/produce/moghes(src)
+ new /obj/item/storage/box/large/produce/nralakk(src)
+
//
// Freezers
//
@@ -133,10 +156,8 @@
// Standard Kitchen Cabinet
/obj/structure/closet/secure_closet/kitchen_cabinet/standard/fill()
- for(var/i = 0, i < 2, i++)
+ for(var/i = 0 to 2)
new /obj/item/reagent_containers/food/condiment/flour(src)
- new /obj/item/reagent_containers/food/condiment/sugar(src)
- new /obj/item/reagent_containers/food/condiment/shaker/spacespice(src)
//
// Miscellaneous
diff --git a/code/game/objects/structures/crates_lockers/closets/walllocker.dm b/code/game/objects/structures/crates_lockers/closets/walllocker.dm
index 45cd7b79f29..f627f11e7f5 100644
--- a/code/game/objects/structures/crates_lockers/closets/walllocker.dm
+++ b/code/game/objects/structures/crates_lockers/closets/walllocker.dm
@@ -104,3 +104,10 @@
locked = TRUE
secure = TRUE
req_access = list(ACCESS_MEDICAL_EQUIP)
+
+/obj/structure/closet/walllocker/medical/secure/donor_blood
+ name = "O- Blood Locker"
+
+/obj/structure/closet/walllocker/medical/secure/donor_blood/fill()
+ for(var/i = 0 to 3)
+ new /obj/item/reagent_containers/blood/OMinus(src)
diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm
index 5b21d808150..bf3010fbd8e 100644
--- a/code/game/objects/structures/extinguisher.dm
+++ b/code/game/objects/structures/extinguisher.dm
@@ -29,7 +29,7 @@
/obj/structure/extinguisher_cabinet/south
dir = SOUTH
- pixel_y = -23
+ pixel_y = -26
/obj/structure/extinguisher_cabinet/Initialize(mapload)
. = ..()
@@ -41,7 +41,7 @@
/obj/structure/extinguisher_cabinet/set_pixel_offsets()
pixel_x = dir & (NORTH|SOUTH) ? 0 : (dir == EAST ? 21 : 4)
- pixel_y = dir & (NORTH|SOUTH) ? (dir == NORTH ? 24 : -23) : 4
+ pixel_y = dir & (NORTH|SOUTH) ? (dir == NORTH ? 24 : -26) : 4
/obj/structure/extinguisher_cabinet/attackby(obj/item/attacking_item, mob/user)
if(isrobot(user))
diff --git a/code/game/objects/structures/fluff/engineering/maintenance.dm b/code/game/objects/structures/fluff/engineering/maintenance.dm
index 6a6bee5e82f..20c49822eb8 100644
--- a/code/game/objects/structures/fluff/engineering/maintenance.dm
+++ b/code/game/objects/structures/fluff/engineering/maintenance.dm
@@ -50,16 +50,18 @@ ABSTRACT_TYPE(/obj/structure/engineer_maintenance)
/obj/structure/engineer_maintenance/Initialize(mapload)
. = ..()
- name = panel_location == PANEL_LOCATION_FLOOR ? "maintenance panel" : "large maintenance panel" // floor panels are smaller than the wall mounted ones
+ // Floor panels are smaller and should be layered beneath dropped objects other structures.
+ if(panel_location == PANEL_LOCATION_FLOOR)
+ name = "maintenance_panel"
+ layer = EXPOSED_WIRE_TERMINAL_LAYER
+ else
+ name = "large maintenance panel"
icon_number = pick(icon_numbers_and_descriptions)
detailed_desc = icon_numbers_and_descriptions[icon_number]
for(var/tool_type in panel_tools)
var/atom/tool = tool_type
panel_tool_names += initial(tool.name)
- var/turf/target_turf = panel_location == PANEL_LOCATION_FLOOR ? get_turf(src) : get_step(src, NORTH)
- RegisterSignal(target_turf, COMSIG_ATOM_DECONSTRUCTED, PROC_REF(remove_self))
-
/obj/structure/engineer_maintenance/proc/remove_self()
SIGNAL_HANDLER
qdel(src)
diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm
index ab83f867268..969a607be0d 100644
--- a/code/game/objects/structures/lattice.dm
+++ b/code/game/objects/structures/lattice.dm
@@ -5,6 +5,7 @@
icon_state = "lattice"
density = FALSE
anchored = TRUE
+ opacity = FALSE
w_class = WEIGHT_CLASS_NORMAL
layer = ABOVE_TILE_LAYER
obj_flags = OBJ_FLAG_MOVES_UNSUPPORTED
@@ -27,6 +28,11 @@
. += "Add a metal floor tile to build a floor on top of the lattice."
. += "Lattices can be made by applying metal rods to a space tile."
+/obj/structure/lattice/disassembly_hints(mob/user, distance, is_adjacent)
+ . += ..()
+ if(name == "lattice")
+ . += "Lattices can be broken back down into metal rods with a welder."
+
/obj/structure/lattice/Initialize()
. = ..()
for(var/obj/structure/lattice/LAT in loc)
diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm
index 3f40814e3ac..f50e4f31f9f 100644
--- a/code/game/objects/structures/window.dm
+++ b/code/game/objects/structures/window.dm
@@ -571,6 +571,10 @@
layer = FULL_WINDOW_LAYER
rad_resistance_modifier = 4
+/obj/structure/window/shuttle/mouse_drop_receive(atom/dropping, mob/user, params)
+ //Adds the component only once. We do it here & not in Initialize() because there are tons of walls & we don't want to add to their init times
+ LoadComponent(/datum/component/leanable, dropping)
+
/obj/structure/window/shuttle/legion
name = "reinforced cockpit window"
icon = 'icons/obj/smooth/shuttle_window_legion.dmi'
diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm
index f7d7ecc6171..5f20d92880c 100644
--- a/code/modules/mob/living/carbon/human/human_movement.dm
+++ b/code/modules/mob/living/carbon/human/human_movement.dm
@@ -138,9 +138,9 @@
footsound = T.footstep_sound
if (client)
- var/turf/B = GET_TURF_ABOVE(T)
+ var/turf/T1 = GET_TURF_ABOVE(T)
if(up_hint)
- up_hint.icon_state = "uphint[(B ? !!B.is_hole : 0)]"
+ up_hint.icon_state = "uphint[(T1 ? !!isopenturf(T1) : 0)]"
if (!stat && !lying)
if ((x == last_x && y == last_y) || !footsound)
diff --git a/code/modules/mob/living/silicon/robot/robot_helpers.dm b/code/modules/mob/living/silicon/robot/robot_helpers.dm
index 4769ca19667..3a78542eefe 100644
--- a/code/modules/mob/living/silicon/robot/robot_helpers.dm
+++ b/code/modules/mob/living/silicon/robot/robot_helpers.dm
@@ -33,7 +33,7 @@
return
var/eye_plane = src.plane
if(lights_on && layer == MOB_LAYER) // in case you're hiding. so eyes don't go through tables.
- eye_plane = EFFECTS_ABOVE_LIGHTING_PLANE //make them glow in the dark if the lamp is on
+ eye_plane = MOB_EMISSIVE_LAYER //make them glow in the dark if the lamp is on
var/eyeprefix = module_sprites[icontype][ROBOT_EYES]
if(speed == -2) // For combat drones with the mobility module.
cached_eye_overlays = list(
diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm
index 513abd87d3b..7875ca2a1e4 100644
--- a/code/modules/power/apc.dm
+++ b/code/modules/power/apc.dm
@@ -1468,7 +1468,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc)
/obj/machinery/power/apc/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/critical
is_critical = TRUE
@@ -1487,7 +1487,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc)
/obj/machinery/power/apc/critical/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/low
cell_type = /obj/item/cell
@@ -1506,7 +1506,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc)
/obj/machinery/power/apc/low/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/high
cell_type = /obj/item/cell/high
@@ -1525,7 +1525,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc)
/obj/machinery/power/apc/high/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/isolation
cell_type = /obj/item/cell
@@ -1546,7 +1546,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc)
/obj/machinery/power/apc/isolation/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/vault
cell_type = /obj/item/cell
@@ -1566,91 +1566,41 @@ ABSTRACT_TYPE(/obj/machinery/power/apc)
/obj/machinery/power/apc/vault/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
-/obj/machinery/power/apc/shuttle/intrepid
+/obj/machinery/power/apc/shuttle
cell_type = /obj/item/cell/high
req_access = null
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_INTREPID)
-/obj/machinery/power/apc/shuttle/intrepid/north
+/obj/machinery/power/apc/shuttle/north
dir = NORTH
pixel_y = 22
-/obj/machinery/power/apc/shuttle/intrepid/east
+/obj/machinery/power/apc/shuttle/east
dir = EAST
pixel_x = 12
-/obj/machinery/power/apc/shuttle/intrepid/west
+/obj/machinery/power/apc/shuttle/west
dir = WEST
pixel_x = -12
-/obj/machinery/power/apc/shuttle/intrepid/south
+/obj/machinery/power/apc/shuttle/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
-/obj/machinery/power/apc/shuttle/canary
- cell_type = /obj/item/cell/high
- req_access = null
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_CANARY)
+/// Assigns req_one_access perms associated with the area of the shuttle its mapped in.
+/obj/machinery/power/apc/shuttle/Initialize()
+ . = ..()
+ var/area = get_area(src)
-/obj/machinery/power/apc/shuttle/canary/north
- dir = NORTH
- pixel_y = 22
-
-/obj/machinery/power/apc/shuttle/canary/east
- dir = EAST
- pixel_x = 12
-
-/obj/machinery/power/apc/shuttle/canary/west
- dir = WEST
- pixel_x = -12
-
-/obj/machinery/power/apc/shuttle/canary/south
- dir = SOUTH
- pixel_y = -4
-
-ABSTRACT_TYPE(/obj/machinery/power/apc/shuttle/quark)
- cell_type = /obj/item/cell/high
- req_access = null
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_QUARK)
-
-/obj/machinery/power/apc/shuttle/quark/north
- dir = NORTH
- pixel_y = 22
-
-/obj/machinery/power/apc/shuttle/quark/east
- dir = EAST
- pixel_x = 12
-
-/obj/machinery/power/apc/shuttle/quark/west
- dir = WEST
- pixel_x = -12
-
-/obj/machinery/power/apc/shuttle/quark/south
- dir = SOUTH
- pixel_y = -4
-
-/obj/machinery/power/apc/shuttle/spark
- cell_type = /obj/item/cell/high
- req_access = null
- req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_SPARK)
-
-/obj/machinery/power/apc/shuttle/spark/north
- dir = NORTH
- pixel_y = 22
-
-/obj/machinery/power/apc/shuttle/spark/east
- dir = EAST
- pixel_x = 12
-
-/obj/machinery/power/apc/shuttle/spark/west
- dir = WEST
- pixel_x = -12
-
-/obj/machinery/power/apc/shuttle/spark/south
- dir = SOUTH
- pixel_y = -4
+ if(istype(area, /area/horizon/shuttle/intrepid))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_INTREPID)
+ if(istype(area, /area/horizon/shuttle/quark))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_QUARK)
+ if(istype(area, /area/horizon/shuttle/mining))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_SPARK)
+ if(istype(area, /area/horizon/shuttle/canary))
+ req_one_access = list(ACCESS_ENGINE_EQUIP, ACCESS_CANARY)
// Construction site APC, starts turned off
/obj/machinery/power/apc/high/inactive
@@ -1679,7 +1629,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc/shuttle/quark)
/obj/machinery/power/apc/super/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/super/critical
is_critical = TRUE
@@ -1698,7 +1648,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc/shuttle/quark)
/obj/machinery/power/apc/super/critical/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/hyper
cell_type = /obj/item/cell/hyper
@@ -1717,7 +1667,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc/shuttle/quark)
/obj/machinery/power/apc/hyper/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
/obj/machinery/power/apc/empty
start_charge = 0
@@ -1736,7 +1686,7 @@ ABSTRACT_TYPE(/obj/machinery/power/apc/shuttle/quark)
/obj/machinery/power/apc/empty/south
dir = SOUTH
- pixel_y = -4
+ pixel_y = -8
#undef UPDATE_CELL_IN
#undef UPDATE_OPENED1
diff --git a/code/unit_tests/map_tests.dm b/code/unit_tests/map_tests.dm
index 67af50bc447..c251ad6f8f0 100644
--- a/code/unit_tests/map_tests.dm
+++ b/code/unit_tests/map_tests.dm
@@ -444,5 +444,45 @@
return test_status
+// At present, only fire alarms have NSEW as immediate children, whereas APCs and Air Alarms also have them as sub-children.
+// In the future, areas should have additional vars to populate APC data automatically, allowing them to have directional
+// immediate children too for mapping testing.
+/datum/unit_test/map_test/no_panel_dir_var_edits
+ name = "MAP: Check for Fire Alarm dir var edits"
+
+/datum/unit_test/map_test/no_panel_dir_var_edits/start_test()
+ var/test_status = UNIT_TEST_PASSED
+ var/checks = 0
+ var/failed_checks = 0
+ var/firealarm_increment
+ var/turf/T
+
+ for(var/obj/machinery/firealarm/F in world)
+ T = get_turf(F)
+ firealarm_increment = 0
+ if(istype(F, /obj/machinery/firealarm/north))
+ if(F.dir != NORTH)
+ firealarm_increment++
+ if(istype(F, /obj/machinery/firealarm/south))
+ if(F.dir != SOUTH)
+ firealarm_increment++
+ if(istype(F, /obj/machinery/firealarm/east))
+ if(F.dir != EAST)
+ firealarm_increment++
+ if(istype(F, /obj/machinery/firealarm/west))
+ if(F.dir != WEST)
+ firealarm_increment++
+ checks++
+ if(firealarm_increment > 1)
+ failed_checks++
+ TEST_FAIL("Manually var edited [F] at ([F.x],[F.y],[F.z]) in [T.loc].")
+
+ if(failed_checks)
+ TEST_FAIL("\[[failed_checks] / [checks]\] Some fire alarms had their dir var manually edited instead of using a preset variant. Please also check new APCs and air alarms in the area.")
+ else
+ TEST_PASS("All \[[checks]\] fire alarms mapped properly.")
+
+ return test_status
+
#undef SUCCESS
#undef FAILURE
diff --git a/html/changelogs/Bat-HorizonMiscCleanup.yml b/html/changelogs/Bat-HorizonMiscCleanup.yml
new file mode 100644
index 00000000000..48b589d63f6
--- /dev/null
+++ b/html/changelogs/Bat-HorizonMiscCleanup.yml
@@ -0,0 +1,26 @@
+# Your name.
+author: Batrachophrenoboocosmomachia
+
+# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
+delete-after: True
+
+# Any changes you've made. See valid prefix list above.
+# INDENT WITH TWO SPACES. NOT TABS. SPACES.
+# SCREW THIS UP AND IT WON'T WORK.
+# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit.
+# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog.
+changes:
+ - code_imp: "Added set definitions for several Horizon-specific containers."
+ - code_imp: "Updated 'full' material stacks on the Horizon from sneaky var-edited singles to properly defined full stacks"
+ - code_imp: "Cleaned up all Air Alarms, Fire Alarms, and APCs on the Horizon that were directional children with their dir var edited."
+ - code_imp: "Cleaned up all Power Cables on the Horizon that had d1 or d2 var edited instead of just icon_state."
+ - code_imp: "Adjusted pixel shifts for 'south' (north-facing) Air Alarms, Fire Alarms, APCs, and Extinguisher Cabinets to address layering issues when standing vs. leaning."
+ - code_imp: "Minor refactor of shuttle/* Air Alarms and APCs to reduce excess children; req_one_access perms now assigned based on /area/horizon/shuttle/*."
+ - qol: "Adds feedback hint for uses remaining to Emag cards."
+ - qol: "Added Tip about the shift-click behavior of the 'up-hint'/'Look Up' button."
+ - bugfix: "See-through turfs (like lattices/catwalks over open space) can now be Looked Up through from below."
+ - bugfix: "Fixed the shift-click behavior of 'up-hint'/'Look Up' button, allowing you to see nearby turfs that can be Looked Up through."
+ - bugfix: "Maintenance Panels located on the floor have had their layering issues fixed."
+ - bugfix: "Borg eye emissive effects MAYBE no longer visible through higher z-levels."
+ - bugfix: "Added missing leanable component to window/shuttle obj type."
+ - bugfix: "Add missing APC to D1 maintenance area."
diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm
index f24f28a67ae..508141818e7 100644
--- a/maps/sccv_horizon/sccv_horizon.dmm
+++ b/maps/sccv_horizon/sccv_horizon.dmm
@@ -18,26 +18,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/operations/office)
-"aaj" = (
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/library)
"aak" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/full,
@@ -594,17 +574,6 @@
name = "mossy grass"
},
/area/horizon/holodeck/source_konyang)
-"adI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/horizon/medical/gen_treatment)
"adJ" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/ore_box,
@@ -1392,6 +1361,22 @@
"ahB" = (
/turf/simulated/wall/r_wall,
/area/horizon/service/custodial/disposals/deck_1)
+"ahF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/bar)
"ahU" = (
/turf/simulated/wall/r_wall,
/area/horizon/engineering/atmos/air)
@@ -1472,25 +1457,6 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/horizon/hallway/primary/deck_2/fore)
-"aiq" = (
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -25
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -22;
- pixel_y = 5
- },
-/turf/simulated/floor/carpet/rubber,
-/area/horizon/rnd/xenoarch/spectrometry)
"air" = (
/obj/item/extinguisher,
/obj/effect/floor_decal/corner/orange/diagonal,
@@ -1612,6 +1578,28 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/horizon/storage/eva)
+"aiZ" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "12-0"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/obj/structure/railing/mapped,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_2/wing/starboard/near)
"ajf" = (
/turf/simulated/floor/wood,
/area/horizon/repoffice/consular_two)
@@ -1624,17 +1612,6 @@
},
/turf/simulated/floor/holofloor/tiled,
/area/template_noop)
-"ajn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"ajp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -2025,26 +2002,6 @@
"alM" = (
/turf/simulated/floor/exoplanet/grass/grove,
/area/centcom/shared_dream)
-"alN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/dark_green{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/horizon/hallway/primary/deck_2/fore)
"alO" = (
/obj/effect/step_trigger/thrower/shuttle/southwest,
/turf/template_noop,
@@ -2199,22 +2156,6 @@
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/wood,
/area/merchant_station)
-"amP" = (
-/obj/machinery/door/airlock/service{
- dir = 1;
- name = "Bar - Backroom";
- req_access = list(25)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/full,
-/area/horizon/service/bar)
"amS" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
@@ -2272,6 +2213,16 @@
},
/turf/simulated/floor/plating,
/area/horizon/command/bridge/meeting_room)
+"anb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12,26,29,31,48,67)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/full,
+/area/horizon/maintenance/deck_2/cargo_compartment)
"anc" = (
/obj/structure/railing/mapped{
dir = 8
@@ -2319,27 +2270,6 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/reactor/indra/monitoring)
-"anw" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -22
- },
-/obj/machinery/disposal/small/north,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 7
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/consular_two)
"anF" = (
/obj/effect/decal{
anchored = 1;
@@ -2448,19 +2378,6 @@
/obj/structure/railing/mapped,
/turf/simulated/floor/tiled/white,
/area/horizon/medical/hallway/upper)
-"aop" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/storage)
"aos" = (
/obj/effect/decal/fake_object{
desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy.";
@@ -2776,26 +2693,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/operations/office)
-"aqZ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark/full/airless,
-/area/horizon/command/bridge/controlroom)
"arc" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 9
@@ -2889,6 +2786,20 @@
},
/turf/unsimulated/floor,
/area/centcom/distress_prep)
+"arQ" = (
+/obj/structure/table/reinforced/steel,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/storage/box/unique/donkpockets{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/corner/grey{
+ dir = 6
+ },
+/turf/unsimulated/floor,
+/area/antag/mercenary)
"arR" = (
/obj/structure/railing/mapped,
/obj/structure/platform/ledge{
@@ -2953,41 +2864,21 @@
"asb" = (
/turf/unsimulated/floor,
/area/antag/mercenary)
-"ash" = (
-/obj/machinery/power/smes/buildable/horizon_shuttle{
- RCon_tag = "Spark"
+"asc" = (
+/obj/structure/table/stone/marble,
+/obj/item/material/kitchen/rollingpin{
+ pixel_x = 6;
+ pixel_y = 10
},
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/item/material/knife{
+ pixel_x = -9
},
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/operations,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/mining)
+/obj/item/storage/box/large/produce,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/kitchen)
"ask" = (
/turf/simulated/wall/r_wall,
/area/horizon/rnd/xenological)
-"aso" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/atrium)
"ass" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
@@ -3131,6 +3022,15 @@
},
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/holodeck)
+"aty" = (
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/machinery/firealarm/east,
+/obj/structure/table/standard,
+/obj/item/storage/box/large/flares,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/command/teleporter)
"atC" = (
/obj/effect/map_effect/window_spawner/full/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
@@ -3706,6 +3606,19 @@
},
/turf/simulated/floor/marble/dark,
/area/horizon/holodeck/source_trinary)
+"awG" = (
+/obj/machinery/power/smes/buildable/horizon_shuttle{
+ RCon_tag = "Spark"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/operations,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/mining)
"awI" = (
/turf/simulated/wall/shuttle/unique/scc/mining{
icon_state = "fix1"
@@ -3848,20 +3761,6 @@
/obj/structure/anomaly_container,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenoarch/anomaly_storage)
-"axH" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/effect/floor_decal/corner/mauve{
- dir = 9
- },
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/structure/closet/crate,
-/obj/item/storage/box/unique/monkeycubes,
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/test_range)
"axN" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
@@ -4297,6 +4196,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/atmos/propulsion)
+"aAS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/obj/structure/bed/stool/padded/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/bar/backroom)
"aAT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 5
@@ -4767,26 +4682,6 @@
/obj/structure/lattice,
/turf/simulated/open/airless,
/area/horizon/exterior)
-"aGm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/bar)
"aGn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_service{
@@ -5358,20 +5253,21 @@
},
/turf/unsimulated/floor/plating,
/area/shuttle/syndicate_elite)
-"aJR" = (
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/sbs,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/structure/closet/walllocker/medical/secure{
- name = "O- Blood Locker";
- pixel_y = 32
+"aJT" = (
+/obj/structure/railing/mapped{
+ dir = 1
},
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/area/horizon/medical/surgery/storage)
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -22;
+ pixel_y = 5
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/rnd/xenoarch/spectrometry)
"aJX" = (
/obj/structure/closet/walllocker/medical/firstaid{
pixel_x = 32
@@ -5564,6 +5460,25 @@
/obj/machinery/power/apc/east,
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_1/central)
+"aLa" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"aLf" = (
/turf/unsimulated/floor/plating,
/area/centcom/ferry)
@@ -5787,23 +5702,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/ward)
-"aMJ" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/walllocker/medical/secure{
- name = "O- Blood Locker";
- pixel_x = 32
- },
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/OMinus,
-/turf/simulated/floor/tiled/white,
-/area/horizon/shuttle/intrepid/medical)
"aMK" = (
/obj/effect/floor_decal/corner/dark_green/full{
dir = 8
@@ -6083,6 +5981,24 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/starboard)
+"aOR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/window/southleft{
+ name = "Artifact Secure Storage";
+ req_access = list(47);
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/anomaly_storage)
"aOT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 8
@@ -6252,29 +6168,29 @@
},
/turf/simulated/floor/tiled,
/area/horizon/storage/primary)
-"aQq" = (
-/obj/structure/window/reinforced{
- dir = 4;
- maxhealth = 140
+"aQr" = (
+/obj/structure/table/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/structure/table/rack,
-/obj/item/clothing/suit/hazmat/anomaly,
-/obj/item/clothing/mask/gas/alt,
-/obj/item/clothing/head/hazmat/anomaly,
-/obj/item/storage/box/gloves,
-/obj/machinery/firealarm/west{
- dir = 1;
- pixel_x = 0;
- pixel_y = 26
+/obj/item/reagent_containers/food/condiment/shaker/salt{
+ pixel_x = -6;
+ pixel_y = 16
},
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = -22;
- pixel_y = 5
+/obj/item/reagent_containers/food/condiment/shaker/peppermill{
+ pixel_x = 4;
+ pixel_y = 16
},
-/obj/item/clothing/glasses/safety/goggles/science,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/anomaly_storage)
+/obj/item/flame/candle{
+ pixel_y = 16
+ },
+/obj/machinery/power/outlet,
+/obj/machinery/power/apc/north,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/dining_hall)
"aQu" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -6806,6 +6722,30 @@
/obj/structure/extinguisher_cabinet/north,
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/central)
+"aUG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/structure/table/stone/marble,
+/obj/item/reagent_containers/food/drinks/shaker{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/glass/rag,
+/obj/machinery/power/outlet,
+/obj/machinery/door/blast/shutters{
+ id = "bar_shutter";
+ name = "Bar Shutter"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/service/bar)
"aUI" = (
/obj/machinery/iv_drip,
/obj/effect/floor_decal/industrial/warning,
@@ -6827,6 +6767,13 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/bluespace_drive/monitoring)
+"aUO" = (
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_2/cargo_compartment)
"aUP" = (
/obj/structure/platform,
/obj/structure/platform_deco,
@@ -6939,28 +6886,6 @@
/obj/machinery/portable_atmospherics/canister/hydrogen,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/reactor/indra/mainchamber)
-"aVB" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/alarm/south{
- alarm_id = 1503;
- breach_detection = 0;
- rcon_setting = 3;
- report_danger_level = 0;
- req_one_access = list(7,47,24,11)
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/isolation_c)
"aVG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -7771,6 +7696,25 @@
/obj/item/clothing/mask/breath/medical,
/turf/simulated/floor/tiled/white,
/area/horizon/medical/gen_treatment)
+"bbG" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/drinkingglasses{
+ pixel_x = 6
+ },
+/obj/item/storage/box/drinkingglasses{
+ pixel_x = 6;
+ pixel_y = -8
+ },
+/obj/machinery/appliance/cooker/microwave{
+ pixel_y = 12
+ },
+/obj/machinery/alarm/east,
+/obj/item/storage/box/unique/donkpockets{
+ pixel_x = -11;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/full,
+/area/horizon/command/bridge/cciaroom)
"bbH" = (
/obj/structure/window/shuttle/unique/ccia{
icon_state = "1,1"
@@ -8115,6 +8059,26 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor,
/area/horizon/crew/fitness/changing)
+"beT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/wood,
+/area/horizon/repoffice/representative_two)
"beU" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -8343,27 +8307,6 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/horizon/rnd/hallway/secondary)
-"bgl" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/obj/structure/sign/staff_only{
- pixel_x = -1;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"bgo" = (
/obj/effect/floor_decal/corner/brown/full,
/obj/structure/table/rack/folding_table,
@@ -8594,6 +8537,12 @@
"bhL" = (
/turf/simulated/wall,
/area/horizon/stairwell/starboard/deck_2)
+"bhP" = (
+/obj/machinery/firealarm/east,
+/obj/structure/closet/secure_closet/refrigerator/station/main,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/kitchen)
"bhQ" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -8832,24 +8781,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/atmos/propulsion/starboard)
-"biW" = (
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/sbs,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/structure/closet/walllocker/medical/secure{
- name = "O- Blood Locker";
- pixel_y = 32
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/west,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/horizon/medical/surgery/storage)
"biZ" = (
/obj/structure/bed/stool/chair/padded/black{
dir = 1
@@ -9671,6 +9602,43 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/hallway/upper)
+"boS" = (
+/obj/item/device/gps/stationary/mining_shuttle{
+ pixel_x = -22;
+ pixel_y = -8
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/head/helmet/pilot{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/device/radio{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/machinery/cell_charger,
+/obj/random/powercell{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/material/hatchet/machete/steel,
+/obj/item/material/hatchet/machete/steel,
+/obj/item/clothing/accessory/holster/utility/machete,
+/obj/item/clothing/accessory/holster/utility/machete,
+/obj/item/tent/mining,
+/obj/machinery/alarm/shuttle/west,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/mining)
"boU" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -11069,18 +11037,6 @@
/obj/effect/map_effect/window_spawner/full/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/operations/loading)
-"bzG" = (
-/obj/structure/cable/green,
-/obj/structure/bed/stool/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10
- },
-/obj/machinery/power/apc/shuttle/spark/east,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/mining)
"bzL" = (
/obj/effect/floor_decal/corner/brown/full{
dir = 8
@@ -11722,15 +11678,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/lino,
/area/horizon/service/chapel/main)
-"bEB" = (
-/obj/effect/floor_decal/corner/brown/diagonal,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/super/north,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/holodeck_control/beta)
"bES" = (
/obj/effect/floor_decal/industrial/warning,
/obj/random/junk,
@@ -12125,6 +12072,14 @@
icon_state = "dark_preview"
},
/area/centcom/control)
+"bHT" = (
+/obj/structure/closet/secure_closet/guncabinet/station/lessthanlethals,
+/obj/effect/floor_decal/corner_wide/paleblue{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/security/armoury)
"bHU" = (
/obj/item/ore{
name = "meteor fragment";
@@ -12636,6 +12591,25 @@
/obj/effect/floor_decal/corner/red/diagonal,
/turf/simulated/floor/tiled/dark,
/area/shuttle/mercenary)
+"bMx" = (
+/obj/effect/floor_decal/industrial/hatch_door/yellow{
+ dir = 8
+ },
+/obj/machinery/door/firedoor{
+ req_one_access = list(24,11,67,73)
+ },
+/obj/machinery/door/airlock/hatch{
+ name = "Starboard Nacelle"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/engineering)
"bMD" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 4
@@ -13577,22 +13551,6 @@
icon_state = "wood"
},
/area/centcom/distress_prep)
-"bTI" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/valve/digital/open{
- dir = 4;
- name = "Isolation C"
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/atrium)
"bTL" = (
/obj/effect/map_effect/window_spawner/full/reinforced/indestructible,
/turf/unsimulated/floor{
@@ -13955,6 +13913,17 @@
/obj/effect/map_effect/window_spawner/full/reinforced/indestructible,
/turf/unsimulated/floor/plating,
/area/centcom/distress_prep)
+"bWe" = (
+/obj/structure/closet/crate/secure/legion,
+/obj/item/storage/box/handcuffs,
+/obj/item/storage/box/handcuffs,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/storage/box/tactical/teargas,
+/turf/unsimulated/floor,
+/area/centcom/legion)
"bWg" = (
/obj/effect/landmark/entry_point/starboard{
name = "starboard, ballast aft"
@@ -14232,6 +14201,21 @@
},
/turf/unsimulated/floor,
/area/centcom/legion/hangar5)
+"bYc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/bed/stool/bar/padded/red{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/horizon/service/bar)
"bYd" = (
/obj/structure/grille,
/obj/structure/window/shuttle/scc_space_ship,
@@ -14283,6 +14267,23 @@
},
/turf/simulated/floor/shuttle/black,
/area/centcom/specops)
+"bYW" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/tactical/teargas{
+ pixel_x = -1;
+ pixel_y = -4
+ },
+/obj/item/storage/box/tactical/flashbangs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark_preview"
+ },
+/area/centcom/holding)
"bYY" = (
/obj/effect/floor_decal/industrial/warning,
/obj/effect/decal/cleanable/dirt,
@@ -14373,6 +14374,17 @@
/obj/effect/floor_decal/corner/paleblue/full,
/turf/simulated/floor/tiled,
/area/horizon/command/bridge/cciaroom/lounge)
+"bZW" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/shuttle/north,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_compartment)
"bZX" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -14925,6 +14937,19 @@
/obj/structure/window/reinforced/holowindow,
/turf/simulated/floor/holofloor/wood,
/area/horizon/holodeck/source_courtroom)
+"ceb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_3/security/starboard)
"ceg" = (
/turf/simulated/wall/r_wall,
/area/horizon/rnd/xenoarch/isolation_b)
@@ -14980,6 +15005,27 @@
},
/turf/simulated/floor/tiled,
/area/horizon/crew/resdeck/living_quarters_lift)
+"ceF" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/window/shuttle/scc_space_ship/cardinal,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "shutters_deck3_captain";
+ name = "Safety Shutter"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/command/heads/captain)
"ceH" = (
/obj/structure/railing/mapped{
dir = 1
@@ -15453,17 +15499,6 @@
},
/turf/simulated/floor/holofloor/carpet,
/area/horizon/holodeck/source_dininghall)
-"chG" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/sleeper{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/shuttle/intrepid/east,
-/turf/simulated/floor/tiled/white,
-/area/horizon/shuttle/intrepid/medical)
"chI" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/floor_decal/industrial/warning{
@@ -15541,32 +15576,6 @@
/obj/structure/table/reinforced/glass,
/turf/simulated/floor/wood,
/area/horizon/rnd/xenoarch/presentation)
-"ciq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/structure/table/stone/marble,
-/obj/item/reagent_containers/food/drinks/shaker{
- pixel_x = 8;
- pixel_y = 4
- },
-/obj/item/reagent_containers/glass/rag,
-/obj/machinery/power/outlet,
-/obj/machinery/door/blast/shutters{
- id = "bar_shutter";
- name = "Bar Shutter"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/service/bar)
"ciH" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -15761,41 +15770,6 @@
},
/turf/space/dynamic,
/area/horizon/exterior)
-"ckf" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Lethal Ammunitions"
- },
-/obj/item/storage/box/shells/buckshot,
-/obj/item/storage/box/shells/buckshot,
-/obj/effect/floor_decal/corner_wide/paleblue/full{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/c45m,
-/obj/item/ammo_magazine/mc9mmt,
-/obj/item/ammo_magazine/mc9mmt,
-/obj/item/ammo_magazine/mc9mmt,
-/obj/item/ammo_magazine/mc9mmt,
-/obj/item/ammo_magazine/mc9mmt,
-/obj/item/ammo_magazine/mc9mmt,
-/obj/item/ammo_magazine/a556/carbine/polymer,
-/obj/item/ammo_magazine/a556/carbine/polymer,
-/obj/item/ammo_magazine/a556/carbine/polymer,
-/obj/item/ammo_magazine/a556/carbine/polymer,
-/obj/item/ammo_magazine/a556/carbine/polymer,
-/obj/item/ammo_magazine/a556/carbine/polymer,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/security/armoury)
"ckm" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp{
@@ -15857,15 +15831,6 @@
icon_state = "dark_preview"
},
/area/centcom/specops)
-"ckG" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/super/east,
-/obj/machinery/atmospherics/pipe/simple/visible/black,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/atmos/air)
"ckN" = (
/obj/effect/floor_decal/corner/dark_green,
/turf/simulated/floor/tiled,
@@ -15962,26 +15927,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/service/dining_hall)
-"clO" = (
-/obj/machinery/power/apc/west,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/table/reinforced/wood,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/obj/machinery/case_button/shuttle{
- pixel_x = 4;
- pixel_y = 15
- },
-/obj/item/flame/lighter/zippo{
- pixel_x = -8
- },
-/obj/item/card/id/captains_spare,
-/turf/simulated/floor/wood,
-/area/horizon/command/heads/captain)
"clQ" = (
/obj/effect/floor_decal/corner/lime/diagonal,
/obj/structure/bed/stool/chair/padded/teal,
@@ -16661,26 +16606,6 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/full,
/area/horizon/medical/morgue)
-"cqV" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/library)
"crk" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
@@ -16765,6 +16690,22 @@
},
/turf/simulated/floor/exoplanet/ice,
/area/centcom/shared_dream)
+"crO" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner_wide/green/full{
+ dir = 4
+ },
+/obj/machinery/alarm/east,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 12
+ },
+/obj/item/storage/box/unique/freezer/organcooler{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/medical/main_storage)
"crZ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
@@ -17788,15 +17729,6 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/starboard)
-"cxN" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/north,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/maintenance/deck_2/cargo_compartment)
"cxO" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 4
@@ -17822,20 +17754,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/icu)
-"cxY" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/atrium)
"cyc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18238,13 +18156,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/atmos/propulsion/starboard)
-"cAL" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light/small,
-/obj/structure/cable/green,
-/obj/machinery/power/apc/shuttle/intrepid/west,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/junction_compartment)
"cAM" = (
/obj/effect/floor_decal/corner/green{
dir = 5
@@ -18283,24 +18194,6 @@
},
/turf/simulated/floor/holofloor/tiled/dark,
/area/tdome/tdome1)
-"cBn" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/material/kitchen/rollingpin{
- pixel_x = 6;
- pixel_y = 10
- },
-/obj/item/material/knife{
- pixel_x = -9
- },
-/obj/item/storage/box/large/produce,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/kitchen)
"cBp" = (
/obj/structure/flora/bush/adhomai,
/turf/simulated/floor/holofloor/snow,
@@ -18399,18 +18292,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/equipment)
-"cCe" = (
-/obj/structure/table/stone/marble,
-/obj/item/material/kitchen/rollingpin{
- pixel_x = 6;
- pixel_y = 10
- },
-/obj/item/material/knife{
- pixel_x = -9
- },
-/obj/item/storage/box/large/produce,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/kitchen)
"cCi" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -18562,23 +18443,6 @@
icon_state = "dark_preview"
},
/area/centcom/spawning)
-"cCX" = (
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/alarm/north{
- dir = 4;
- pixel_y = 0;
- pixel_x = 10
- },
-/turf/simulated/floor/tiled,
-/area/horizon/command/bridge/controlroom)
"cDa" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -18897,6 +18761,19 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/port/nacelle)
+"cFs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/command/bridge/selfdestruct)
"cFu" = (
/obj/effect/floor_decal/corner/yellow{
dir = 10
@@ -19276,6 +19153,24 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/tcommsat/chamber)
+"cHU" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ dir = 1;
+ name = "Warden's Office";
+ req_access = list(3)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/full,
+/area/horizon/security/warden)
"cHZ" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -19476,18 +19371,6 @@
},
/turf/unsimulated/floor/wood,
/area/centcom/evac)
-"cJq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_compartment)
"cJv" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -19566,6 +19449,24 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/starboard/far)
+"cJR" = (
+/obj/effect/floor_decal/corner/dark_green{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/primary/deck_2/fore)
"cJV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -19708,24 +19609,6 @@
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/exoplanet/grass/grove,
/area/centcom/shared_dream)
-"cKZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/start{
- name = "Bartender"
- },
-/obj/structure/bed/stool/padded/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/bar/backroom)
"cLa" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -20244,24 +20127,6 @@
},
/turf/simulated/wall/shuttle/unique/scc/mining,
/area/horizon/shuttle/mining)
-"cQj" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/horizon/service/library)
"cQl" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -20374,23 +20239,6 @@
},
/turf/simulated/floor/carpet/purple,
/area/centcom/shared_dream)
-"cQX" = (
-/obj/machinery/door/airlock/glass_service{
- dir = 1;
- name = "Hydroponics";
- req_access = list(35)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/map_effect/door_helper/unres{
- dir = 1
- },
-/turf/simulated/floor/tiled/full,
-/area/horizon/service/hydroponics)
"cQZ" = (
/obj/structure/stairs/north,
/turf/simulated/floor/tiled,
@@ -20583,6 +20431,25 @@
},
/turf/unsimulated/floor/wood,
/area/centcom/bar)
+"cRU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Xenoarchaelogy Presentation"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/full,
+/area/horizon/rnd/xenoarch/presentation)
"cRW" = (
/obj/machinery/light/small{
dir = 8
@@ -20677,21 +20544,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/substation/engineering)
-"cSx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/industrial/hatch/red,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/command/bridge/selfdestruct)
"cSA" = (
/obj/item/material/shard,
/turf/unsimulated/floor,
@@ -21068,27 +20920,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_2/fore)
-"cUY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/bed/handrail{
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/shuttle/intrepid/east,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/starboard_compartment)
"cVc" = (
/obj/effect/floor_decal/industrial/warning{
dir = 9
@@ -21332,32 +21163,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/equipment)
-"cWK" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/table/reinforced/steel,
-/obj/machinery/recharger{
- pixel_x = 6
- },
-/obj/machinery/recharger{
- pixel_x = -5
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 6;
- pixel_y = 14
- },
-/obj/item/device/binoculars{
- pixel_x = -4;
- pixel_y = 10
- },
-/obj/effect/floor_decal/corner/dark_blue/diagonal,
-/obj/effect/floor_decal/spline/plain/black{
- dir = 4
- },
-/obj/machinery/alarm/shuttle/intrepid/east,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/junction_compartment)
"cWM" = (
/obj/machinery/door/airlock/external,
/obj/effect/floor_decal/industrial/hatch/red,
@@ -21398,6 +21203,19 @@
/obj/structure/noticeboard,
/turf/simulated/wall/r_wall,
/area/horizon/repoffice/consular_two)
+"cXe" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/test_range)
"cXf" = (
/obj/structure/platform{
dir = 1
@@ -22030,6 +21848,19 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/starboard)
+"dca" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
+ },
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_x = 8
+ },
+/obj/structure/filingcabinet{
+ pixel_x = -8
+ },
+/obj/machinery/alarm/west,
+/turf/simulated/floor/wood,
+/area/horizon/repoffice/representative_two)
"dcc" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
@@ -22351,18 +22182,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/rnd/eva)
-"det" = (
-/obj/machinery/alarm/north{
- dir = 4;
- pixel_y = 0;
- pixel_x = 10
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 6
- },
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/grass/no_edge,
-/area/horizon/command/bridge/upperdeck)
"deu" = (
/turf/simulated/wall/r_wall,
/area/horizon/engineering/aft_airlock)
@@ -22410,6 +22229,18 @@
},
/turf/simulated/floor/tiled,
/area/horizon/stairwell/engineering/deck_2)
+"deT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/stairwell/bridge/deck_2)
"deU" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/item/material/shard{
@@ -22546,6 +22377,20 @@
},
/turf/simulated/floor/lino,
/area/horizon/service/cafeteria)
+"dfw" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/port_storage)
"dfx" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -22696,26 +22541,6 @@
},
/turf/simulated/floor/reinforced/nitrogen,
/area/horizon/engineering/atmos/air)
-"dgC" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"dgF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -23015,6 +22840,17 @@
},
/turf/simulated/floor/wood,
/area/horizon/service/library)
+"diA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"diD" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -23288,6 +23124,15 @@
"djJ" = (
/turf/simulated/wall,
/area/horizon/maintenance/deck_3/aft/port/far)
+"djK" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/operations/commissary)
"djX" = (
/obj/machinery/computer/ship/sensors/terminal{
dir = 1
@@ -23346,6 +23191,14 @@
/obj/structure/railing/mapped,
/turf/simulated/open/airless,
/area/horizon/exterior)
+"dkC" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/super/east,
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/atmos/air)
"dkD" = (
/obj/machinery/door/firedoor/multi_tile,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -23363,6 +23216,19 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/rnd/eva)
+"dkG" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/walllocker/medical/secure/donor_blood{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/shuttle/intrepid/medical)
"dkH" = (
/obj/structure/sink{
pixel_y = 26
@@ -23379,6 +23245,26 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/operations/machinist)
+"dkT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/wood,
+/area/horizon/repoffice/representative_one)
"dkV" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
@@ -23749,6 +23635,15 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenobiology/foyer)
+"dnk" = (
+/obj/effect/floor_decal/industrial/outline/operations,
+/obj/machinery/pipedispenser/disposal,
+/obj/machinery/power/apc/north,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/engineering/atmos/storage)
"dnn" = (
/obj/machinery/light/small/emergency{
dir = 1
@@ -24665,6 +24560,16 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor,
/area/shuttle/mercenary)
+"dtp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/teleporter)
"dts" = (
/turf/unsimulated/wall/fakepdoor{
dir = 4
@@ -25372,6 +25277,13 @@
},
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos)
+"dyj" = (
+/obj/structure/stairs/north,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/stairwell/bridge/deck_2)
"dyk" = (
/obj/effect/floor_decal/corner/lime/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -25591,6 +25503,37 @@
"dAf" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/maintenance/deck_1/hangar/starboard)
+"dAi" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/library)
+"dAj" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/wood,
+/area/horizon/command/bridge/upperdeck)
"dAk" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -25662,6 +25605,15 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenobiology/xenoflora)
+"dAO" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/main_compartment)
"dAT" = (
/obj/structure/closet/secure_closet/medical2{
req_access = null
@@ -25848,6 +25800,15 @@
},
/turf/simulated/floor/plating,
/area/horizon/command/bridge/cciaroom)
+"dBV" = (
+/obj/effect/floor_decal/corner/dark_blue/diagonal,
+/obj/structure/bed/handrail,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/alarm/shuttle/north,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/flight_deck)
"dBZ" = (
/obj/machinery/power/apc/north,
/obj/structure/cable/green{
@@ -25858,25 +25819,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/weapons/grauwolf)
-"dCb" = (
-/obj/effect/floor_decal/corner/dark_green{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled,
-/area/horizon/operations/commissary)
"dCc" = (
/obj/structure/window/reinforced{
dir = 4
@@ -26189,20 +26131,6 @@
},
/turf/simulated/floor/holofloor/carpet,
/area/horizon/holodeck/source_courtroom)
-"dDN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sortjunction/flipped{
- name = "Hydroponics";
- sortType = "Hydroponics"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/full,
-/area/horizon/hallway/primary/deck_2/fore)
"dDR" = (
/obj/structure/table/standard,
/obj/item/pen,
@@ -26900,28 +26828,6 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/unsimulated/floor,
/area/antag/mercenary)
-"dIA" = (
-/obj/structure/table/rack/retail_shelf{
- name = "storage shelf"
- },
-/obj/item/storage/box/unique/monkeycubes{
- pixel_x = -7;
- pixel_y = -7
- },
-/obj/item/storage/box/unique/monkeycubes{
- pixel_x = -7;
- pixel_y = -7
- },
-/obj/item/storage/toolbox/emergency{
- pixel_x = -4;
- pixel_y = 9
- },
-/obj/item/pipewrench,
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/rnd/xenoarch/storage)
"dIB" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -26960,6 +26866,25 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/tcommsat/entrance)
+"dII" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ maxhealth = 140
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/suit/hazmat/anomaly,
+/obj/item/clothing/mask/gas/alt,
+/obj/item/clothing/head/hazmat/anomaly,
+/obj/item/storage/box/gloves,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -22;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/safety/goggles/science,
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/anomaly_storage)
"dIJ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -27132,6 +27057,21 @@
/obj/structure/railing/mapped,
/turf/simulated/floor/tiled/dark,
/area/horizon/holodeck_control)
+"dJL" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"dJM" = (
/obj/structure/lattice/catwalk,
/obj/structure/railing/mapped,
@@ -27316,24 +27256,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/operations/starboard)
-"dLO" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 5
- },
-/obj/structure/table/rack,
-/obj/item/stack/material/steel{
- amount = 50
- },
-/obj/item/stack/material/steel{
- amount = 50
- },
-/obj/item/stack/material/steel{
- amount = 50
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/stack/rods/full,
-/turf/simulated/floor/tiled,
-/area/horizon/engineering/storage_eva)
"dLP" = (
/obj/machinery/computer/shuttle_control/merchant{
dir = 4
@@ -27631,20 +27553,6 @@
/obj/item/pen,
/turf/simulated/floor/carpet,
/area/horizon/command/bridge/meeting_room)
-"dNS" = (
-/obj/effect/floor_decal/corner/brown/full{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled,
-/area/horizon/operations/commissary)
"dNV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -27676,6 +27584,23 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenobiology/xenoflora)
+"dOi" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenobiology/xenoflora)
"dOn" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -27946,18 +27871,6 @@
/obj/machinery/light/small/emergency,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/wing/starboard)
-"dQc" = (
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/security/autopsy_laboratory)
"dQd" = (
/obj/effect/floor_decal/industrial/outline/grey,
/obj/machinery/portable_atmospherics/canister/air,
@@ -28000,6 +27913,17 @@
/obj/machinery/power/apc/north,
/turf/simulated/floor/tiled,
/area/horizon/operations/loading)
+"dQs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/substation/wing_port)
"dQy" = (
/obj/machinery/light/floor{
dir = 8
@@ -28257,26 +28181,6 @@
icon_state = "wood"
},
/area/centcom/specops)
-"dSw" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"dSx" = (
/obj/machinery/flasher{
id = "permflash";
@@ -28541,6 +28445,29 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/intrepid/interstitial)
+"dUX" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/atrium)
"dVi" = (
/obj/structure/platform{
dir = 8
@@ -28626,16 +28553,6 @@
/obj/structure/extinguisher_cabinet/east,
/turf/simulated/floor/tiled/white,
/area/horizon/service/kitchen)
-"dVR" = (
-/obj/machinery/constructable_frame/machine_frame,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/substation/wing_starboard)
"dVS" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -29300,29 +29217,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_2/central)
-"eaz" = (
-/obj/machinery/door/airlock/external{
- dir = 4;
- id_tag = "riso3";
- name = "Isolation C";
- req_access = list(65)
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/door/blast/regular/open{
- id = "iso_c";
- name = "Safety Blast Door"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/obj/effect/floor_decal/sign/c,
-/obj/structure/plasticflaps/airtight,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/isolation_c)
"eaC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -29469,6 +29363,21 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/command/heads/cmo)
+"ebE" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/atrium)
"ebG" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/effect/floor_decal/industrial/warning{
@@ -29785,36 +29694,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/auxatmos)
-"edI" = (
-/obj/structure/table/rack,
-/obj/item/storage/lockbox/anti_augment{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/item/storage/box/chemimp{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/item/storage/box/tactical/trackimp{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 10
- },
-/obj/machinery/requests_console/west{
- department = "Warden's Office";
- departmentType = 5;
- dir = 2;
- pixel_x = 0;
- pixel_y = -19
- },
-/obj/item/storage/box/led_collars{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/horizon/security/warden)
"edX" = (
/obj/structure/railing/mapped{
dir = 4
@@ -30284,25 +30163,6 @@
},
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/engineering/atmos/air)
-"ege" = (
-/obj/effect/floor_decal/corner/grey{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/engineer_maintenance/electric{
- dir = 1
- },
-/obj/structure/engineer_maintenance/pipe{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/horizon/service/bar)
"egn" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 9
@@ -30727,6 +30587,16 @@
/obj/machinery/power/apc/super/west,
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/atmos)
+"ejB" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/maintenance/deck_1/workshop)
"ejJ" = (
/obj/effect/floor_decal/industrial/warning,
/obj/effect/floor_decal/industrial/warning{
@@ -31275,23 +31145,6 @@
/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/reinforced,
/area/horizon/shuttle/canary)
-"eok" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 4
- },
-/obj/effect/floor_decal/spline/fancy/wood/cee{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -22
- },
-/turf/simulated/floor/wood,
-/area/horizon/command/bridge/upperdeck)
"eoy" = (
/obj/structure/bed/stool/chair/office/bridge/pilot{
dir = 1
@@ -31807,26 +31660,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/starboard)
-"esq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/library)
"ess" = (
/obj/effect/floor_decal/corner/dark_green/full{
dir = 8
@@ -31872,6 +31705,14 @@
},
/turf/simulated/floor/wood,
/area/horizon/hallway/primary/deck_3/central)
+"esA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/junction_compartment)
"esB" = (
/obj/structure/railing/mapped{
dir = 8
@@ -32298,6 +32139,17 @@
/obj/item/clothing/glasses/meson,
/turf/simulated/floor/tiled/dark/full,
/area/shuttle/mercenary)
+"ewx" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/hyper/north,
+/obj/effect/floor_decal/industrial/hatch/red,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/command/bridge/selfdestruct)
"ewy" = (
/obj/effect/floor_decal/corner/yellow{
dir = 1
@@ -33048,24 +32900,6 @@
/obj/structure/grille,
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/starboard/far)
-"eCr" = (
-/obj/machinery/light_switch{
- pixel_x = 8;
- pixel_y = -19
- },
-/obj/effect/floor_decal/corner/beige/full,
-/obj/machinery/light,
-/obj/machinery/power/apc/west,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/coatrack{
- pixel_x = -9;
- pixel_y = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/security/forensic_laboratory)
"eCu" = (
/obj/machinery/light/spot{
dir = 8
@@ -33478,6 +33312,17 @@
"eEZ" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/security/hallway)
+"eFb" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/test_range)
"eFd" = (
/obj/machinery/door/airlock/glass_centcom{
dir = 1;
@@ -33509,23 +33354,6 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/command/bridge/upperdeck)
-"eFw" = (
-/obj/structure/platform_stairs/full{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/junction_compartment)
"eFB" = (
/turf/simulated/wall,
/area/horizon/rnd/eva)
@@ -33700,6 +33528,15 @@
},
/turf/simulated/floor/wood,
/area/horizon/maintenance/deck_2/wing/starboard)
+"eGL" = (
+/obj/effect/floor_decal/corner_wide/lime{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/medical/ward)
"eGM" = (
/obj/item/book/manual/mass_spectrometry{
pixel_x = -6;
@@ -34062,24 +33899,6 @@
},
/turf/unsimulated/floor,
/area/antag/mercenary)
-"eJD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/stairwell/bridge/deck_2)
"eJE" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/structure/railing/mapped,
@@ -34130,20 +33949,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/hangar/starboard)
-"eKK" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/horizon/medical/psych)
"eKN" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/industrial/warning{
@@ -34215,6 +34020,22 @@
},
/turf/simulated/floor/holofloor/tiled,
/area/horizon/holodeck/source_lasertag)
+"eLF" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/atrium)
"eLG" = (
/obj/structure/cable/green,
/obj/machinery/power/apc/critical/south,
@@ -34450,6 +34271,26 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/full,
/area/horizon/security/interrogation)
+"eNu" = (
+/obj/machinery/firealarm/east,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/bed/handrail{
+ dir = 8
+ },
+/obj/machinery/alarm/shuttle/south,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/engineering)
"eNz" = (
/obj/effect/floor_decal/corner/red/diagonal,
/obj/machinery/turretid{
@@ -34548,17 +34389,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/central)
-"eOx" = (
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 9
- },
-/obj/machinery/power/apc/west,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/security/evidence_storage)
"eOC" = (
/obj/structure/closet/walllocker/emerglocker/south,
/obj/effect/floor_decal/corner/purple/full{
@@ -35207,16 +35037,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/heads/captain)
-"eTe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/operations/starboard)
"eTg" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -35352,6 +35172,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/atmos)
+"eUe" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/horizon/medical/psych)
"eUf" = (
/obj/effect/floor_decal/corner/dark_blue/full,
/turf/simulated/floor/tiled,
@@ -35705,18 +35544,6 @@
},
/turf/simulated/open/airless,
/area/horizon/exterior)
-"eWM" = (
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/extinguisher_cabinet/east,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/starboard_compartment)
"eWU" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/unsimulated/floor{
@@ -35745,6 +35572,34 @@
},
/turf/simulated/floor/tiled,
/area/horizon/shuttle/escape_pod/pod4)
+"eXk" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -19;
+ pixel_x = -6
+ },
+/obj/item/device/radio/intercom/south{
+ pixel_x = 14
+ },
+/turf/simulated/floor/wood,
+/area/horizon/command/heads/captain)
"eXt" = (
/obj/effect/floor_decal/corner/lime/diagonal{
dir = 8
@@ -36081,6 +35936,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/security/evidence_storage)
+"fag" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/stairwell/bridge/deck_2)
"fak" = (
/obj/structure/sign/securearea{
pixel_y = 32
@@ -36273,6 +36135,15 @@
icon_state = "dark_preview"
},
/area/centcom/control)
+"fbT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/rnd/xenoarch/anomaly_storage)
"fbX" = (
/obj/structure/shuttle_part/mercenary/small{
icon_state = "7,0"
@@ -36396,6 +36267,21 @@
"fdr" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/rnd/xenoarch/anomaly_storage)
+"fdt" = (
+/obj/structure/platform_stairs/full{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/junction_compartment)
"fdu" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 9
@@ -36546,21 +36432,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/horizon/operations/mining_main/refinery)
-"feo" = (
-/obj/structure/closet/crate/freezer{
- name = "Fridge"
- },
-/obj/item/storage/box/unique/freezer/organcooler,
-/obj/machinery/light/small,
-/obj/machinery/alarm/cold/north,
-/obj/effect/floor_decal/industrial/hatch/grey,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/horizon/medical/surgery/storage)
"fer" = (
/obj/structure/table/standard,
/obj/item/folder/purple,
@@ -36867,6 +36738,22 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/starboard/docks)
+"ffF" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Port Nacelle"
+ },
+/obj/effect/floor_decal/industrial/hatch_door/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/port_storage)
"ffJ" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/machinery/light/small/emergency,
@@ -36958,28 +36845,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/gen_treatment)
-"fgr" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/window/shuttle/scc_space_ship/cardinal,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/blast/shutters{
- dir = 4;
- id = "shutters_deck3_captain";
- name = "Safety Shutter"
- },
-/turf/simulated/floor/plating,
-/area/horizon/command/heads/captain)
"fgs" = (
/obj/machinery/chemical_dispenser/full{
dir = 1
@@ -36990,21 +36855,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/carpet/rubber,
/area/horizon/medical/pharmacy)
-"fgw" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/closet/crate/freezer/rations,
-/obj/machinery/power/apc/super/critical/west,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor,
-/area/horizon/command/bridge/aibunker)
"fgz" = (
/obj/machinery/washing_machine,
/obj/machinery/light{
@@ -37205,15 +37055,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/operations/warehouse)
-"fhX" = (
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_2/cargo_compartment)
"fie" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/light/floor,
@@ -37769,18 +37610,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/hallway/primary/deck_3/starboard/docks)
-"fmx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/substation/wing_port)
"fmD" = (
/obj/structure/table/rack,
/obj/random/loot,
@@ -38466,29 +38295,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenoarch/atrium)
-"fro" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/service/kitchen)
"frr" = (
/obj/machinery/light/small/emergency{
dir = 4;
@@ -38763,14 +38569,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/reactor/supermatter/waste)
-"ftF" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/operations/starboard)
"ftG" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/lattice/catwalk/indoor/grate,
@@ -39285,6 +39083,21 @@
},
/turf/simulated/floor/tiled/white,
/area/merchant_station)
+"fxX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/bed/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_compartment)
"fye" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -39348,20 +39161,6 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/tcommsat/entrance)
-"fyT" = (
-/obj/effect/floor_decal/corner/dark_blue/diagonal,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/flight_deck)
"fza" = (
/obj/structure/window/shuttle/scc_space_ship/cardinal,
/obj/structure/grille,
@@ -39433,24 +39232,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/hallway)
-"fzv" = (
-/obj/machinery/door/airlock/hatch{
- name = "Port Nacelle"
- },
-/obj/effect/floor_decal/industrial/hatch_door/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/port_storage)
"fzw" = (
/obj/effect/decal/fake_object{
color = "#ff0000";
@@ -39463,6 +39244,26 @@
icon_state = "desert4"
},
/area/horizon/holodeck/source_beach)
+"fzz" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/freezer/rations,
+/obj/item/reagent_containers/food/snacks/koisbar_clean,
+/obj/item/reagent_containers/food/snacks/koisbar_clean,
+/obj/item/storage/box/fancy/egg_box,
+/obj/item/reagent_containers/food/drinks/carton/milk,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/camera/network/intrepid{
+ dir = 1;
+ c_tag = "Intrepid - Buffet"
+ },
+/obj/machinery/power/apc/shuttle/west,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/buffet)
"fzC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40016,27 +39817,6 @@
/obj/machinery/alarm/south,
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/conference)
-"fDJ" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/horizon/medical/psych)
"fDN" = (
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
@@ -40088,6 +39868,23 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/port/far)
+"fEo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor,
+/area/horizon/maintenance/deck_3/aft/starboard)
"fEx" = (
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
@@ -40101,21 +39898,6 @@
},
/turf/simulated/open,
/area/horizon/medical/hallway/upper)
-"fEz" = (
-/obj/effect/floor_decal/corner/beige{
- dir = 5
- },
-/obj/structure/table/glass,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/storage/box/evidence{
- pixel_x = 7;
- pixel_y = 4
- },
-/obj/item/storage/box/unique/sharps,
-/turf/simulated/floor/tiled/white,
-/area/horizon/security/forensic_laboratory)
"fEA" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 9
@@ -40325,13 +40107,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenoarch/atrium)
-"fFZ" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/stairwell/bridge/deck_2)
"fGf" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -40523,12 +40298,6 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/maintenance/deck_3/aft/holodeck)
-"fHC" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/table/stone/marble,
-/obj/machinery/alarm/shuttle/intrepid/south,
-/turf/simulated/floor/tiled/white,
-/area/horizon/shuttle/intrepid/buffet)
"fHU" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -40608,24 +40377,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/gen_treatment)
-"fIC" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/test_range)
"fIE" = (
/obj/effect/floor_decal/corner/yellow{
dir = 6
@@ -41157,6 +40908,28 @@
},
/turf/simulated/floor/wood,
/area/merchant_station)
+"fMa" = (
+/obj/effect/floor_decal/corner/dark_green{
+ dir = 10
+ },
+/obj/structure/closet/walllocker/medical/firstaid{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/spline/plain/lime{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline_door/medical,
+/turf/simulated/floor/tiled,
+/area/horizon/service/hydroponics/lower)
"fMf" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/floor_decal/industrial/warning,
@@ -41943,6 +41716,25 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenobiology/xenoflora)
+"fRs" = (
+/obj/structure/curtain/black{
+ icon_state = "open";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/bar)
"fRw" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 9
@@ -42270,29 +42062,6 @@
},
/turf/simulated/floor/tiled,
/area/shuttle/merchant)
-"fTN" = (
-/obj/structure/table/rack,
-/obj/item/stack/material/steel/full,
-/obj/item/stack/material/glass/full,
-/obj/item/stack/material/glass/reinforced/full,
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/material/graphite/full,
-/obj/item/stack/material/steel/full,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/machinery/camera/network/intrepid{
- c_tag = "Intrepid - Port Compartment";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_compartment)
"fTQ" = (
/obj/effect/floor_decal/corner_wide/paleblue/full{
dir = 8
@@ -42441,6 +42210,15 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/auxiliary)
+"fUs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/junction_compartment)
"fUv" = (
/obj/effect/floor_decal/corner/mauve{
dir = 9
@@ -42520,6 +42298,28 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/command/bridge/aibunker)
+"fUT" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ id_tag = "riso2";
+ name = "Isolation B";
+ req_access = list(47)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "iso_b";
+ name = "Safety Blast Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/sign/b,
+/obj/structure/plasticflaps/airtight,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/isolation_b)
"fUU" = (
/obj/structure/bed/stool/chair/shuttle,
/obj/structure/closet/walllocker/emerglocker{
@@ -42659,25 +42459,6 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/starboard)
-"fVP" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/atrium)
"fVU" = (
/turf/unsimulated/wall/darkshuttlewall,
/area/centcom/control)
@@ -43667,23 +43448,6 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/medical/hallway)
-"gcW" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/structure/bed/handrail{
- dir = 8
- },
-/obj/machinery/power/apc/shuttle/canary/east,
-/obj/machinery/atmospherics/binary/pump/fuel{
- dir = 1;
- name = "Fuel Tank to Thrusters"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/canary)
"gdb" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -43694,10 +43458,6 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/holodeck)
-"gdj" = (
-/obj/machinery/alarm/west,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/stairwell/bridge/deck_2)
"gdm" = (
/obj/effect/mist,
/turf/simulated/floor/exoplanet/water/shallow{
@@ -44038,6 +43798,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/hangar/auxiliary)
+"ggO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/library)
"ggP" = (
/turf/simulated/wall/shuttle/space_ship,
/area/shuttle/burglar)
@@ -44503,13 +44278,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/stairwell/port/deck_3)
-"gjJ" = (
-/obj/structure/stairs/north,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/stairwell/bridge/deck_2)
"gjT" = (
/obj/structure/railing/mapped{
name = "adjusted railing"
@@ -44561,20 +44329,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/central)
-"gki" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/bar/backroom)
"gkj" = (
/obj/effect/floor_decal/spline/fancy/wood/corner,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -44738,20 +44492,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/hallway/primary/deck_2/central)
-"glr" = (
-/obj/effect/floor_decal/corner/dark_green{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/horizon/hallway/primary/deck_2/fore)
"glt" = (
/obj/structure/railing/mapped{
dir = 8
@@ -45220,6 +44960,12 @@
/obj/structure/closet/toolcloset,
/turf/simulated/floor/tiled,
/area/horizon/maintenance/deck_2/wing/starboard/far)
+"gpe" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/stairwell/bridge/deck_2)
"gpf" = (
/obj/effect/floor_decal/corner/brown,
/obj/structure/table/reinforced/steel,
@@ -45442,6 +45188,26 @@
/obj/effect/step_trigger/thrower/shuttle/south,
/turf/space/transit/east,
/area/template_noop)
+"gqK" = (
+/obj/machinery/atmospherics/portables_connector/aux{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/shuttle/west,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/quark/cargo_hold)
"gqL" = (
/obj/effect/floor_decal/corner/yellow{
dir = 8
@@ -45908,6 +45674,16 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled,
/area/horizon/stairwell/bridge/deck_3)
+"gua" = (
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/north,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/stairwell/bridge/deck_2)
"gue" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -46028,24 +45804,6 @@
icon_state = "wood"
},
/area/centcom/legion)
-"guW" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/hangar/port)
"guY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -46334,6 +46092,21 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/aft)
+"gxl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/bed/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/starboard_compartment)
"gxp" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 9
@@ -46738,6 +46511,19 @@
/obj/effect/decal/fake_object/light_source/invisible,
/turf/simulated/abyss,
/area/antag/ninja)
+"gAx" = (
+/obj/machinery/door/airlock/glass{
+ dir = 1;
+ name = "Horizon Dining Hall"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/full,
+/area/horizon/hallway/primary/deck_2/fore)
"gAz" = (
/obj/structure/closet/crate/medical,
/obj/item/roller,
@@ -47352,24 +47138,6 @@
/obj/effect/floor_decal/corner/dark_green/full,
/turf/simulated/floor/tiled,
/area/horizon/stairwell/port/deck_3)
-"gFd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Bar";
- sortType = "Bar"
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/bar)
"gFh" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 4;
@@ -47655,29 +47423,6 @@
},
/turf/unsimulated/floor,
/area/antag/burglar)
-"gHn" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "12-0"
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- dir = 8
- },
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/obj/structure/railing/mapped,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_2/wing/starboard/near)
"gHp" = (
/obj/structure/closet/secure_closet/cabinet{
anchored = 1;
@@ -48341,6 +48086,12 @@
},
/turf/simulated/floor/marble,
/area/horizon/holodeck/source_trinary)
+"gLS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/operations/starboard)
"gLX" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -48540,30 +48291,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/operations/mining_main/eva)
-"gNj" = (
-/obj/structure/table/wood,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/item/reagent_containers/food/condiment/shaker/salt{
- pixel_x = -6;
- pixel_y = 16
- },
-/obj/item/reagent_containers/food/condiment/shaker/peppermill{
- pixel_x = 4;
- pixel_y = 16
- },
-/obj/item/flame/candle{
- pixel_y = 16
- },
-/obj/machinery/power/outlet,
-/obj/machinery/power/apc/north,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/dining_hall)
"gNn" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -49411,6 +49138,13 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/full,
/area/horizon/hallway/primary/deck_3/central)
+"gTb" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/low/west,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/maintenance/deck_1/workshop)
"gTc" = (
/obj/machinery/atmospherics/portables_connector{
dir = 1
@@ -49532,6 +49266,18 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/horizon/operations/lobby)
+"gUm" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/north,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/crate/drinks,
+/obj/effect/floor_decal/industrial/outline/service,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/bar)
"gUr" = (
/obj/structure/sign/emergency/exit{
dir = 8;
@@ -49633,20 +49379,6 @@
/obj/machinery/portable_atmospherics/hydroponics/soil,
/turf/simulated/floor/grass/no_edge,
/area/horizon/rnd/xenobiology/xenoflora)
-"gVC" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/horizon/medical/psych)
"gVD" = (
/obj/machinery/door/blast/regular/open{
dir = 4;
@@ -49921,6 +49653,15 @@
},
/turf/simulated/floor/carpet/red,
/area/horizon/service/dining_hall)
+"gWV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"gWX" = (
/obj/item/modular_computer/console/preset/civilian{
dir = 8;
@@ -50089,6 +49830,23 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/operations/starboard/far)
+"gYa" = (
+/obj/structure/table/steel,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm/south,
+/obj/effect/floor_decal/corner/dark_blue/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/rods/full,
+/obj/item/stack/rods/full,
+/obj/item/stack/material/glass/reinforced/full,
+/obj/item/stack/material/glass/reinforced/full,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/storage/eva)
"gYb" = (
/obj/structure/table/wood/gamblingtable,
/obj/item/flame/lighter/random{
@@ -50268,6 +50026,46 @@
/obj/machinery/alarm/east,
/turf/simulated/floor/tiled/dark,
/area/horizon/command/teleporter)
+"gZh" = (
+/obj/machinery/door/airlock/service{
+ id_tag = "hydro_hazard_out";
+ name = "Hazardous Specimens";
+ req_access = list(35);
+ frequency = 1379
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/hatch_door/yellow{
+ dir = 8
+ },
+/obj/effect/map_effect/door_helper/lock,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "hydroponics_hazard";
+ name = "Hazardous Specimens Airlock Access Console";
+ pixel_x = 38;
+ tag_exterior_door = "hydro_hazard_out";
+ tag_interior_door = "hydro_hazard_in";
+ dir = 1;
+ pixel_y = 9
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "hydroponics_hazard";
+ name = "Hazardous Specimens Airlock Button";
+ pixel_x = 27;
+ req_one_access = list(35);
+ dir = 1;
+ pixel_y = 9
+ },
+/obj/structure/plasticflaps/airtight,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/hydroponics/hazard)
"gZp" = (
/obj/machinery/power/radial_floodlight,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -50574,30 +50372,6 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/shuttle/merchant)
-"hbc" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/obj/structure/closet/crate,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/bag/plasticbag,
-/obj/item/storage/box/plasticbag,
-/obj/item/storage/box/unique/papersack,
-/obj/item/storage/box/unique/papersack,
-/obj/item/storage/box/unique/papersack,
-/obj/item/storage/box/unique/papersack,
-/obj/item/storage/box/unique/papersack,
-/obj/item/storage/box/unique/papersack,
-/obj/item/storage/box/unique/papersack,
-/obj/item/storage/box/unique/papersack,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_2/service/port)
"hbe" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -51245,18 +51019,6 @@
"hgz" = (
/turf/simulated/floor/wood,
/area/horizon/service/chapel/main)
-"hgA" = (
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/hyper/north,
-/obj/effect/floor_decal/industrial/hatch/red,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/command/bridge/selfdestruct)
"hgF" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -51786,6 +51548,20 @@
},
/turf/unsimulated/floor/dark_monotile,
/area/antag/actor)
+"hkJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/bed/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/port_compartment)
"hkQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -52170,6 +51946,19 @@
/obj/structure/flora/tree/pine,
/turf/simulated/floor/holofloor/snow,
/area/horizon/holodeck/source_snowfield)
+"hni" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/wood,
+/area/horizon/rnd/xenoarch/presentation)
"hnm" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
@@ -52328,6 +52117,19 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenobiology/foyer)
+"hnZ" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 9
+ },
+/obj/structure/closet/walllocker/firecloset{
+ pixel_x = -25
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/storage)
"hoc" = (
/obj/effect/floor_decal/corner/mauve/full{
dir = 8
@@ -52372,6 +52174,17 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/engineering/reactor/indra/monitoring)
+"hov" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "warehouse_package_conveyor"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm/south,
+/turf/simulated/floor/plating,
+/area/horizon/operations/package_conveyors)
"hoE" = (
/obj/effect/floor_decal/industrial/warning{
dir = 10
@@ -52540,23 +52353,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/shuttle/canary)
-"hpK" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 7
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -22
- },
-/turf/simulated/floor/wood,
-/area/horizon/command/heads/xo)
"hpM" = (
/obj/effect/floor_decal/corner/blue{
dir = 6
@@ -52582,27 +52378,6 @@
},
/turf/unsimulated/floor,
/area/antag/mercenary)
-"hpR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "2-8";
- d1 = 2;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/library)
"hpW" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black{
dir = 4
@@ -52702,39 +52477,6 @@
/obj/structure/closet/firecloset,
/turf/simulated/floor/tiled,
/area/horizon/crew/resdeck/living_quarters_lift)
-"hqG" = (
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = 24;
- pixel_x = 9
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/coatrack{
- pixel_y = 23;
- pixel_x = -6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/horizon/command/heads/hos)
"hqK" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 5
@@ -52978,6 +52720,12 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/auxiliary)
+"hrV" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/maintenance/deck_1/workshop)
"hrW" = (
/obj/structure/railing/mapped{
dir = 8
@@ -53123,21 +52871,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/crew/lounge)
-"hsX" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_3/security/starboard)
"hsY" = (
/obj/effect/floor_decal/corner/red{
dir = 5;
@@ -53464,6 +53197,50 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/service/custodial/disposals/deck_1)
+"hvi" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/firingpins{
+ pixel_x = 12;
+ pixel_y = -6
+ },
+/obj/item/storage/box/handcuffs{
+ pixel_x = 12;
+ pixel_y = 6
+ },
+/obj/item/storage/box/tactical/teargas{
+ pixel_y = -6
+ },
+/obj/item/storage/box/tactical/teargas{
+ pixel_y = 6
+ },
+/obj/item/storage/box/tactical/flashbangs{
+ pixel_x = -12;
+ pixel_y = -6
+ },
+/obj/item/storage/box/tactical/flashbangs{
+ pixel_x = -12;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/security/warden)
+"hvn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/lino,
+/area/horizon/service/dining_hall)
"hvt" = (
/obj/machinery/atmospherics/portables_connector/fuel{
dir = 4
@@ -53615,6 +53392,22 @@
},
/turf/simulated/floor/tiled,
/area/merchant_station/warehouse)
+"hwz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/tiled/dark/full/airless,
+/area/horizon/command/bridge/controlroom)
"hwN" = (
/obj/structure/closet/secure_closet/hangar_tech,
/obj/effect/floor_decal/corner/brown{
@@ -53741,6 +53534,45 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/reactor/supermatter/waste)
+"hxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/primary/deck_2/fore)
+"hxA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm/south{
+ alarm_id = 1503;
+ breach_detection = 0;
+ rcon_setting = 3;
+ report_danger_level = 0;
+ req_one_access = list(7,47,24,11)
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"hxC" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
@@ -53987,19 +53819,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/port)
-"hzq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_storage)
"hzw" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
@@ -54085,20 +53904,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/command/heads/chief)
-"hAl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 9
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/horizon/service/bar)
"hAo" = (
/turf/unsimulated/wall/fakepdoor{
dir = 4
@@ -55054,27 +54859,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/engineering/locker_room)
-"hGY" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/horizon/medical/paramedic)
"hGZ" = (
/obj/effect/floor_decal/corner/teal/full{
dir = 4
@@ -55165,26 +54949,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/service/library)
-"hHL" = (
-/obj/effect/floor_decal/corner/dark_green{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled,
-/area/horizon/hallway/primary/deck_2/fore)
"hHM" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/disposalpipe/segment,
@@ -55202,6 +54966,14 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/crew/washroom/deck_2)
+"hHQ" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm/shuttle/east,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/port_storage)
"hHR" = (
/obj/machinery/vending/zora{
name = "Jacked Zo'ra Soda";
@@ -55446,6 +55218,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/shuttle/merchant)
+"hJT" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"hJU" = (
/obj/structure/table/rack,
/obj/item/device/suit_cooling_unit,
@@ -55529,6 +55320,14 @@
},
/turf/simulated/floor/reinforced/airless,
/area/horizon/engineering/reactor/indra/mainchamber)
+"hKt" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/alarm/north,
+/obj/structure/closet/secure_closet/xo2,
+/turf/simulated/floor/wood,
+/area/horizon/command/heads/xo)
"hKu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -55985,20 +55784,6 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/full,
/area/horizon/medical/reception)
-"hNd" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/shells/beanbags,
-/obj/item/wrench,
-/obj/item/paper{
- info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest.";
- name = "Shotgun permit"
- },
-/obj/machinery/alarm/west,
-/obj/item/device/quikpay,
-/obj/item/storage/box/fancy/matches,
-/obj/item/flame/lighter/zippo,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/service/bar/backroom)
"hNe" = (
/obj/structure/window/reinforced/holowindow{
dir = 8
@@ -57222,26 +57007,6 @@
/obj/effect/map_effect/window_spawner/full/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/crew/vacantoffice)
-"hYE" = (
-/obj/machinery/atmospherics/portables_connector/aux{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/shuttle/quark/west,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/quark/cargo_hold)
"hYI" = (
/turf/simulated/wall,
/area/horizon/engineering/lobby)
@@ -57261,31 +57026,6 @@
/obj/machinery/power/apc/super/critical/north,
/turf/simulated/floor/tiled,
/area/horizon/engineering/bluespace_drive)
-"hYO" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/reagentgrinder{
- pixel_x = 6;
- pixel_y = 9
- },
-/obj/item/material/knife{
- pixel_x = -9;
- pixel_y = -14
- },
-/obj/item/storage/box/large/produce{
- pixel_x = 3;
- pixel_y = -11
- },
-/turf/unsimulated/floor,
-/area/centcom/bar)
-"hYP" = (
-/obj/structure/table/rack,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/machinery/alarm/east,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenobiology)
"hYR" = (
/obj/effect/decal/fake_object{
dir = 4;
@@ -57429,20 +57169,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/intrepid)
-"hZN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"hZR" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/machinery/light/small/emergency{
@@ -57523,43 +57249,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/service/custodial)
-"iaO" = (
-/obj/item/device/gps/stationary/mining_shuttle{
- pixel_x = -22;
- pixel_y = -8
- },
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/structure/table/rack,
-/obj/item/clothing/head/helmet/pilot{
- pixel_x = -6;
- pixel_y = 7
- },
-/obj/item/device/radio{
- pixel_x = 8;
- pixel_y = 3
- },
-/obj/machinery/cell_charger,
-/obj/random/powercell{
- pixel_x = -3;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 10
- },
-/obj/item/storage/firstaid/regular,
-/obj/item/material/hatchet/machete/steel,
-/obj/item/material/hatchet/machete/steel,
-/obj/item/clothing/accessory/holster/utility/machete,
-/obj/item/clothing/accessory/holster/utility/machete,
-/obj/item/tent/mining,
-/obj/machinery/alarm/shuttle/spark/west,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/mining)
"iaR" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 10
@@ -58040,6 +57729,19 @@
/obj/item/device/flashlight/lantern,
/turf/simulated/floor/holofloor/wood,
/area/horizon/holodeck/source_sauna)
+"idV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"iea" = (
/obj/effect/floor_decal/corner_wide/yellow/full{
dir = 1
@@ -58678,19 +58380,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos/air)
-"ijt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"ijw" = (
/obj/machinery/alarm/east,
/obj/effect/floor_decal/corner_wide/yellow{
@@ -58751,34 +58440,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/operations/break_room)
-"ijR" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/door/airlock/security{
- dir = 4;
- id_tag = "HoSdoor";
- name = "Head of Security's Office";
- req_access = list(58);
- secured_wires = 1
- },
-/turf/simulated/floor/tiled,
-/area/horizon/command/heads/hos)
"ika" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -59140,6 +58801,14 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/horizon/stairwell/engineering/deck_1)
+"ilH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/dining_hall)
"ilI" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/effect/floor_decal/corner/mauve{
@@ -59252,6 +58921,17 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/heads/captain)
+"imq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/command/bridge/selfdestruct)
"ims" = (
/obj/structure/shuttle_part/scc/scout{
icon_state = "1,6"
@@ -59288,18 +58968,6 @@
icon_state = "white"
},
/area/centcom/holding)
-"imM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/starboard_compartment)
"imS" = (
/obj/machinery/conveyor_switch/oneway{
id = "merchant_receiving";
@@ -59317,15 +58985,6 @@
},
/turf/simulated/floor/wood,
/area/shuttle/skipjack)
-"imW" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/alarm/shuttle/intrepid/north,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_compartment)
"inb" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -59427,17 +59086,6 @@
icon_state = "wood"
},
/area/centcom/legion/hangar5)
-"inF" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled,
-/area/horizon/operations/commissary)
"inP" = (
/obj/effect/floor_decal/spline/fancy/wood/cee,
/obj/structure/flora/ausbushes/ywflowers,
@@ -59529,6 +59177,18 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/horizon/command/heads/hos)
+"ioq" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/atrium)
"iot" = (
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-2-f"
@@ -59611,6 +59271,24 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenobiology)
+"ioH" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"ioM" = (
/obj/structure/table/steel,
/obj/item/storage/box/bodybags,
@@ -60671,6 +60349,27 @@
/obj/effect/map_effect/window_spawner/full/reinforced/indestructible,
/turf/unsimulated/floor/plating,
/area/antag/raider)
+"iwu" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ id_tag = "riso3";
+ name = "Isolation C";
+ req_access = list(65)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "iso_c";
+ name = "Safety Blast Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/sign/c,
+/obj/structure/plasticflaps/airtight,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/isolation_c)
"iwv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -60786,6 +60485,20 @@
},
/turf/simulated/floor/shuttle/black,
/area/shuttle/specops)
+"ixB" = (
+/obj/machinery/door/firedoor{
+ req_one_access = list(24,11,67,73)
+ },
+/obj/effect/floor_decal/industrial/hatch_door/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/main_compartment)
"ixC" = (
/turf/unsimulated/floor,
/area/centcom/evac)
@@ -61225,30 +60938,6 @@
},
/turf/simulated/floor/plating,
/area/merchant_station/warehouse)
-"iAw" = (
-/obj/effect/floor_decal/corner/dark_green{
- dir = 10
- },
-/obj/structure/closet/walllocker/medical/firstaid{
- pixel_y = -32
- },
-/obj/effect/floor_decal/spline/plain/lime{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline_door/medical,
-/turf/simulated/floor/tiled,
-/area/horizon/service/hydroponics/lower)
"iAy" = (
/obj/effect/decal/fake_object{
color = "#545c68";
@@ -62267,6 +61956,13 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/bridge/meeting_room)
+"iIQ" = (
+/obj/machinery/firealarm/south{
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/corner/dark_green/full,
+/turf/simulated/floor/tiled,
+/area/horizon/engineering/hallway/fore)
"iIR" = (
/obj/item/device/flashlight/lamp/lava/purple{
pixel_y = 8;
@@ -62361,6 +62057,20 @@
},
/turf/simulated/floor/reinforced,
/area/horizon/command/bridge/controlroom)
+"iJG" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/junction_compartment)
"iJW" = (
/obj/structure/tank_wall/phoron{
density = 0;
@@ -62734,6 +62444,22 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/heads/xo)
+"iNn" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/reagentgrinder{
+ pixel_x = 6;
+ pixel_y = 9
+ },
+/obj/item/material/knife{
+ pixel_x = -9;
+ pixel_y = -14
+ },
+/obj/item/storage/box/large/produce{
+ pixel_x = 3;
+ pixel_y = -11
+ },
+/turf/unsimulated/floor,
+/area/centcom/bar)
"iNt" = (
/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{
id = "rep"
@@ -62811,14 +62537,6 @@
/obj/structure/closet/crate/miningcart,
/turf/simulated/floor/tiled/dark,
/area/horizon/rnd/xenoarch/anomaly_storage)
-"iNY" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/carpet/rubber,
-/area/horizon/maintenance/deck_1/workshop)
"iOa" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 9
@@ -62920,6 +62638,18 @@
icon_state = "desert"
},
/area/centcom/shared_dream)
+"iOL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/bar/backroom)
"iON" = (
/obj/effect/floor_decal/corner/purple/full{
dir = 4
@@ -63352,18 +63082,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/horizon/engineering/atmos/turbine)
-"iRI" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/operations/starboard)
"iRU" = (
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/reactor/indra/mainchamber)
@@ -63560,6 +63278,36 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/horizon/maintenance/substation/wing_starboard)
+"iTo" = (
+/obj/structure/table/rack,
+/obj/item/storage/lockbox/anti_augment{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/storage/box/chemimp{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/storage/box/tactical/trackimp{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 10
+ },
+/obj/machinery/requests_console/west{
+ department = "Warden's Office";
+ departmentType = 5;
+ dir = 2;
+ pixel_x = 0;
+ pixel_y = -19
+ },
+/obj/item/storage/box/led_collars{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/security/warden)
"iTp" = (
/obj/effect/floor_decal/corner_wide/green/full{
dir = 4
@@ -63910,6 +63658,17 @@
"iWb" = (
/turf/simulated/floor/exoplanet/grass,
/area/centcom/shared_dream)
+"iWc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/starboard_compartment)
"iWk" = (
/obj/effect/floor_decal/industrial/hatch/red,
/obj/effect/floor_decal/industrial/warning{
@@ -64045,30 +63804,6 @@
name = "thruster mount"
},
/area/horizon/engineering/atmos/propulsion/starboard)
-"iWZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/firealarm/west{
- dir = 1;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/representative_two)
"iXc" = (
/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor,
/obj/structure/cable/green,
@@ -64395,10 +64130,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenobiology)
-"iZf" = (
-/obj/machinery/atm,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/service/bar)
"iZq" = (
/obj/machinery/door/airlock{
dir = 1;
@@ -64979,6 +64710,17 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/reactor/indra/mainchamber)
+"jdf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/storage)
"jdp" = (
/obj/effect/floor_decal/spline/plain{
dir = 10
@@ -64997,6 +64739,15 @@
},
/turf/simulated/wall,
/area/horizon/operations/office)
+"jdB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"jdJ" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -66936,18 +66687,6 @@
icon_state = "beachcorner"
},
/area/centcom/shared_dream)
-"jse" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"jsi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -66991,6 +66730,30 @@
/obj/vehicle/train/cargo/engine/pussywagon,
/turf/simulated/floor/tiled/dark,
/area/horizon/service/custodial)
+"jsA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/closet/crate,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/bag/plasticbag,
+/obj/item/storage/box/plasticbag,
+/obj/item/storage/box/unique/papersack,
+/obj/item/storage/box/unique/papersack,
+/obj/item/storage/box/unique/papersack,
+/obj/item/storage/box/unique/papersack,
+/obj/item/storage/box/unique/papersack,
+/obj/item/storage/box/unique/papersack,
+/obj/item/storage/box/unique/papersack,
+/obj/item/storage/box/unique/papersack,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_2/service/port)
"jsF" = (
/obj/structure/lattice/catwalk,
/obj/structure/railing/mapped,
@@ -67049,6 +66812,19 @@
/obj/effect/landmark/actor_spawn,
/turf/unsimulated/floor/wood,
/area/antag/actor)
+"jti" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/bed/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_compartment)
"jtk" = (
/turf/simulated/wall/shuttle/scc,
/area/horizon/shuttle/intrepid/buffet)
@@ -67165,18 +66941,6 @@
dir = 1
},
/area/antag/ninja)
-"jum" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/diagonal,
-/obj/machinery/power/apc/super/north,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/holodeck_control)
"jup" = (
/obj/structure/closet/crate,
/obj/item/stock_parts/matter_bin,
@@ -67389,14 +67153,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/holodeck_control/beta)
-"jvL" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/operations/starboard)
"jvO" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
@@ -67488,52 +67244,6 @@
icon_state = "dark_preview"
},
/area/centcom/holding)
-"jwq" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/storage/toolbox/electrical{
- pixel_y = 5
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_y = -2
- },
-/obj/item/device/multitool,
-/obj/item/hoist_kit{
- pixel_y = 7
- },
-/obj/structure/table/rack,
-/obj/item/device/binoculars/high_power{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/device/radio,
-/obj/item/device/radio,
-/obj/item/device/flashlight/flare,
-/obj/item/device/flashlight/flare,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 28;
- pixel_y = 13
- },
-/obj/item/crowbar/red,
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/machinery/camera/network/canary{
- c_tag = "Canary - Main Compartment";
- dir = 1
- },
-/obj/item/storage/bag/inflatable,
-/obj/item/device/gps/stationary/sccv_canary{
- pixel_x = 23;
- pixel_y = -9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 5
- },
-/obj/machinery/alarm/shuttle/canary/south,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/canary)
"jwt" = (
/obj/effect/decal/fake_object{
color = "#545c68";
@@ -67672,17 +67382,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/storage/secure)
-"jxf" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/power/apc/low/north,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor,
-/area/horizon/maintenance/deck_3/aft/starboard/far)
"jxg" = (
/obj/structure/railing/mapped{
dir = 1
@@ -67739,28 +67438,6 @@
},
/turf/simulated/floor/reinforced,
/area/horizon/rnd/xenoarch/isolation_b)
-"jxT" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 6
- },
-/obj/structure/table/rack,
-/obj/item/stack/material/glass{
- amount = 50
- },
-/obj/item/stack/material/glass{
- amount = 50
- },
-/obj/item/stack/material/glass{
- amount = 50
- },
-/obj/item/stack/material/glass/phoronrglass{
- amount = 20;
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/horizon/engineering/storage_eva)
"jya" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/fake_object{
@@ -68079,22 +67756,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/rnd/xenoarch/presentation)
-"jAr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 8
- },
-/obj/structure/bed/stool/chair/shuttle/double{
- pixel_x = 8
- },
-/obj/structure/bed/stool/chair/shuttle/double{
- pixel_x = -8
- },
-/obj/effect/floor_decal/spline/plain/black{
- dir = 1
- },
-/obj/machinery/alarm/shuttle/intrepid/east,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/main_compartment)
"jAs" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 5
@@ -68279,15 +67940,6 @@
/obj/random/junk,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/maintenance/deck_1/auxatmos)
-"jBH" = (
-/obj/structure/closet/crate,
-/obj/item/stack/material/steel{
- max_amount = 25
- },
-/obj/item/stack/rods/full,
-/obj/item/stack/packageWrap,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/reactor/indra/office)
"jBK" = (
/obj/effect/floor_decal/corner/blue{
dir = 4
@@ -68423,23 +68075,6 @@
/obj/structure/sign/directions/dock,
/turf/unsimulated/wall/darkshuttlewall,
/area/centcom/spawning)
-"jCz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/horizon/hallway/primary/deck_2/fore)
"jCA" = (
/obj/machinery/door/airlock/centcom{
name = "The Big Empty";
@@ -69120,19 +68755,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/unsimulated/floor/monotile,
/area/antag/jockey)
-"jHH" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/test_range)
"jHI" = (
/obj/structure/disposalpipe/segment{
icon_state = "pipe-c"
@@ -69187,25 +68809,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/shuttle/intrepid/engineering)
-"jHW" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenobiology/xenoflora)
"jHY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -70190,6 +69793,23 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/aft)
+"jOP" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/structure/bed/handrail{
+ dir = 8
+ },
+/obj/machinery/power/apc/shuttle/east,
+/obj/machinery/atmospherics/binary/pump/fuel{
+ dir = 1;
+ name = "Fuel Tank to Thrusters"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/canary)
"jOZ" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 5
@@ -70216,22 +69836,6 @@
},
/turf/unsimulated/floor,
/area/antag/mercenary)
-"jPm" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/valve/digital/open{
- dir = 4;
- name = "Isolation C"
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/atrium)
"jPq" = (
/obj/structure/table/stone/marble,
/obj/machinery/chemical_dispenser/bar_soft/full{
@@ -70268,17 +69872,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/command/bridge/upperdeck)
-"jPC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/port_compartment)
"jPD" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/door/airlock/glass_security{
@@ -70404,6 +69997,25 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/checkpoint2)
+"jPY" = (
+/obj/structure/table/rack,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/material/glass/reinforced/full,
+/obj/item/stack/material/graphite/full,
+/obj/item/stack/material/steel/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/machinery/camera/network/intrepid{
+ c_tag = "Intrepid - Port Compartment";
+ dir = 1
+ },
+/obj/item/stack/rods/full,
+/obj/item/stack/rods/full,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_compartment)
"jPZ" = (
/obj/machinery/light/floor{
dir = 4
@@ -70596,6 +70208,22 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/shuttle/skipjack)
+"jRW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/structure/bed/stool/chair/shuttle/double{
+ pixel_x = 8
+ },
+/obj/structure/bed/stool/chair/shuttle/double{
+ pixel_x = -8
+ },
+/obj/effect/floor_decal/spline/plain/black{
+ dir = 1
+ },
+/obj/machinery/alarm/shuttle/east,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/main_compartment)
"jRX" = (
/obj/machinery/light{
dir = 4
@@ -70648,20 +70276,6 @@
},
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/starboard/far)
-"jSC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/service{
- c_tag = "Dinner - Kitchen Stairwell";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/stairwell/bridge/deck_2)
"jSG" = (
/obj/structure/flora/log_bench{
dir = 1
@@ -71374,6 +70988,23 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/starboard)
+"jXT" = (
+/obj/effect/floor_decal/corner_wide/green{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner_wide/green{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/device/mass_spectrometer{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/item/storage/box/unique/sharps{
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/medical/exam)
"jXY" = (
/obj/structure/railing/mapped{
dir = 4
@@ -71425,24 +71056,6 @@
/obj/structure/platform_stairs/full/south_north_cap,
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenoarch/atrium)
-"jYF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/horizon/maintenance/deck_3/aft/starboard)
"jYG" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "CCIA Bodyguard Primary";
@@ -71509,17 +71122,6 @@
},
/turf/unsimulated/floor,
/area/centcom/evac)
-"jZh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/full,
-/area/horizon/hallway/primary/deck_2/fore)
"jZk" = (
/obj/item/modular_computer/console/preset/command/captain{
dir = 1
@@ -71647,6 +71249,21 @@
/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/wood,
/area/horizon/security/meeting_room)
+"jZV" = (
+/obj/effect/floor_decal/corner/dark_blue/diagonal,
+/obj/structure/bed/handrail,
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/shuttle/north,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/flight_deck)
"jZZ" = (
/obj/structure/bed/stool/padded/beige,
/turf/unsimulated/floor/wood,
@@ -71965,6 +71582,12 @@
},
/turf/simulated/wall/elevator,
/area/centcom/legion)
+"kbR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/green,
+/area/horizon/medical/psych)
"kbY" = (
/obj/structure/table/steel,
/obj/item/storage/belt/utility,
@@ -72345,20 +71968,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/hallway/upper)
-"kfd" = (
-/obj/machinery/alarm/west{
- dir = 2;
- pixel_x = 0
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "warehouse_package_conveyor"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/horizon/operations/package_conveyors)
"kfh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -72390,19 +71999,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/port)
-"kfv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/dining_hall)
"kfw" = (
/obj/effect/floor_decal/spline/plain,
/turf/unsimulated/floor,
@@ -72522,25 +72118,6 @@
/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/starboard/far)
-"kgE" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/chemical_dispenser/bar_alc/full{
- pixel_y = 21
- },
-/obj/item/storage/box/shells/trackingslugs{
- pixel_x = 3
- },
-/obj/item/storage/box/shells/stunshells{
- pixel_x = 3
- },
-/obj/item/storage/box/shells/practiceshells{
- pixel_x = 4
- },
-/obj/random/booze{
- pixel_x = -11
- },
-/turf/unsimulated/floor/monotile,
-/area/antag/loner)
"kgG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -72651,6 +72228,22 @@
/obj/effect/floor_decal/industrial/warning/full,
/turf/simulated/floor/plating,
/area/horizon/operations/mining_main/refinery)
+"kho" = (
+/obj/structure/bed/stool/chair/shuttle/double{
+ pixel_x = -8
+ },
+/obj/structure/bed/stool/chair/shuttle/double{
+ pixel_x = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/black{
+ dir = 10
+ },
+/obj/machinery/alarm/shuttle/north,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/starboard_compartment)
"khq" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -73273,6 +72866,20 @@
/obj/structure/bed/stool/bar/padded/red,
/turf/simulated/floor/wood,
/area/horizon/service/bar)
+"klU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Kitchen Stairwell";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/stairwell/bridge/deck_2)
"klV" = (
/obj/machinery/power/emitter{
dir = 8
@@ -73739,6 +73346,25 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/rnd/chemistry)
+"koU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/library)
"koY" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -74109,6 +73735,20 @@
/obj/machinery/meter,
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/atmos/propulsion/starboard)
+"krV" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/shells/beanbags,
+/obj/item/wrench,
+/obj/item/paper{
+ info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest.";
+ name = "Shotgun permit"
+ },
+/obj/machinery/alarm/west,
+/obj/item/device/quikpay,
+/obj/item/storage/box/fancy/matches,
+/obj/item/flame/lighter/zippo,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/service/bar/backroom)
"krX" = (
/obj/effect/floor_decal/spline/fancy,
/obj/machinery/computer/ship/helm{
@@ -74380,23 +74020,6 @@
},
/turf/simulated/floor/reinforced/nitrogen,
/area/horizon/engineering/atmos/air)
-"ktu" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 9
- },
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -22
- },
-/obj/structure/closet/walllocker/firecloset{
- pixel_x = -25
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/storage)
"ktJ" = (
/obj/machinery/recharge_station,
/obj/effect/floor_decal/corner/green/diagonal,
@@ -74489,6 +74112,18 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/shuttle/skipjack)
+"kuB" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green,
+/obj/structure/grille,
+/turf/simulated/floor/tiled/dark/full/airless,
+/area/horizon/command/bridge/controlroom)
"kuL" = (
/turf/simulated/wall,
/area/horizon/crew/vacantoffice)
@@ -75043,6 +74678,15 @@
icon_state = "dark_preview"
},
/area/centcom/holding)
+"kyi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/port_compartment)
"kyj" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/corner/black{
@@ -75615,6 +75259,22 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/investigations_hallway)
+"kBo" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/disposalpipe/segment{
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/hangar/port)
"kBs" = (
/obj/machinery/light{
dir = 4
@@ -75878,34 +75538,6 @@
},
/turf/simulated/floor,
/area/tdome/tdome2)
-"kDz" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm/south{
- alarm_id = 1503;
- breach_detection = 0;
- rcon_setting = 3;
- report_danger_level = 0;
- req_one_access = list(7,47,24,11)
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"kDA" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 6
@@ -76234,6 +75866,24 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/full,
/area/horizon/service/hydroponics)
+"kFF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/dark_green{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/primary/deck_2/fore)
"kFQ" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/storage/vest/legion{
@@ -76561,6 +76211,28 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/horizon/engineering/hallway/interior)
+"kHZ" = (
+/obj/structure/table/rack/retail_shelf{
+ name = "storage shelf"
+ },
+/obj/item/storage/box/unique/monkeycubes{
+ pixel_x = -7;
+ pixel_y = -7
+ },
+/obj/item/storage/box/unique/monkeycubes{
+ pixel_x = -7;
+ pixel_y = -7
+ },
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -4;
+ pixel_y = 9
+ },
+/obj/item/pipewrench,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/rnd/xenoarch/storage)
"kIg" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -76887,6 +76559,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/security/checkpoint2)
+"kKC" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/crate/freezer/rations,
+/obj/machinery/power/apc/super/critical/west,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/horizon/command/bridge/aibunker)
"kKK" = (
/obj/structure/bed/stool/chair,
/obj/effect/floor_decal/spline/fancy/wood/cee{
@@ -77219,6 +76905,18 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/horizon/service/custodial)
+"kNt" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/hatch_tiny/yellow,
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ name = "Air Tank to Air Distribution"
+ },
+/obj/machinery/power/apc/shuttle/west,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/engineering)
"kNz" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/corner/black{
@@ -77271,6 +76969,19 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/central)
+"kNP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/double/barsign{
+ dir = 4;
+ pixel_x = -64
+ },
+/obj/effect/floor_decal/corner/dark_green/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/primary/deck_2/fore)
"kOh" = (
/obj/machinery/light/small/emergency{
dir = 4
@@ -77492,6 +77203,28 @@
/obj/effect/map_effect/window_spawner/full/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/atmos/storage)
+"kQh" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/main/starboard)
"kQp" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/mob/living/simple_animal/cat/crusher,
@@ -77649,39 +77382,27 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/hallway)
-"kRt" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/green{
- dir = 8
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/horizon/stairwell/engineering/deck_1)
"kRu" = (
/obj/structure/bed/stool/chair/office/dark{
dir = 4
},
/turf/unsimulated/floor/monotile,
/area/antag/mercenary)
+"kRv" = (
+/obj/structure/closet/crate/freezer{
+ name = "Fridge"
+ },
+/obj/item/storage/box/unique/freezer/organcooler,
+/obj/machinery/light/small,
+/obj/machinery/alarm/cold/north,
+/obj/effect/floor_decal/industrial/hatch/grey,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/horizon/medical/surgery/storage)
"kRN" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/structure/disposalpipe/segment{
@@ -77970,6 +77691,19 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/medical/pharmacy)
+"kTR" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark/full/airless,
+/area/horizon/command/bridge/controlroom)
"kTS" = (
/obj/machinery/light/small{
dir = 4
@@ -78196,18 +77930,6 @@
/obj/effect/large_stock_marker,
/turf/simulated/floor/tiled,
/area/horizon/operations/warehouse)
-"kVB" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/alarm/north{
- dir = 4;
- pixel_y = 0;
- pixel_x = 7
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/medical/reception)
"kVC" = (
/obj/structure/table/reinforced/wood,
/obj/machinery/door/blast/odin{
@@ -78294,36 +78016,6 @@
/obj/effect/map_effect/marker_helper/airlock/interior,
/turf/simulated/floor/plating,
/area/horizon/engineering/reactor/supermatter/airlock)
-"kWh" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/light_switch{
- pixel_y = -19;
- pixel_x = -6
- },
-/obj/item/device/radio/intercom/south{
- pixel_x = 14
- },
-/turf/simulated/floor/wood,
-/area/horizon/command/heads/captain)
"kWk" = (
/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor,
/turf/simulated/floor/plating,
@@ -78492,6 +78184,16 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos)
+"kXK" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/structure/noticeboard{
+ pixel_x = 32
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/spline/plain,
+/obj/item/storage/box/unique/donkpockets,
+/turf/simulated/floor/tiled/white,
+/area/horizon/operations/break_room)
"kXL" = (
/obj/machinery/shipsensors/weak/scc_shuttle{
pixel_y = -15
@@ -79119,6 +78821,14 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled/white,
/area/horizon/crew/washroom/deck_2)
+"lbI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/operations/starboard)
"lbW" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/portable_atmospherics/canister/heliumfuel,
@@ -79182,26 +78892,6 @@
icon_state = "dark_preview"
},
/area/centcom/control)
-"lco" = (
-/obj/effect/floor_decal/corner/white{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/disposal/small/south,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenobiology/xenoflora)
"lcp" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -79627,38 +79317,6 @@
/obj/structure/lattice,
/turf/simulated/open,
/area/horizon/maintenance/deck_2/service/port)
-"leX" = (
-/obj/structure/table/rack,
-/obj/item/storage/box/firingpins{
- pixel_x = 12;
- pixel_y = -6
- },
-/obj/item/storage/box/handcuffs{
- pixel_x = 12;
- pixel_y = 6
- },
-/obj/item/storage/box/tactical/teargas{
- pixel_y = -6
- },
-/obj/item/storage/box/tactical/teargas{
- pixel_y = 6
- },
-/obj/item/storage/box/tactical/flashbangs{
- pixel_x = -12;
- pixel_y = -6
- },
-/obj/item/storage/box/tactical/flashbangs{
- pixel_x = -12;
- pixel_y = 6
- },
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/horizon/security/warden)
"lfa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -79729,6 +79387,27 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/engineering/hallway/aft)
+"lfL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/structure/table/stone/marble,
+/obj/item/storage/box/unique/tea{
+ pixel_x = -9;
+ pixel_y = 8
+ },
+/obj/item/storage/box/unique/tea/jaekseol{
+ pixel_y = 8
+ },
+/obj/item/storage/box/unique/tea/tieguanyin{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/beaker/teapot/lidded{
+ pixel_y = -8
+ },
+/turf/simulated/floor/marble/dark,
+/area/horizon/command/bridge/minibar)
"lfM" = (
/obj/machinery/atmospherics/pipe/tank/air,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -80370,21 +80049,6 @@
/obj/machinery/power/apc/low/south,
/turf/simulated/floor/tiled,
/area/horizon/medical/emergency_storage)
-"lkr" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/test_range)
"lkz" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 5
@@ -80852,6 +80516,26 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/engineering/storage_hard)
+"lns" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm/south{
+ alarm_id = 1503;
+ breach_detection = 0;
+ rcon_setting = 3;
+ report_danger_level = 0;
+ req_one_access = list(7,47,24,11)
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/isolation_c)
"lnw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -81581,36 +81265,6 @@
icon_state = "fix2"
},
/area/horizon/shuttle/mining)
-"lsU" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/blast/shutters/open{
- dir = 4;
- id = "shutters_deck3_bridgesafety";
- name = "Safety Shutter"
- },
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/structure/grille,
-/obj/machinery/door/blast/shutters/open{
- dir = 4;
- id = "conferencesafetyshutters";
- name = "Safety Shutter"
- },
-/turf/simulated/floor,
-/area/horizon/command/bridge/meeting_room)
"lsX" = (
/turf/simulated/wall,
/area/horizon/maintenance/deck_1/teleporter)
@@ -81788,6 +81442,17 @@
icon_state = "wood"
},
/area/centcom/specops)
+"lui" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_storage)
"luj" = (
/obj/structure/railing/mapped{
dir = 8
@@ -83432,14 +83097,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/operations)
-"lFm" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet/green,
-/area/horizon/medical/psych)
"lFp" = (
/obj/structure/bed/stool/chair/unmovable,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -83764,6 +83421,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/holodeck_control/beta)
+"lIa" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/security/autopsy_laboratory)
"lIh" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 10
@@ -85481,23 +85148,6 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/service/kitchen)
-"lVy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/obj/structure/bed/handrail{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_compartment)
"lVA" = (
/obj/structure/railing/mapped,
/obj/structure/platform/ledge{
@@ -85763,19 +85413,6 @@
"lXv" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/maintenance/deck_2/wing/port/far)
-"lXz" = (
-/obj/machinery/smartfridge/secure,
-/obj/machinery/door/blast/shutters{
- dir = 4;
- id = "horizon_commissary_desk"
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/operations/commissary)
"lXE" = (
/obj/structure/lattice/catwalk/indoor,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -85880,22 +85517,6 @@
},
/turf/simulated/floor/lino,
/area/merchant_station)
-"lYB" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner_wide/green/full{
- dir = 4
- },
-/obj/machinery/alarm/east,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 12
- },
-/obj/item/storage/box/unique/freezer/organcooler{
- pixel_x = -1;
- pixel_y = 3
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/medical/main_storage)
"lYC" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -85931,16 +85552,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/horizon/exterior)
-"lYL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/dining_hall)
"lYW" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 6
@@ -86175,25 +85786,6 @@
/obj/structure/flora/ausbushes/sunnybush,
/turf/simulated/floor/exoplanet/grass,
/area/centcom/shared_dream)
-"maz" = (
-/obj/effect/floor_decal/corner/dark_blue/diagonal,
-/obj/random/pottedplant,
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/structure/platform{
- dir = 1
- },
-/obj/machinery/alarm/north{
- pixel_y = -7;
- pixel_x = -1;
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/horizon/command/bridge/upperdeck)
"maF" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
@@ -86203,16 +85795,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/service/dining_hall)
-"maJ" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/structure/noticeboard{
- pixel_x = 32
- },
-/obj/structure/table/standard,
-/obj/effect/floor_decal/spline/plain,
-/obj/item/storage/box/unique/donkpockets,
-/turf/simulated/floor/tiled/white,
-/area/horizon/operations/break_room)
"maQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/fake_object{
@@ -86378,6 +85960,18 @@
/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/tiled,
/area/horizon/operations/machinist/surgicalbay)
+"mbY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/presentation)
"mce" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -86412,14 +86006,6 @@
/obj/structure/lattice,
/turf/simulated/open,
/area/horizon/medical/hallway/upper)
-"mcs" = (
-/obj/machinery/atmospherics/portables_connector/fuel{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/alarm/shuttle/intrepid/east,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/port_storage)
"mcv" = (
/obj/machinery/camera/network/reactor{
c_tag = "Engineering - INDRA SMES Room 2"
@@ -87094,27 +86680,6 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/stairwell/port/deck_3)
-"mhI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/horizon/maintenance/deck_3/aft/starboard)
"mhL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/platform_stairs,
@@ -87232,6 +86797,18 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden,
/turf/simulated/floor/tiled/dark,
/area/horizon/service/hydroponics/hazard)
+"miR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/horizon/service/bar)
"miS" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/ai/chamber)
@@ -87500,55 +87077,6 @@
"mlB" = (
/turf/simulated/wall,
/area/horizon/hallway/primary/deck_2/central)
-"mlC" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/north,
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/condiment/shaker/spacespice{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/holomenu{
- pixel_x = 9;
- pixel_y = 8
- },
-/obj/item/holomenu{
- pixel_x = 9;
- pixel_y = 4
- },
-/obj/random/pottedplant_small{
- pixel_x = 10;
- pixel_y = 11
- },
-/obj/item/reagent_containers/food/drinks/shaker{
- pixel_x = -5;
- pixel_y = 18
- },
-/obj/item/storage/box/fancy/candle_box{
- pixel_x = -14;
- pixel_y = 1
- },
-/obj/item/storage/box/fancy/candle_box{
- pixel_x = -12;
- pixel_y = 1
- },
-/obj/item/storage/box/fancy/candle_box{
- pixel_x = -10;
- pixel_y = 1
- },
-/obj/item/storage/box/fancy/candle_box{
- pixel_x = -10;
- pixel_y = 1
- },
-/obj/item/storage/box/fancy/candle_box{
- pixel_x = -10;
- pixel_y = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/service/bar/backroom)
"mlJ" = (
/turf/simulated/wall/r_wall,
/area/horizon/rnd/xenobiology/foyer)
@@ -87684,29 +87212,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/central)
-"mmD" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/alarm/north{
- dir = 4;
- pixel_y = 0;
- pixel_x = 10
- },
-/obj/structure/table/wood,
-/obj/machinery/chemical_dispenser/bar_soft/full{
- dir = 8;
- pixel_x = 3
- },
-/obj/item/storage/box/drinkingglasses{
- pixel_x = -13;
- pixel_y = 7
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/consular_one)
"mmM" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -88343,18 +87848,6 @@
/obj/structure/railing/mapped,
/turf/simulated/floor/tiled/dark,
/area/horizon/shuttle/intrepid/main_compartment)
-"msj" = (
-/obj/structure/table/wood/gamblingtable,
-/obj/item/storage/box/unique/donkpockets{
- pixel_x = 2;
- pixel_y = 5
- },
-/obj/effect/floor_decal/spline/fancy/wood,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/unsimulated/floor/wood,
-/area/antag/actor)
"mso" = (
/obj/structure/closet/crate,
/obj/effect/floor_decal/industrial/warning{
@@ -88609,6 +88102,17 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/wing/starboard/far)
+"mui" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/substation/wing_starboard)
"muo" = (
/obj/structure/table/rack,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -88927,6 +88431,13 @@
},
/turf/unsimulated/floor/plating,
/area/shuttle/legion)
+"mwB" = (
+/obj/random/junk,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/maintenance/deck_1/operations/starboard)
"mwC" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -89395,34 +88906,6 @@
},
/turf/unsimulated/floor/marble,
/area/antag/wizard)
-"mBg" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/reinforced,
-/area/horizon/rnd/xenoarch/isolation_c)
-"mBl" = (
-/obj/effect/floor_decal/corner/dark_blue/diagonal,
-/obj/structure/bed/handrail,
-/obj/structure/bed/stool/chair/office/dark{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/shuttle/intrepid/north,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/flight_deck)
"mBq" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -89504,6 +88987,24 @@
},
/turf/simulated/floor/reinforced/airmix,
/area/horizon/engineering/atmos/air)
+"mCh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/stairwell/bridge/deck_2)
"mCi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
@@ -89813,21 +89314,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/horizon/medical/gen_treatment)
-"mEJ" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/test_range)
"mEO" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -90009,17 +89495,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/full,
/area/horizon/security/forensic_laboratory)
-"mFX" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/main/starboard)
"mFY" = (
/turf/simulated/wall,
/area/horizon/maintenance/deck_2/research)
@@ -90066,6 +89541,26 @@
/obj/machinery/door/airlock/multi_tile/glass,
/turf/unsimulated/floor,
/area/centcom/holding)
+"mGu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm/south{
+ alarm_id = 1503;
+ breach_detection = 0;
+ rcon_setting = 3;
+ report_danger_level = 0;
+ req_one_access = list(7,47,24,11)
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/isolation_b)
"mGw" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -90690,6 +90185,28 @@
},
/turf/simulated/floor/tiled,
/area/horizon/operations/office)
+"mKW" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/service/kitchen)
"mLa" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/turf/simulated/floor/plating,
@@ -91717,62 +91234,6 @@
},
/turf/simulated/floor/plating,
/area/shuttle/skipjack)
-"mTJ" = (
-/obj/structure/table/rack,
-/obj/item/stack/material/plasteel{
- amount = 20;
- pixel_y = 4;
- randpixel = 0
- },
-/obj/item/stack/material/glass{
- amount = 50;
- pixel_x = -1;
- pixel_y = 2;
- randpixel = 0
- },
-/obj/item/stack/material/steel{
- amount = 50;
- pixel_x = 1;
- pixel_y = -2;
- randpixel = 0
- },
-/obj/item/stack/material/steel{
- amount = 50;
- pixel_x = 1;
- pixel_y = -2;
- randpixel = 0
- },
-/obj/item/stack/material/steel{
- amount = 50;
- pixel_x = 1;
- pixel_y = -2;
- randpixel = 0
- },
-/obj/item/reagent_containers/weldpack,
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Machinist Workshop Starboard 2";
- dir = 1
- },
-/obj/item/stack/material/glass{
- amount = 50;
- pixel_x = -1;
- pixel_y = 2;
- randpixel = 0
- },
-/obj/item/stack/material/steel{
- amount = 50;
- pixel_x = 1;
- pixel_y = -2;
- randpixel = 0
- },
-/obj/item/device/paint_sprayer,
-/obj/structure/platform{
- dir = 8
- },
-/obj/item/stack/material/aluminium/full,
-/obj/item/stack/material/aluminium/full,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/operations/machinist)
"mTK" = (
/obj/structure/shuttle_part/ert{
icon_state = "0,0";
@@ -92063,6 +91524,22 @@
},
/turf/simulated/floor/tiled/dark/full/airless,
/area/horizon/command/bridge/controlroom)
+"mVK" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "bar_shutter";
+ name = "Bar Shutter"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/service/bar)
"mVS" = (
/obj/structure/dueling_table{
icon_state = "center_left"
@@ -92533,6 +92010,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/shuttle/mercenary)
+"mZt" = (
+/obj/structure/platform,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/roller{
+ pixel_y = 6
+ },
+/obj/item/storage/box/unique/sharps,
+/obj/item/storage/box/unique/sharps,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenobiology/dissection)
"mZu" = (
/obj/machinery/door/airlock/external,
/obj/effect/map_effect/marker_helper/airlock/interior,
@@ -92914,18 +92404,6 @@
/obj/machinery/alarm/north,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/starboard/far)
-"ncH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/substation/wing_starboard)
"ncJ" = (
/obj/structure/table/steel,
/obj/random/junk,
@@ -93477,18 +92955,6 @@
/obj/machinery/alarm/south,
/turf/simulated/floor/tiled,
/area/horizon/engineering/hallway/fore)
-"ngi" = (
-/obj/machinery/camera/network/prison{
- c_tag = "Security - Brig Communal Port";
- dir = 8
- },
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/structure/table/reinforced,
-/obj/item/storage/box/unique/donkpockets,
-/turf/simulated/floor/tiled,
-/area/horizon/security/brig)
"ngj" = (
/obj/effect/floor_decal/industrial/hatch/red,
/turf/simulated/floor/reinforced/airless,
@@ -93729,24 +93195,6 @@
},
/turf/space/dynamic,
/area/horizon/exterior)
-"nik" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "bar_shutter";
- name = "Bar Shutter"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/service/bar)
"nin" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
@@ -93987,6 +93435,21 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/operations/secure_ammunition_storage)
+"nkz" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/small/north,
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/wood,
+/area/horizon/repoffice/consular_one)
"nkB" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -94366,22 +93829,6 @@
},
/turf/simulated/open,
/area/horizon/hallway/primary/deck_3/central)
-"nmH" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/port_storage)
"nmJ" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/machinery/light/small/emergency{
@@ -94443,6 +93890,24 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/investigations_hallway)
+"nnx" = (
+/obj/machinery/door/airlock/research{
+ name = "Secure Artifact Storage";
+ req_access = list(47);
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/anomaly_storage)
"nnG" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -95060,31 +94525,6 @@
/obj/structure/shuttle/engine/propulsion,
/turf/simulated/floor/plating,
/area/shuttle/mercenary)
-"nsL" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -22
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"nsO" = (
/obj/machinery/door/blast/shutters{
density = 0;
@@ -95480,31 +94920,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/holodeck/source_biesel)
-"nvu" = (
-/obj/effect/floor_decal/corner/black{
- dir = 10
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/structure/table/steel,
-/obj/item/storage/box/large/flares{
- pixel_x = -6;
- pixel_y = 11
- },
-/obj/item/storage/box/led_collars{
- pixel_x = 8;
- pixel_y = 11
- },
-/obj/item/storage/box/large/flares{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/storage/box/tethers{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/structure/railing/mapped,
-/turf/simulated/floor/plating,
-/area/horizon/hangar/auxiliary)
"nvx" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -95896,6 +95311,21 @@
/obj/structure/table/rack,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/wing/port/far)
+"nxJ" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/low/east,
+/obj/structure/reagent_dispensers/water_cooler{
+ pixel_y = 17;
+ pixel_x = 11;
+ density = 0
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/presentation)
"nxM" = (
/obj/effect/floor_decal/industrial/hatch_door/red{
dir = 1
@@ -96169,6 +95599,17 @@
/obj/random/tech_supply,
/turf/simulated/floor/plating,
/area/horizon/engineering/storage/lower)
+"nzO" = (
+/obj/effect/floor_decal/corner_wide/paleblue{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/storage/box/unique/sharps,
+/turf/simulated/floor/tiled/white,
+/area/horizon/medical/surgery)
"nzX" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
@@ -96531,6 +95972,22 @@
/obj/machinery/atmospherics/portables_connector,
/turf/simulated/floor/plating,
/area/horizon/medical/cryo)
+"nCP" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/structure/table/rack,
+/obj/item/stack/material/glass/phoronrglass{
+ amount = 20;
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/material/glass/full,
+/turf/simulated/floor/tiled,
+/area/horizon/engineering/storage_eva)
"nCR" = (
/obj/machinery/light{
dir = 1
@@ -96597,6 +96054,41 @@
},
/turf/simulated/floor/tiled,
/area/horizon/medical/morgue)
+"nDk" = (
+/obj/structure/table/standard,
+/obj/machinery/vending/wallmed1{
+ req_access = null;
+ pixel_y = 32
+ },
+/obj/item/paper_bin{
+ pixel_y = 3;
+ pixel_x = 4
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/shuttle/south,
+/obj/item/storage/firstaid/regular,
+/obj/machinery/alarm/shuttle/east,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/quark/cockpit)
+"nDl" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/stack/rods/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/steel/full,
+/turf/simulated/floor/tiled,
+/area/horizon/engineering/storage_eva)
"nDp" = (
/obj/effect/floor_decal/corner/mauve{
dir = 10
@@ -96771,28 +96263,6 @@
/obj/structure/window/reinforced/holowindow,
/turf/simulated/floor/holofloor/tiled,
/area/template_noop)
-"nEd" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/obj/machinery/alarm/south{
- alarm_id = 1503;
- breach_detection = 0;
- rcon_setting = 3;
- report_danger_level = 0;
- req_one_access = list(7,47,24,11)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/isolation_a)
"nEe" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 5
@@ -97080,6 +96550,26 @@
/obj/effect/floor_decal/industrial/outline/operations,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/storage/eva)
+"nGu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/obj/machinery/alarm/south{
+ alarm_id = 1503;
+ breach_detection = 0;
+ rcon_setting = 3;
+ report_danger_level = 0;
+ req_one_access = list(7,47,24,11)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/isolation_a)
"nGB" = (
/obj/machinery/door/airlock/glass_security{
autoclose = 0;
@@ -97193,6 +96683,35 @@
/obj/structure/table/reinforced/steel,
/turf/unsimulated/floor,
/area/antag/mercenary)
+"nHd" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/blast/shutters/open{
+ dir = 4;
+ id = "shutters_deck3_bridgesafety";
+ name = "Safety Shutter"
+ },
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters/open{
+ dir = 4;
+ id = "conferencesafetyshutters";
+ name = "Safety Shutter"
+ },
+/turf/simulated/floor,
+/area/horizon/command/bridge/meeting_room)
"nHl" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -97261,6 +96780,18 @@
},
/turf/simulated/floor/tiled,
/area/horizon/engineering/hallway/aft)
+"nHT" = (
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/operations/commissary)
"nHU" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -97755,15 +97286,6 @@
},
/turf/unsimulated/floor,
/area/centcom/legion)
-"nLx" = (
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/machinery/firealarm/east,
-/obj/structure/table/standard,
-/obj/item/storage/box/large/flares,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/command/teleporter)
"nLy" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -99153,20 +98675,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenological)
-"nXb" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green,
-/obj/structure/grille,
-/turf/simulated/floor/tiled/dark/full/airless,
-/area/horizon/command/bridge/controlroom)
"nXi" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
@@ -99384,28 +98892,24 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/dark,
/area/horizon/maintenance/deck_3/aft/starboard/far)
-"nZv" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/atrium)
"nZx" = (
/obj/effect/map_effect/window_spawner/full/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/operations/mining_main/refinery)
+"nZA" = (
+/obj/structure/platform_deco{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/small/north,
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/obj/machinery/alarm/east,
+/turf/simulated/floor/tiled,
+/area/horizon/command/bridge/cciaroom/lounge)
"nZF" = (
/obj/item/material/shard{
icon_state = "small"
@@ -99469,6 +98973,19 @@
/obj/effect/step_trigger/thrower/shuttle/northwest,
/turf/space/transit/east,
/area/template_noop)
+"nZY" = (
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/starboard_compartment)
"nZZ" = (
/obj/effect/decal/fake_object/light_source/invisible{
light_color = "#64C864";
@@ -99663,18 +99180,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/port)
-"obb" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/stairwell/bridge/deck_2)
"obe" = (
/obj/structure/closet/crate,
/obj/random/loot,
@@ -99957,6 +99462,24 @@
/obj/item/holo/practicesword/holorapier,
/turf/simulated/floor/holofloor/tiled,
/area/horizon/holodeck/source_boxingcourt)
+"odp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/bed/handrail{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/shuttle/east,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/starboard_compartment)
"ods" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -100573,6 +100096,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/shuttle/quark/cockpit)
+"ogN" = (
+/obj/machinery/door/airlock/maintenance{
+ dir = 1;
+ req_access = list(12);
+ welded = 1
+ },
+/obj/item/tape/engineering{
+ icon_state = "engineering_door"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/workshop)
"ogP" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -100631,16 +100169,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/unsimulated/floor,
/area/antag/mercenary)
-"ogZ" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/obj/machinery/alarm/north{
- pixel_y = 19
- },
-/obj/structure/closet/secure_closet/xo2,
-/turf/simulated/floor/wood,
-/area/horizon/command/heads/xo)
"ohd" = (
/obj/machinery/light{
dir = 4
@@ -100651,28 +100179,6 @@
icon_state = "dark_preview"
},
/area/centcom/specops)
-"ohf" = (
-/obj/effect/floor_decal/industrial/hatch_door/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor{
- req_one_access = list(24,11,67,73)
- },
-/obj/machinery/door/airlock/glass_command{
- dir = 1;
- id_tag = "intrepid_flightdeck";
- name = "Intrepid Flight Deck";
- req_access = list(73)
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/flight_deck)
"ohh" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 5
@@ -100731,6 +100237,27 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/service/cafeteria)
+"ohv" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/rack,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/item/reagent_containers/spray/chemsprayer/xenobiology,
+/obj/item/reagent_containers/spray/chemsprayer/xenobiology,
+/obj/item/melee/baton/slime{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/item/melee/baton/slime{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenobiology)
"ohz" = (
/turf/simulated/wall/r_wall,
/area/horizon/rnd/xenobiology/dissection)
@@ -100990,48 +100517,6 @@
},
/turf/unsimulated/floor,
/area/antag/mercenary)
-"ojm" = (
-/obj/machinery/door/airlock/service{
- id_tag = "hydro_hazard_out";
- name = "Hazardous Specimens";
- req_access = list(35);
- frequency = 1379
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/industrial/hatch_door/yellow{
- dir = 8
- },
-/obj/effect/map_effect/door_helper/lock,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- id_tag = "hydroponics_hazard";
- name = "Hazardous Specimens Airlock Access Console";
- pixel_x = 38;
- tag_exterior_door = "hydro_hazard_out";
- tag_interior_door = "hydro_hazard_in";
- dir = 1;
- pixel_y = 9
- },
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "hydroponics_hazard";
- name = "Hazardous Specimens Airlock Button";
- pixel_x = 27;
- req_one_access = list(35);
- dir = 1;
- pixel_y = 9
- },
-/obj/structure/plasticflaps/airtight,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/hydroponics/hazard)
"ojo" = (
/obj/structure/cable/orange{
icon_state = "4-8"
@@ -101627,37 +101112,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/rnd/xenoarch/storage)
-"oob" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/green{
- icon_state = "11-1";
- d1 = 11
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 1
- },
-/turf/simulated/open,
-/area/horizon/maintenance/deck_3/security/starboard)
-"ood" = (
-/obj/machinery/door/airlock/maintenance{
- dir = 1;
- req_access = list(12);
- welded = 1
- },
-/obj/item/tape/engineering{
- icon_state = "engineering_door"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/workshop)
"oof" = (
/obj/machinery/door/airlock/hatch{
dir = 1;
@@ -102392,6 +101846,25 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/shuttle/quark/cockpit)
+"orU" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/medical/paramedic)
"orW" = (
/obj/structure/table/rack/retail_shelf,
/turf/simulated/floor/tiled/dark/full,
@@ -102466,26 +101939,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos/turbine)
-"osH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/window/southleft{
- name = "Artifact Secure Storage";
- req_access = list(47);
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/anomaly_storage)
"osJ" = (
/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -102522,6 +101975,27 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/operations)
+"ote" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/service/kitchen)
"otg" = (
/obj/effect/floor_decal/corner/yellow/full{
dir = 1
@@ -103033,6 +102507,32 @@
},
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos/air)
+"owX" = (
+/obj/structure/table/reinforced/wood,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{
+ pixel_x = 11;
+ pixel_y = 4
+ },
+/obj/machinery/chemical_dispenser/coffee/full{
+ pixel_y = 8;
+ pixel_x = -3
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/one{
+ pixel_y = -1;
+ pixel_x = 11
+ },
+/obj/machinery/alarm/north,
+/turf/simulated/floor/carpet,
+/area/horizon/command/heads/captain)
+"oxc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/main_compartment)
"oxl" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -103095,6 +102595,29 @@
/obj/machinery/autolathe,
/turf/simulated/floor/carpet/rubber,
/area/horizon/rnd/lab)
+"oxF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor{
+ req_one_access = list(24,11,67,73);
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_service{
+ dir = 8;
+ name = "Library"
+ },
+/turf/simulated/floor/tiled/full,
+/area/horizon/service/library)
"oxI" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 7
@@ -103227,17 +102750,6 @@
"oyG" = (
/turf/simulated/floor/tiled/full,
/area/horizon/hallway/primary/deck_2/fore)
-"oyO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"oyQ" = (
/obj/effect/floor_decal/corner/yellow{
dir = 9
@@ -103264,6 +102776,24 @@
},
/turf/unsimulated/floor/dark_monotile,
/area/antag/actor)
+"oyY" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/library)
"oza" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 10
@@ -103434,25 +102964,6 @@
},
/turf/unsimulated/floor/dark,
/area/antag/actor)
-"ozW" = (
-/obj/effect/floor_decal/spline/fancy/wood,
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/small/north,
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/consular_one)
"ozX" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -103607,21 +103118,6 @@
"oAJ" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/engineering/bluespace_drive)
-"oAW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "2-8";
- d1 = 2;
- d2 = 8
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/hangar/port)
"oBa" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/machinery/light/small/emergency,
@@ -103643,20 +103139,6 @@
/obj/item/device/radio/intercom/south,
/turf/simulated/floor/tiled/dark,
/area/horizon/command/bridge/aibunker)
-"oBc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"oBl" = (
/obj/structure/bed/stool/chair/office/light{
dir = 8
@@ -103992,6 +103474,14 @@
/obj/structure/engineer_maintenance/pipe/wall,
/turf/simulated/floor/wood,
/area/horizon/service/dining_hall)
+"oEb" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/north,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/maintenance/deck_2/cargo_compartment)
"oEh" = (
/obj/structure/flora/ausbushes/lavendergrass,
/turf/unsimulated/floor/grass,
@@ -104088,6 +103578,18 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/bridge/upperdeck)
+"oFo" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/horizon/medical/psych)
"oFp" = (
/obj/random/pottedplant,
/obj/effect/floor_decal/corner/dark_blue{
@@ -104508,22 +104010,6 @@
},
/turf/simulated/floor/exoplanet/barren/raskara,
/area/centcom/shared_dream)
-"oIR" = (
-/obj/structure/table/reinforced/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{
- pixel_x = 11;
- pixel_y = 4
- },
-/obj/machinery/chemical_dispenser/coffee/full{
- pixel_y = 8;
- pixel_x = -3
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/one{
- pixel_y = -1;
- pixel_x = 11
- },
-/turf/simulated/floor/carpet,
-/area/horizon/command/heads/captain)
"oIV" = (
/obj/item/modular_computer/console/preset/medical{
dir = 8
@@ -104614,20 +104100,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/engineering/storage_eva)
-"oJC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"oJI" = (
/obj/machinery/door/firedoor/multi_tile,
/obj/structure/cable/green{
@@ -105064,6 +104536,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/service/bar/backroom)
+"oMl" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/horizon/rnd/xenoarch/isolation_c)
"oMs" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -106517,31 +105999,6 @@
/obj/structure/bed/stool/chair/shuttle,
/turf/simulated/floor/shuttle/dark_blue,
/area/shuttle/transport1)
-"oWL" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/door/firedoor{
- req_one_access = list(24,11,67,73);
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_service{
- dir = 8;
- name = "Library"
- },
-/turf/simulated/floor/tiled/full,
-/area/horizon/service/library)
"oWM" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
@@ -106627,6 +106084,17 @@
/obj/machinery/alarm/north,
/turf/simulated/floor/carpet/rubber,
/area/horizon/crew/fitness/gym)
+"oXo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/dining_hall)
"oXr" = (
/obj/machinery/telecomms/server/presets/service,
/turf/simulated/floor/bluegrid,
@@ -106737,21 +106205,6 @@
},
/turf/simulated/floor/lino,
/area/horizon/service/chapel/main)
-"oYe" = (
-/obj/structure/closet/secure_closet/freezer,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/rice,
-/obj/item/reagent_containers/food/condiment/rice,
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/storage/box/large/produce/adhomai,
-/obj/item/storage/box/large/produce/moghes,
-/obj/item/storage/box/large/produce/nralakk,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/kitchen)
"oYg" = (
/obj/structure/bed/roller,
/obj/effect/floor_decal/industrial/warning{
@@ -107058,23 +106511,6 @@
},
/turf/simulated/open,
/area/horizon/maintenance/deck_2/research)
-"pbc" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/structure/table/reinforced/steel,
-/obj/item/storage/box/unique/donkpockets,
-/turf/simulated/floor/carpet/rubber,
-/area/horizon/engineering/bluespace_drive/monitoring)
"pbg" = (
/obj/effect/floor_decal/spline/plain/yellow{
dir = 9
@@ -107314,6 +106750,13 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenoarch/atrium)
+"pdB" = (
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/horizon/maintenance/deck_3/aft/starboard)
"pdD" = (
/obj/structure/bed/stool/chair/office/dark,
/turf/unsimulated/floor{
@@ -107684,6 +107127,16 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/starboard/nacelle)
+"pfP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"pfT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/corner_wide/dark_green{
@@ -107740,6 +107193,18 @@
},
/turf/simulated/floor/reinforced,
/area/horizon/rnd/xenobiology)
+"pgo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/rnd/xenoarch/anomaly_storage)
"pgw" = (
/obj/random/pottedplant,
/obj/structure/railing/mapped,
@@ -107776,6 +107241,21 @@
"phb" = (
/turf/simulated/floor/holofloor/reinforced,
/area/horizon/holodeck/alphadeck)
+"phc" = (
+/obj/structure/table/standard,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/storage/box/unique/sharps{
+ pixel_y = 9
+ },
+/obj/item/vitals_monitor,
+/obj/item/vitals_monitor,
+/obj/item/vitals_monitor,
+/obj/item/vitals_monitor,
+/obj/effect/floor_decal/corner_wide/green/full,
+/turf/simulated/floor/tiled/white,
+/area/horizon/medical/gen_treatment)
"phi" = (
/obj/structure/platform/ledge,
/obj/structure/platform_deco/ledge{
@@ -108242,6 +107722,22 @@
},
/turf/unsimulated/floor,
/area/tdome/tdomeadmin)
+"pln" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/low/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"plo" = (
/obj/machinery/light{
dir = 4
@@ -108320,22 +107816,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/operations/office)
-"plN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/bed/handrail{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/port_compartment)
"plP" = (
/obj/machinery/light/small{
dir = 4
@@ -108709,6 +108189,23 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/port)
+"poA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/closet/crate/plastic,
+/obj/item/storage/bag/inflatable,
+/obj/item/stack/rods/full,
+/obj/item/storage/toolbox/mechanical,
+/obj/random/tool,
+/obj/item/device/radio/sci,
+/obj/item/tent,
+/obj/machinery/alarm/shuttle/east,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/quark/cargo_hold)
"poD" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -108770,27 +108267,6 @@
/obj/structure/flora/ausbushes/lavendergrass,
/turf/simulated/floor/grass/no_edge,
/area/horizon/service/cafeteria)
-"ppf" = (
-/obj/structure/curtain/black{
- icon_state = "open";
- opacity = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/bar)
"ppg" = (
/obj/machinery/light/small{
brightness_power = 0.5;
@@ -108921,21 +108397,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/storage/tech)
-"prI" = (
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/storage/box/unique/sharps{
- pixel_y = 9
- },
-/obj/item/vitals_monitor,
-/obj/item/vitals_monitor,
-/obj/item/vitals_monitor,
-/obj/item/vitals_monitor,
-/obj/effect/floor_decal/corner_wide/green/full,
-/turf/simulated/floor/tiled/white,
-/area/horizon/medical/gen_treatment)
"prJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 8
@@ -109315,12 +108776,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/crew/vacantoffice)
-"puk" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/stairwell/bridge/deck_2)
"pul" = (
/obj/structure/bed/stool/chair/padded/black{
dir = 8
@@ -109439,6 +108894,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/horizon/engineering/break_room)
+"puP" = (
+/obj/structure/closet/secure_closet/guncabinet/station/lethals,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_wide/paleblue{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/security/armoury)
"pve" = (
/obj/effect/floor_decal/industrial/warning,
/obj/random/junk,
@@ -109454,16 +108920,6 @@
},
/turf/simulated/floor/reinforced,
/area/horizon/command/bridge/selfdestruct)
-"pvt" = (
-/obj/effect/floor_decal/industrial/outline/operations,
-/obj/machinery/pipedispenser/disposal,
-/obj/machinery/power/apc/north,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/engineering/atmos/storage)
"pvw" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -110022,6 +109478,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/operations/loading)
+"pAh" = (
+/obj/structure/closet/secure_closet/freezer,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/kitchen)
"pAl" = (
/turf/unsimulated/floor/wood,
/area/centcom/specops)
@@ -110290,6 +109754,32 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/weapons/grauwolf)
+"pBN" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/table/reinforced/steel,
+/obj/machinery/recharger{
+ pixel_x = 6
+ },
+/obj/machinery/recharger{
+ pixel_x = -5
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 6;
+ pixel_y = 14
+ },
+/obj/item/device/binoculars{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/effect/floor_decal/corner/dark_blue/diagonal,
+/obj/effect/floor_decal/spline/plain/black{
+ dir = 4
+ },
+/obj/machinery/alarm/shuttle/east,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/junction_compartment)
"pBR" = (
/turf/unsimulated/floor/wood,
/area/centcom/evac)
@@ -110451,19 +109941,6 @@
/obj/structure/platform/ledge,
/turf/simulated/floor/carpet/rubber,
/area/horizon/rnd/telesci)
-"pCJ" = (
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Deck 2 - Starboard Pod Substation";
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/substation/wing_port)
"pCL" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume,
/obj/effect/map_effect/marker/airlock{
@@ -110473,6 +109950,16 @@
},
/turf/simulated/floor/plating,
/area/horizon/engineering/reactor/supermatter/airlock)
+"pCO" = (
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 9
+ },
+/obj/machinery/power/apc/west,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/security/evidence_storage)
"pCQ" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
@@ -110831,26 +110318,6 @@
"pFs" = (
/turf/simulated/floor/wood,
/area/horizon/maintenance/deck_2/wing/starboard)
-"pFt" = (
-/obj/machinery/firealarm/east,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/bed/handrail{
- dir = 8
- },
-/obj/machinery/alarm/shuttle/intrepid/south,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/engineering)
"pFx" = (
/obj/structure/window/reinforced/crescent{
dir = 1
@@ -111007,17 +110474,6 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
/area/shuttle/mercenary)
-"pGO" = (
-/obj/effect/floor_decal/corner_wide/lime{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/medical/ward)
"pGS" = (
/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{
id = "cap"
@@ -111191,18 +110647,6 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/operations/starboard/far)
-"pHW" = (
-/obj/effect/floor_decal/corner_wide/paleblue{
- dir = 9
- },
-/obj/machinery/power/apc/west,
-/obj/structure/table/standard,
-/obj/item/storage/box/unique/sharps,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/medical/surgery)
"pHY" = (
/obj/machinery/light{
dir = 1
@@ -111427,6 +110871,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/rnd/xenoarch/atrium)
+"pJX" = (
+/obj/effect/floor_decal/corner/dark_green{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/lime{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/floor,
+/turf/simulated/floor/tiled,
+/area/horizon/service/hydroponics/lower)
"pKf" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 9
@@ -111603,6 +111066,24 @@
},
/turf/simulated/floor/lino,
/area/horizon/service/dining_hall)
+"pLp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/bar)
"pLr" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -111702,6 +111183,25 @@
/obj/structure/engineer_maintenance/electric/wall,
/turf/simulated/floor/tiled,
/area/horizon/command/bridge/upperdeck)
+"pMi" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ pixel_y = 21
+ },
+/obj/item/storage/box/shells/trackingslugs{
+ pixel_x = 3
+ },
+/obj/item/storage/box/shells/stunshells{
+ pixel_x = 3
+ },
+/obj/item/storage/box/shells/practiceshells{
+ pixel_x = 4
+ },
+/obj/random/booze{
+ pixel_x = -11
+ },
+/turf/unsimulated/floor/monotile,
+/area/antag/loner)
"pMv" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -111811,6 +111311,16 @@
},
/turf/unsimulated/floor/wood,
/area/centcom/bar)
+"pNo" = (
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet/east,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/starboard_compartment)
"pNs" = (
/obj/effect/floor_decal/corner/mauve{
dir = 5
@@ -112040,20 +111550,6 @@
/obj/structure/table/rack,
/turf/unsimulated/floor/rubber_carpet,
/area/antag/jockey)
-"pPu" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/presentation)
"pPv" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
@@ -112151,6 +111647,17 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/starboard)
+"pQq" = (
+/obj/machinery/smartfridge/secure,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "horizon_commissary_desk"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/operations/commissary)
"pQu" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -112224,18 +111731,6 @@
"pQZ" = (
/turf/simulated/floor/tiled,
/area/shuttle/merchant)
-"pRa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12,26,29,31,48,67)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/full,
-/area/horizon/maintenance/deck_2/cargo_compartment)
"pRd" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 9
@@ -112316,6 +111811,18 @@
/obj/machinery/atmospherics/pipe/simple/visible/black,
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos/air)
+"pRI" = (
+/obj/effect/floor_decal/corner/dark_blue/diagonal,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/flight_deck)
"pRK" = (
/obj/machinery/door/airlock/maintenance{
dir = 1;
@@ -112484,6 +111991,25 @@
/obj/structure/table/wood,
/turf/simulated/floor/carpet,
/area/horizon/command/heads/hos)
+"pSV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/structure/sign/staff_only{
+ pixel_x = -1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"pSY" = (
/obj/effect/floor_decal/corner/yellow{
dir = 4
@@ -113023,6 +112549,16 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/port)
+"pXD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/west,
+/turf/simulated/floor,
+/area/horizon/maintenance/deck_3/aft/port/far)
"pXI" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -113555,28 +113091,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/atmos/turbine)
-"qcG" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/alarm/south{
- alarm_id = 1503;
- breach_detection = 0;
- rcon_setting = 3;
- report_danger_level = 0;
- req_one_access = list(7,47,24,11)
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/isolation_b)
"qcH" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -113939,19 +113453,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/shuttle/skipjack)
-"qeT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/starboard_compartment)
"qeU" = (
/obj/effect/floor_decal/corner/purple{
dir = 6
@@ -113999,6 +113500,21 @@
},
/turf/simulated/floor/reinforced/airless,
/area/horizon/engineering/reactor/indra/mainchamber)
+"qeX" = (
+/obj/machinery/door/airlock/glass_service{
+ dir = 1;
+ name = "Hydroponics";
+ req_access = list(35)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/map_effect/door_helper/unres{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/full,
+/area/horizon/service/hydroponics)
"qfc" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light/small{
@@ -114141,6 +113657,31 @@
/obj/structure/table/wood,
/turf/simulated/floor/holofloor/wood,
/area/horizon/holodeck/source_sauna)
+"qgr" = (
+/obj/effect/floor_decal/corner/black{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/table/steel,
+/obj/item/storage/box/large/flares{
+ pixel_x = -6;
+ pixel_y = 11
+ },
+/obj/item/storage/box/led_collars{
+ pixel_x = 8;
+ pixel_y = 11
+ },
+/obj/item/storage/box/large/flares{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/storage/box/tethers{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/horizon/hangar/auxiliary)
"qgu" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/obj/machinery/atmospherics/pipe/simple/visible/fuel,
@@ -114285,6 +113826,46 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/service/starboard)
+"qhm" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/table/reinforced/steel,
+/obj/item/reagent_containers/chem_disp_cartridge{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/chem_disp_cartridge{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/chem_disp_cartridge{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/chem_disp_cartridge{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/chem_disp_cartridge{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/chem_disp_cartridge{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenobiology/xenoflora)
"qhn" = (
/obj/structure/window/shuttle/unique/scc/scout{
icon_state = "3,2"
@@ -114906,15 +114487,6 @@
/obj/structure/railing/mapped,
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/central)
-"qmN" = (
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_2/cargo_compartment)
"qmR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -115119,6 +114691,25 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/research)
+"qoo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/horizon/maintenance/deck_3/aft/starboard)
"qor" = (
/obj/machinery/alarm/east,
/obj/effect/floor_decal/spline/fancy/wood/cee{
@@ -115263,18 +114854,6 @@
/obj/item/gun/projectile/automatic/rifle/shotgun,
/turf/simulated/floor/shuttle/black,
/area/shuttle/hapt)
-"qpt" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/reinforced,
-/area/horizon/rnd/xenoarch/isolation_b)
"qpM" = (
/obj/structure/window/reinforced{
dir = 4
@@ -115286,24 +114865,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenobiology/xenoflora)
-"qpN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 9
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/closet/crate/plastic,
-/obj/item/storage/bag/inflatable,
-/obj/item/storage/box/large/flares,
-/obj/item/stack/rods/full,
-/obj/item/storage/toolbox/mechanical,
-/obj/random/tool,
-/obj/item/device/radio/sci,
-/obj/item/tent,
-/obj/machinery/alarm/shuttle/quark/east,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/quark/cargo_hold)
"qpU" = (
/obj/effect/floor_decal/corner/lime/diagonal,
/obj/effect/floor_decal/industrial/outline/grey,
@@ -115358,6 +114919,20 @@
/obj/machinery/computer/slot_machine,
/turf/simulated/floor/tiled/dark/full,
/area/antag/raider)
+"qqn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"qqv" = (
/obj/effect/landmark/entry_point/fore{
name = "fore, port ballast"
@@ -115826,30 +115401,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenobiology/foyer)
-"qtJ" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-8";
- d1 = 2;
- d2 = 8
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"qtL" = (
/obj/effect/floor_decal/corner/brown/full{
dir = 8
@@ -116590,6 +116141,21 @@
},
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/port)
+"qzz" = (
+/obj/effect/floor_decal/corner/dark_blue/diagonal,
+/obj/random/pottedplant,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/platform{
+ dir = 1
+ },
+/obj/machinery/alarm/south,
+/turf/simulated/floor/tiled,
+/area/horizon/command/bridge/upperdeck)
"qzK" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 4
@@ -116870,25 +116436,6 @@
name = "shallow water"
},
/area/horizon/holodeck/source_konyang)
-"qBE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 8
- },
-/obj/structure/bed/stool/chair/shuttle/double{
- pixel_x = 8
- },
-/obj/effect/floor_decal/spline/plain/black{
- dir = 1
- },
-/obj/structure/bed/stool/chair/shuttle/double{
- pixel_x = -8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/shuttle/intrepid/west,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/main_compartment)
"qBH" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
@@ -117034,23 +116581,6 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/unsimulated/floor/plating,
/area/centcom/legion)
-"qDc" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/low/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"qDs" = (
/obj/effect/floor_decal/corner/brown{
dir = 10
@@ -117104,6 +116634,24 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/investigations_hallway)
+"qDB" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/disposal/small/south,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenobiology/xenoflora)
"qDD" = (
/obj/effect/floor_decal/corner/red{
dir = 9
@@ -117430,6 +116978,31 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/holodeck_control)
+"qFI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/stairwell/engineering/deck_1)
"qFN" = (
/obj/machinery/anti_bluespace,
/obj/effect/floor_decal/industrial/hatch/grey,
@@ -117528,6 +117101,18 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/auxatmos)
+"qGr" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"qGv" = (
/turf/simulated/wall/r_wall,
/area/horizon/ai/upload)
@@ -117646,15 +117231,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/crew/journalistoffice)
-"qHc" = (
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/horizon/maintenance/deck_3/aft/starboard)
"qHe" = (
/obj/random/junk,
/obj/structure/table/steel,
@@ -117958,17 +117534,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/operations)
-"qIW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/presentation)
"qJc" = (
/obj/machinery/door/airlock/glass_research{
dir = 1;
@@ -118101,6 +117666,18 @@
/obj/machinery/light/small,
/turf/simulated/floor/tiled,
/area/horizon/maintenance/deck_2/wing/starboard/auxatmos)
+"qJD" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"qJE" = (
/obj/effect/floor_decal/corner/lime/diagonal{
dir = 8
@@ -118155,6 +117732,18 @@
},
/turf/simulated/floor,
/area/horizon/hallway/primary/deck_3/starboard)
+"qKl" = (
+/obj/structure/cable/green,
+/obj/structure/bed/stool/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/power/apc/shuttle/east,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/mining)
"qKo" = (
/obj/structure/stairs/north,
/turf/simulated/floor/tiled,
@@ -118521,21 +118110,6 @@
/obj/machinery/atmospherics/pipe/manifold/visible/green,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/atmos/turbine)
-"qMO" = (
-/obj/machinery/door/airlock/glass{
- dir = 1;
- name = "Horizon Dining Hall"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/full,
-/area/horizon/hallway/primary/deck_2/fore)
"qMP" = (
/obj/machinery/door/airlock/external,
/obj/machinery/access_button{
@@ -118559,27 +118133,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/atmos)
-"qMU" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"qMX" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -118958,17 +118511,6 @@
/obj/structure/table/reinforced/steel,
/turf/simulated/floor/shuttle/black,
/area/shuttle/hapt)
-"qQC" = (
-/obj/effect/floor_decal/corner_wide/paleblue{
- dir = 6
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/storage/box/unique/sharps,
-/turf/simulated/floor/tiled/white,
-/area/horizon/medical/surgery)
"qQD" = (
/obj/machinery/door/airlock/maintenance{
dir = 1;
@@ -119000,31 +118542,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/reactor/supermatter/mainchamber)
-"qQI" = (
-/obj/structure/table/steel,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/firealarm/south,
-/obj/effect/floor_decal/corner/dark_blue/full,
-/obj/item/stack/material/steel/full,
-/obj/item/stack/material/steel/full,
-/obj/item/stack/material/glass/reinforced{
- amount = 50
- },
-/obj/item/stack/material/glass/reinforced{
- amount = 50
- },
-/obj/item/stack/material/glass/full,
-/obj/item/stack/material/glass/full,
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/storage/eva)
"qQP" = (
/obj/effect/floor_decal/corner/lime/full{
dir = 8
@@ -119297,6 +118814,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/rnd/xenoarch/isolation_c)
+"qTj" = (
+/obj/effect/floor_decal/corner/beige{
+ dir = 5
+ },
+/obj/structure/table/glass,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/box/evidence{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/item/storage/box/unique/sharps,
+/turf/simulated/floor/tiled/white,
+/area/horizon/security/forensic_laboratory)
"qTs" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -119937,6 +119469,26 @@
/obj/structure/railing/mapped,
/turf/simulated/open,
/area/horizon/hallway/primary/deck_3/central)
+"qYe" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/power/apc/north,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/horizon/command/heads/hos)
"qYi" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -120214,6 +119766,16 @@
/obj/machinery/light/floor,
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenobiology/hazardous)
+"raO" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/tactical/smokebombs{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/box/tactical/flashbangs,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/unsimulated/floor,
+/area/antag/mercenary)
"raQ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -120711,48 +120273,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/shuttle/intrepid/medical)
-"reu" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/table/reinforced/steel,
-/obj/item/reagent_containers/chem_disp_cartridge{
- pixel_x = -5;
- pixel_y = 8
- },
-/obj/item/reagent_containers/chem_disp_cartridge{
- pixel_x = 5;
- pixel_y = 8
- },
-/obj/item/reagent_containers/chem_disp_cartridge{
- pixel_x = -5;
- pixel_y = 8
- },
-/obj/item/reagent_containers/chem_disp_cartridge{
- pixel_x = -5;
- pixel_y = 8
- },
-/obj/item/reagent_containers/chem_disp_cartridge{
- pixel_x = 5;
- pixel_y = 8
- },
-/obj/item/reagent_containers/chem_disp_cartridge{
- pixel_x = 5;
- pixel_y = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenobiology/xenoflora)
"rew" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -120787,6 +120307,18 @@
},
/turf/simulated/floor/plating,
/area/horizon/shuttle/intrepid/flight_deck)
+"reA" = (
+/obj/effect/floor_decal/corner/dark_green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/primary/deck_2/fore)
"reB" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -121453,20 +120985,6 @@
},
/turf/unsimulated/wall/darkshuttlewall,
/area/centcom/legion)
-"rkm" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 7
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/alarm/north{
- pixel_y = 0;
- dir = 8;
- pixel_x = -43
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/representative_one)
"rkn" = (
/obj/structure/cable/green,
/obj/machinery/power/apc/critical/south,
@@ -122545,6 +122063,33 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/storage/eva)
+"rqU" = (
+/obj/machinery/holosign/service{
+ id = "commissary"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor{
+ req_one_access = list(24,11,67,73);
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_mining{
+ dir = 4;
+ name = "Commissary";
+ id_tag = "horizon_commissary_door"
+ },
+/turf/simulated/floor/tiled/full,
+/area/horizon/operations/commissary)
"rre" = (
/obj/effect/map_effect/window_spawner/full/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
@@ -122607,15 +122152,18 @@
/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/medical/pharmacy)
-"rrA" = (
-/obj/random/junk,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"rru" = (
+/obj/machinery/camera/network/prison{
+ c_tag = "Security - Brig Communal Port";
+ dir = 8
},
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/box/unique/donkpockets,
/turf/simulated/floor/tiled,
-/area/horizon/maintenance/deck_1/operations/starboard)
+/area/horizon/security/brig)
"rrF" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -122858,23 +122406,6 @@
/obj/structure/bed/stool/chair/shuttle,
/turf/simulated/floor/shuttle/black,
/area/centcom/specops)
-"rth" = (
-/obj/structure/table/rack,
-/obj/item/storage/box/tactical/teargas{
- pixel_x = -1;
- pixel_y = -4
- },
-/obj/item/storage/box/tactical/flashbangs{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 6
- },
-/turf/unsimulated/floor{
- icon_state = "dark_preview"
- },
-/area/centcom/holding)
"rtx" = (
/obj/effect/decal/fake_object{
dir = 4;
@@ -122925,23 +122456,6 @@
},
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/starboard)
-"rtG" = (
-/obj/effect/floor_decal/corner_wide/green{
- dir = 6
- },
-/obj/effect/floor_decal/corner_wide/green{
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/device/mass_spectrometer{
- pixel_x = 6;
- pixel_y = 2
- },
-/obj/item/storage/box/unique/sharps{
- pixel_x = -5
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/medical/exam)
"rtL" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -123646,27 +123160,6 @@
},
/turf/unsimulated/floor,
/area/antag/raider)
-"ryM" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 5
- },
-/obj/structure/table/stone/marble,
-/obj/item/storage/box/unique/tea{
- pixel_x = -9;
- pixel_y = 8
- },
-/obj/item/storage/box/unique/tea/jaekseol{
- pixel_y = 8
- },
-/obj/item/storage/box/unique/tea/tieguanyin{
- pixel_x = 10;
- pixel_y = 8
- },
-/obj/item/reagent_containers/glass/beaker/teapot/lidded{
- pixel_y = -8
- },
-/turf/simulated/floor/marble/dark,
-/area/horizon/command/bridge/minibar)
"ryO" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -124217,20 +123710,6 @@
},
/turf/simulated/open/airless,
/area/template_noop)
-"rDk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/bar)
"rDw" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
@@ -124263,6 +123742,45 @@
/obj/structure/bed/stool/chair,
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/starboard)
+"rDC" = (
+/obj/effect/floor_decal/corner/teal/diagonal,
+/obj/item/storage/box/large/condiment{
+ pixel_y = 13
+ },
+/obj/effect/decal/fake_object{
+ desc = "A chalkboard with the menu of the cafe written on it.";
+ dir = 8;
+ icon = 'icons/obj/coffeemenu.dmi';
+ icon_state = "left";
+ name = "coffee menu chalkboard";
+ pixel_x = 32
+ },
+/obj/item/reagent_containers/food/condiment/shaker/pumpkinspice{
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/condiment/shaker/peppermill{
+ pixel_x = 2
+ },
+/obj/item/reagent_containers/food/condiment/shaker/salt{
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/food/condiment/shaker/sprinkles{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/storage/box/fancy/donut{
+ pixel_x = 1;
+ pixel_y = -9
+ },
+/obj/structure/table/stone/marble,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/horizon/service/cafeteria)
"rDF" = (
/obj/structure/table/reinforced/wood,
/obj/item/storage/slide_projector,
@@ -124361,6 +123879,14 @@
},
/turf/simulated/floor/tiled,
/area/horizon/service/hydroponics/garden)
+"rEy" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/alarm/east,
+/turf/simulated/floor/tiled/white,
+/area/horizon/medical/reception)
"rEB" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -124393,35 +123919,6 @@
/obj/machinery/mineral/equipment_vendor,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/operations/mining_main/refinery)
-"rEP" = (
-/obj/machinery/holosign/service{
- id = "commissary"
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/door/firedoor{
- req_one_access = list(24,11,67,73);
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_mining{
- dir = 4;
- name = "Commissary";
- id_tag = "horizon_commissary_door"
- },
-/turf/simulated/floor/tiled/full,
-/area/horizon/operations/commissary)
"rEQ" = (
/obj/structure/sign/pods{
desc = "A direction sign which reads 'DROPPODS'.";
@@ -124932,28 +124429,6 @@
/obj/effect/floor_decal/industrial/loading/yellow,
/turf/unsimulated/floor,
/area/antag/mercenary)
-"rIt" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/freezer/rations,
-/obj/item/storage/box/large/produce,
-/obj/item/storage/box/large/produce,
-/obj/item/reagent_containers/food/snacks/koisbar_clean,
-/obj/item/reagent_containers/food/snacks/koisbar_clean,
-/obj/item/storage/box/fancy/egg_box,
-/obj/item/reagent_containers/food/drinks/carton/milk,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/camera/network/intrepid{
- dir = 1;
- c_tag = "Intrepid - Buffet"
- },
-/obj/machinery/power/apc/shuttle/intrepid/west,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/buffet)
"rIu" = (
/obj/effect/floor_decal/corner/red/diagonal,
/obj/effect/floor_decal/spline/fancy{
@@ -125090,6 +124565,14 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/hallway/primary/deck_3/starboard)
+"rJD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenoarch/storage)
"rJG" = (
/obj/effect/floor_decal/industrial/warning/full,
/obj/effect/decal/cleanable/dirt,
@@ -125327,6 +124810,19 @@
dir = 1
},
/area/centcom/legion)
+"rLo" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 7
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/wood,
+/area/horizon/command/bridge/meeting_room)
"rLx" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -125342,6 +124838,10 @@
dir = 9
},
/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/east,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/security_port)
"rLA" = (
@@ -125471,6 +124971,18 @@
},
/turf/simulated/floor/tiled,
/area/horizon/maintenance/deck_2/wing/starboard/auxatmos)
+"rMc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/storage/lower)
"rMe" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -125637,6 +125149,25 @@
},
/turf/simulated/floor/reinforced/n20,
/area/horizon/engineering/atmos/air)
+"rMV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark/full/airless,
+/area/horizon/command/bridge/controlroom)
"rNm" = (
/obj/structure/heavy_vehicle_frame,
/obj/machinery/mech_recharger,
@@ -125911,11 +125442,25 @@
},
/turf/unsimulated/floor,
/area/centcom/legion/hangar5)
+"rPM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/power/apc/low/north,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/horizon/maintenance/deck_3/aft/starboard/far)
"rPS" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
},
/obj/item/material/shard,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/low/west,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/teleporter)
"rPV" = (
@@ -126122,6 +125667,18 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/starboard/nacelle)
+"rRE" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 2 - Starboard Pod Substation";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/substation/wing_port)
"rRQ" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 10
@@ -126554,6 +126111,18 @@
dir = 8
},
/area/horizon/hangar/operations)
+"rUq" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/bed/handrail,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/power/apc/shuttle/north,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/shuttle/intrepid/port_storage)
"rUt" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
@@ -126944,17 +126513,6 @@
/obj/machinery/alarm/west,
/turf/simulated/floor/tiled,
/area/horizon/security/investigations_hallway)
-"rXx" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/horizon/operations/lobby)
"rXC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -127108,22 +126666,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/rnd/xenoarch/presentation)
-"rYV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/dining_hall)
"rYW" = (
/turf/simulated/wall/shuttle/unique/tcfl{
icon_state = "5,6"
@@ -127146,26 +126688,6 @@
dir = 4
},
/area/antag/mercenary)
-"rZi" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/library)
"rZo" = (
/obj/item/device/radio/intercom/south{
pixel_y = 0;
@@ -127411,25 +126933,6 @@
/obj/machinery/power/apc/north,
/turf/simulated/floor/tiled,
/area/horizon/stairwell/engineering/deck_1)
-"scb" = (
-/obj/effect/floor_decal/spline/plain/lime{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/operations/commissary)
"scr" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -128520,6 +128023,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/storage/eva)
+"siF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/dining_hall)
"siM" = (
/obj/structure/platform/ledge,
/obj/structure/sign/poster{
@@ -128546,6 +128063,12 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/main/port)
+"siY" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/table/stone/marble,
+/obj/machinery/alarm/shuttle/south,
+/turf/simulated/floor/tiled/white,
+/area/horizon/shuttle/intrepid/buffet)
"sja" = (
/obj/structure/bed/stool/chair,
/obj/effect/floor_decal/corner/paleblue{
@@ -128626,6 +128149,22 @@
},
/turf/simulated/floor/tiled,
/area/horizon/engineering/atmos/storage)
+"sjA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/horizon/maintenance/deck_3/aft/starboard)
"sjH" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -129810,19 +129349,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/cargo_compartment)
-"ssb" = (
-/obj/structure/platform,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/roller{
- pixel_y = 6
- },
-/obj/item/storage/box/unique/sharps,
-/obj/item/storage/box/unique/sharps,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenobiology/dissection)
"ssd" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -130078,6 +129604,32 @@
/obj/effect/floor_decal/corner/paleblue/full,
/turf/unsimulated/floor/freezer,
/area/antag/mercenary)
+"stT" = (
+/obj/structure/table/rack,
+/obj/item/stack/material/plasteel{
+ amount = 20;
+ pixel_y = 4;
+ randpixel = 0
+ },
+/obj/item/reagent_containers/weldpack,
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Machinist Workshop Starboard 2";
+ dir = 1
+ },
+/obj/item/device/paint_sprayer,
+/obj/structure/platform{
+ dir = 8
+ },
+/obj/item/stack/material/aluminium/full,
+/obj/item/stack/material/aluminium/full,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/material/steel/full,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/operations/machinist)
"stX" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -130111,21 +129663,6 @@
},
/turf/unsimulated/floor/plating,
/area/centcom/distress_prep)
-"sud" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/double/barsign{
- dir = 4;
- pixel_x = -64
- },
-/obj/effect/floor_decal/corner/dark_green/full,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/horizon/hallway/primary/deck_2/fore)
"suf" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -130472,20 +130009,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/storage/eva)
-"sxf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/lino,
-/area/horizon/service/dining_hall)
"sxh" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -130730,6 +130253,24 @@
},
/turf/simulated/wall/shuttle/scc,
/area/horizon/shuttle/intrepid/engineering)
+"syM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"syN" = (
/obj/effect/step_trigger/thrower/shuttle/east,
/turf/space/transit/north,
@@ -130873,6 +130414,13 @@
/obj/item/device/radio/intercom/east,
/turf/simulated/floor/tiled/dark,
/area/horizon/hangar/control)
+"szJ" = (
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_2/cargo_compartment)
"szR" = (
/turf/simulated/wall/r_wall,
/area/horizon/repoffice/representative_two)
@@ -130927,18 +130475,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/security/interrogation)
-"sAh" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 10
- },
-/obj/structure/table/glass,
-/obj/item/storage/box/fancy/vials{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/storage/box/unique/sharps,
-/turf/simulated/floor/tiled/white,
-/area/horizon/security/autopsy_laboratory)
"sAj" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/structure/railing/mapped{
@@ -131197,6 +130733,52 @@
/obj/random/junk,
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/port)
+"sBQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -2
+ },
+/obj/item/device/multitool,
+/obj/item/hoist_kit{
+ pixel_y = 7
+ },
+/obj/structure/table/rack,
+/obj/item/device/binoculars/high_power{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 28;
+ pixel_y = 13
+ },
+/obj/item/crowbar/red,
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/machinery/camera/network/canary{
+ c_tag = "Canary - Main Compartment";
+ dir = 1
+ },
+/obj/item/storage/bag/inflatable,
+/obj/item/device/gps/stationary/sccv_canary{
+ pixel_x = 23;
+ pixel_y = -9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/obj/machinery/alarm/shuttle/south,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/canary)
"sBZ" = (
/obj/machinery/stargazer,
/obj/effect/floor_decal/spline/plain/corner{
@@ -131245,20 +130827,6 @@
"sCh" = (
/turf/template_noop,
/area/horizon/exterior)
-"sCi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/rnd/xenoarch/anomaly_storage)
"sCn" = (
/obj/structure/bed/stool/chair/office/dark,
/obj/effect/floor_decal/corner_wide/paleblue{
@@ -131591,6 +131159,28 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/horizon/shuttle/mining)
+"sEq" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/rnd/xenoarch/hallway/elevator)
"sEs" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/effect/floor_decal/corner/yellow{
@@ -131994,20 +131584,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/command/bridge/aibunker)
-"sHg" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 7
- },
-/obj/machinery/alarm/north{
- pixel_y = 0;
- dir = 8;
- pixel_x = -43
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/representative_two)
"sHi" = (
/obj/machinery/alarm/freezer/west,
/obj/structure/engineer_maintenance/pipe,
@@ -132057,6 +131633,23 @@
"sHz" = (
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/gravity_gen)
+"sHB" = (
+/obj/effect/floor_decal/corner/grey{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/engineer_maintenance/electric{
+ dir = 1
+ },
+/obj/structure/engineer_maintenance/pipe{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/horizon/service/bar)
"sHM" = (
/obj/structure/bed/stool/bar/padded,
/turf/simulated/floor/carpet/rubber,
@@ -132081,23 +131674,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/warden)
-"sHR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10
- },
-/obj/structure/bed/handrail{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/starboard_compartment)
"sHU" = (
/obj/machinery/door/airlock/external{
dir = 1;
@@ -132234,23 +131810,6 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled/white,
/area/horizon/crew/fitness/showers)
-"sIT" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/turf/simulated/floor/tiled,
-/area/horizon/rnd/xenoarch/hallway/elevator)
"sIU" = (
/obj/machinery/door/airlock/glass_service{
dir = 4;
@@ -132565,22 +132124,6 @@
},
/turf/unsimulated/floor,
/area/centcom/bar)
-"sLh" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/low/east,
-/obj/structure/reagent_dispensers/water_cooler{
- pixel_y = 17;
- pixel_x = 11;
- density = 0
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/presentation)
"sLm" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/dark_green{
@@ -132650,6 +132193,16 @@
/obj/structure/trash_pile,
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/port)
+"sLz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/horizon/rnd/xenoarch/isolation_b)
"sLD" = (
/obj/structure/window/reinforced/crescent{
dir = 4
@@ -133047,6 +132600,18 @@
"sOl" = (
/turf/simulated/floor/tiled,
/area/horizon/command/bridge/controlroom)
+"sOp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ name = "Hydroponics";
+ sortType = "Hydroponics"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/full,
+/area/horizon/hallway/primary/deck_2/fore)
"sOr" = (
/obj/structure/bed/stool/chair/office/dark{
dir = 8
@@ -133091,30 +132656,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/service/hydroponics/garden)
-"sOx" = (
-/obj/machinery/door/airlock/external{
- dir = 4;
- id_tag = "riso2";
- name = "Isolation B";
- req_access = list(47)
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/door/blast/regular/open{
- id = "iso_b";
- name = "Safety Blast Door"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/sign/b,
-/obj/structure/plasticflaps/airtight,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/isolation_b)
"sOy" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -133144,6 +132685,24 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/heads/rd)
+"sOP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/library)
"sOQ" = (
/obj/structure/lattice/catwalk/indoor,
/obj/effect/floor_decal/industrial/outline/red,
@@ -133174,19 +132733,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/engineering/reactor/indra/mainchamber)
-"sPd" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/north,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/closet/crate/drinks,
-/obj/effect/floor_decal/industrial/outline/service,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/bar)
"sPo" = (
/obj/structure/lattice,
/obj/structure/grille,
@@ -133316,30 +132862,6 @@
/obj/structure/sign/staff_only,
/turf/unsimulated/floor/plating,
/area/centcom/bar)
-"sQh" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -25
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/representative_one)
"sQi" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/turf/simulated/floor/tiled,
@@ -133349,26 +132871,6 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/command/bridge/aibunker)
-"sQo" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_security{
- dir = 1;
- name = "Warden's Office";
- req_access = list(3)
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/full,
-/area/horizon/security/warden)
"sQq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
@@ -133483,29 +132985,6 @@
},
/turf/unsimulated/floor/wood,
/area/antag/actor)
-"sQX" = (
-/obj/structure/table/standard,
-/obj/machinery/alarm/north{
- dir = 4;
- pixel_y = 0;
- pixel_x = 10
- },
-/obj/item/storage/box/drinkingglasses{
- pixel_x = 6
- },
-/obj/item/storage/box/drinkingglasses{
- pixel_x = 6;
- pixel_y = -8
- },
-/obj/machinery/appliance/cooker/microwave{
- pixel_y = 12
- },
-/obj/item/storage/box/unique/donkpockets{
- pixel_x = -11;
- pixel_y = -5
- },
-/turf/simulated/floor/tiled/full,
-/area/horizon/command/bridge/cciaroom)
"sQY" = (
/obj/machinery/camera/network/service{
c_tag = "Service - Chapel Port";
@@ -133897,35 +133376,6 @@
},
/turf/unsimulated/floor,
/area/antag/loner)
-"sUy" = (
-/obj/effect/floor_decal/corner/dark_blue/full,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table/steel,
-/obj/item/storage/box/large/flares{
- pixel_x = -6
- },
-/obj/item/storage/box/large/flares{
- pixel_x = -6
- },
-/obj/item/storage/box/large/flares{
- pixel_x = -7;
- pixel_y = 11
- },
-/obj/item/storage/box/large/flares{
- pixel_x = -6;
- pixel_y = 11
- },
-/obj/item/storage/box/tethers{
- pixel_x = 8
- },
-/obj/item/storage/box/led_collars{
- pixel_x = 8;
- pixel_y = 11
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/storage/eva)
"sUC" = (
/obj/structure/bed/stool/chair/sofa/left/black{
desc = "A pew, how holy!";
@@ -134777,6 +134227,15 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/white,
/area/horizon/medical/pharmacy)
+"tau" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/alarm/shuttle/north,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_compartment)
"tav" = (
/turf/simulated/floor/tiled/full,
/area/horizon/engineering/reactor/indra/office)
@@ -134863,24 +134322,6 @@
},
/turf/unsimulated/floor/freezer,
/area/centcom/distress_prep)
-"tbG" = (
-/obj/effect/floor_decal/corner_wide/yellow/diagonal,
-/obj/structure/table/steel,
-/obj/structure/noticeboard{
- pixel_y = -32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Meeting Room";
- dir = 1
- },
-/obj/item/storage/box/unique/donkpockets{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/engineering/break_room)
"tbK" = (
/obj/structure/table/stone/marble,
/obj/machinery/chemical_dispenser/coffeemaster/full,
@@ -135383,20 +134824,6 @@
},
/turf/simulated/open,
/area/horizon/hallway/primary/deck_3/central)
-"tgn" = (
-/obj/structure/table/reinforced/steel,
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/storage/box/unique/donkpockets{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/effect/floor_decal/corner/grey{
- dir = 6
- },
-/turf/unsimulated/floor,
-/area/antag/mercenary)
"tgo" = (
/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor,
/obj/structure/cable/green{
@@ -135809,27 +135236,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/reactor/indra/smes)
-"tiQ" = (
-/obj/effect/floor_decal/spline/fancy/wood,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/power/apc/north,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/horizon/command/heads/hos)
"tiY" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -136220,6 +135626,19 @@
},
/turf/simulated/floor/lino,
/area/horizon/security/investigators_office)
+"tlA" = (
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine{
+ anchored = 0;
+ department = "Representative's Office A";
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
+ },
+/obj/machinery/alarm/west,
+/turf/simulated/floor/wood,
+/area/horizon/repoffice/representative_one)
"tlE" = (
/turf/simulated/open,
/area/horizon/stairwell/bridge/deck_3)
@@ -136778,19 +136197,6 @@
/obj/structure/table/wood,
/turf/simulated/floor/holofloor/lino,
/area/horizon/holodeck/source_meetinghall)
-"tpv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/bluespace_beacon,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/main_compartment)
"tpK" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -137199,21 +136605,6 @@
},
/turf/unsimulated/floor/blue_circuit,
/area/antag/wizard)
-"tsa" = (
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/starboard_compartment)
"tsb" = (
/obj/machinery/door/airlock/glass{
dir = 1;
@@ -137242,9 +136633,6 @@
/turf/simulated/floor/carpet/rubber,
/area/horizon/operations/machinist)
"tsl" = (
-/obj/effect/floor_decal/corner_wide/paleblue/full{
- dir = 8
- },
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
@@ -137256,6 +136644,9 @@
/obj/item/gun/projectile/sec/unloaded,
/obj/item/gun/projectile/sec/unloaded,
/obj/item/gun/projectile/sec/unloaded,
+/obj/effect/floor_decal/corner_wide/paleblue/full{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark/full,
/area/horizon/security/armoury)
"tsq" = (
@@ -138224,6 +137615,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/hangar/intrepid)
+"tyY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/medical/gen_treatment)
"tze" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 6
@@ -138292,6 +137692,20 @@
},
/turf/simulated/floor/airless,
/area/horizon/hangar/operations)
+"tzv" = (
+/obj/machinery/door/airlock/service{
+ dir = 1;
+ name = "Bar - Backroom";
+ req_access = list(25)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/full,
+/area/horizon/service/bar)
"tzy" = (
/obj/machinery/light{
dir = 1
@@ -138394,6 +137808,15 @@
"tAq" = (
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/workshop)
+"tAr" = (
+/obj/structure/closet/walllocker/medical/secure/donor_blood{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/horizon/medical/surgery/storage)
"tAy" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -138470,19 +137893,6 @@
},
/turf/unsimulated/floor/blue_circuit,
/area/centcom/control)
-"tAY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/industrial/hatch/red,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/command/bridge/selfdestruct)
"tBb" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -138752,6 +138162,25 @@
temperature = 253.15
},
/area/horizon/service/kitchen/freezer)
+"tDa" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/table/wood,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 8;
+ pixel_x = 3
+ },
+/obj/item/storage/box/drinkingglasses{
+ pixel_x = -13;
+ pixel_y = 7
+ },
+/obj/machinery/alarm/east,
+/turf/simulated/floor/wood,
+/area/horizon/repoffice/consular_one)
"tDj" = (
/obj/machinery/computer/shuttle_control/lift{
pixel_y = -1;
@@ -139315,27 +138744,6 @@
},
/turf/simulated/floor,
/area/horizon/hallway/primary/deck_3/starboard)
-"tGM" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/table/steel,
-/obj/item/storage/box/large/flares{
- pixel_x = -6;
- pixel_y = 11
- },
-/obj/item/storage/box/led_collars{
- pixel_x = 8;
- pixel_y = 11
- },
-/obj/item/storage/box/large/flares{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/storage/box/tethers{
- pixel_x = 8;
- pixel_y = 2
- },
-/turf/simulated/floor/plating,
-/area/horizon/hangar/intrepid)
"tGN" = (
/obj/machinery/portable_atmospherics/powered/scrubber,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -139488,22 +138896,6 @@
/obj/structure/table/reinforced/steel,
/turf/unsimulated/floor/plating,
/area/centcom/specops)
-"tHC" = (
-/obj/structure/bed/stool/chair/shuttle/double{
- pixel_x = -8
- },
-/obj/structure/bed/stool/chair/shuttle/double{
- pixel_x = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 1
- },
-/obj/effect/floor_decal/spline/plain/black{
- dir = 10
- },
-/obj/machinery/alarm/shuttle/intrepid/north,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/starboard_compartment)
"tHH" = (
/obj/effect/floor_decal/corner/lime{
dir = 6
@@ -139524,19 +138916,6 @@
"tHN" = (
/turf/simulated/open,
/area/horizon/hallway/primary/deck_3/central)
-"tHO" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/bed/handrail,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/power/apc/shuttle/intrepid/north,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/port_storage)
"tHP" = (
/obj/machinery/recharger{
pixel_y = 4
@@ -139606,6 +138985,19 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/horizon/hallway/primary/deck_2/starboard)
+"tIV" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable/green{
+ icon_state = "11-1"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/horizon/maintenance/deck_3/security/starboard)
"tIZ" = (
/obj/effect/floor_decal/corner/red/diagonal,
/obj/structure/disposalpipe/segment,
@@ -139654,17 +139046,6 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/engineering/hallway/interior)
-"tJh" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "2-8";
- d1 = 2;
- d2 = 8
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/rnd/xenoarch/anomaly_storage)
"tJm" = (
/obj/effect/floor_decal/corner/black{
dir = 5
@@ -139717,6 +139098,19 @@
},
/turf/simulated/floor/tiled,
/area/horizon/operations/break_room)
+"tJS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 7
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/wood,
+/area/horizon/command/heads/xo)
"tJU" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 10
@@ -140091,6 +139485,22 @@
},
/turf/simulated/floor/wood,
/area/horizon/repoffice/representative_two)
+"tMN" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/test_range)
"tMW" = (
/obj/structure/flora/ausbushes/fullgrass,
/turf/simulated/floor/exoplanet/grass/grove,
@@ -140530,17 +139940,6 @@
},
/turf/simulated/wall/r_wall,
/area/horizon/engineering/gravity_gen)
-"tQV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/junction_compartment)
"tRj" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{
dir = 4
@@ -140739,6 +140138,19 @@
},
/turf/unsimulated/floor,
/area/centcom/legion/hangar5)
+"tSN" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/west,
+/obj/structure/closet/walllocker/medical/secure/donor_blood{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/horizon/medical/surgery/storage)
"tST" = (
/obj/structure/table/rack,
/obj/item/clothing/head/helmet/legion{
@@ -140795,6 +140207,24 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_3/aft/port)
+"tTi" = (
+/obj/effect/floor_decal/corner_wide/yellow/diagonal,
+/obj/structure/table/steel,
+/obj/structure/noticeboard{
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Meeting Room";
+ dir = 1
+ },
+/obj/item/storage/box/unique/donkpockets{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/engineering/break_room)
"tTp" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/floor_decal/corner/dark_green{
@@ -140932,6 +140362,18 @@
/obj/effect/floor_decal/corner/dark_green/diagonal,
/turf/simulated/floor/tiled,
/area/horizon/security/checkpoint2)
+"tUv" = (
+/obj/effect/floor_decal/corner_wide/paleblue{
+ dir = 9
+ },
+/obj/machinery/power/apc/west,
+/obj/structure/table/standard,
+/obj/item/storage/box/unique/sharps,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/medical/surgery)
"tUz" = (
/obj/effect/floor_decal/spline/plain/grey{
dir = 6
@@ -141696,6 +141138,15 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenological)
+"tZW" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/item/storage/box/unique/monkeycubes,
+/obj/machinery/alarm/east,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/rnd/xenobiology)
"uac" = (
/obj/structure/cable/green{
icon_state = "0-2"
@@ -141883,18 +141334,6 @@
/obj/structure/window/shuttle/scc_space_ship/cardinal,
/turf/simulated/floor/plating,
/area/shuttle/merchant)
-"ubz" = (
-/obj/effect/floor_decal/spline/fancy/wood/cee{
- dir = 8
- },
-/obj/structure/filingcabinet/chestdrawer{
- pixel_x = 8
- },
-/obj/structure/filingcabinet{
- pixel_x = -8
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/representative_two)
"ubA" = (
/obj/machinery/light{
dir = 4
@@ -142847,6 +142286,14 @@
/obj/random/dirt_75,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/port/far)
+"uiN" = (
+/obj/structure/bed/stool/chair/sofa/right/brown,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/north,
+/turf/simulated/floor/carpet/green,
+/area/horizon/medical/psych)
"uiR" = (
/obj/machinery/iv_drip{
pixel_x = -3
@@ -142983,23 +142430,6 @@
opacity = 1
},
/area/horizon/shuttle/canary)
-"ukc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/horizon/service/library)
"ukf" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -144078,17 +143508,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/horizon/engineering/reactor/indra/mainchamber)
-"urR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/main_compartment)
"urS" = (
/obj/machinery/light/small{
dir = 8;
@@ -144172,6 +143591,24 @@
},
/turf/simulated/floor/reinforced,
/area/horizon/rnd/xenobiology)
+"uso" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/material/kitchen/rollingpin{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/item/material/knife{
+ pixel_x = -9
+ },
+/obj/item/storage/box/large/produce,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/service/kitchen)
"usq" = (
/obj/machinery/door/airlock/glass_research{
name = "Research and Development";
@@ -144353,25 +143790,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/substation/medical)
-"utG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor,
-/area/horizon/maintenance/deck_3/aft/starboard)
"utJ" = (
/obj/effect/floor_decal/corner/dark_green/full,
/turf/simulated/floor/tiled,
@@ -145108,6 +144526,20 @@
/obj/structure/grille,
/turf/simulated/open/airless,
/area/horizon/exterior)
+"uAh" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/valve/digital/open{
+ dir = 4;
+ name = "Isolation C"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/atrium)
"uAm" = (
/obj/structure/sign/biohazard{
pixel_x = -1;
@@ -145654,6 +145086,34 @@
icon_state = "wood-broken2"
},
/area/centcom/legion/hangar5)
+"uDy" = (
+/obj/machinery/power/smes/batteryrack{
+ input_level = 50000;
+ output_level = 45000
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/substation/wing_port)
+"uDB" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/atrium)
"uDC" = (
/obj/effect/floor_decal/sign/gtr,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -145867,27 +145327,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/intrepid)
-"uEI" = (
-/obj/effect/floor_decal/corner/dark_green{
- dir = 10
- },
-/obj/effect/floor_decal/spline/plain/lime{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/floor,
-/turf/simulated/floor/tiled,
-/area/horizon/service/hydroponics/lower)
"uEM" = (
/obj/effect/landmark/entry_point/port{
name = "port, deck 1 maintenance"
@@ -146158,6 +145597,18 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos/propulsion/starboard)
+"uHe" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/horizon/medical/psych)
"uHh" = (
/obj/machinery/telecomms/server/presets/supply,
/turf/simulated/floor/bluegrid,
@@ -146195,19 +145646,6 @@
/obj/structure/table/reinforced/steel,
/turf/simulated/floor/carpet/rubber,
/area/horizon/command/bridge/controlroom)
-"uHo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/corner/dark_green{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/horizon/hallway/primary/deck_2/fore)
"uHq" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -146608,23 +146046,23 @@
},
/turf/simulated/floor/exoplanet/barren/raskara,
/area/centcom/shared_dream)
-"uJE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+"uJD" = (
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = -19
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/corner/beige/full,
+/obj/machinery/light,
+/obj/machinery/power/apc/west,
+/obj/structure/cable/green{
+ icon_state = "0-4"
},
-/obj/machinery/firealarm/west{
- dir = 2;
- pixel_x = 0;
- pixel_y = -22
+/obj/structure/coatrack{
+ pixel_x = -9;
+ pixel_y = 1
},
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/horizon/rnd/xenoarch/presentation)
+/turf/simulated/floor/tiled/white,
+/area/horizon/security/forensic_laboratory)
"uJI" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -146922,6 +146360,26 @@
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/aft)
+"uLN" = (
+/obj/effect/floor_decal/industrial/hatch_door/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor{
+ req_one_access = list(24,11,67,73)
+ },
+/obj/machinery/door/airlock/glass_command{
+ dir = 1;
+ id_tag = "intrepid_flightdeck";
+ name = "Intrepid Flight Deck";
+ req_access = list(73)
+ },
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/flight_deck)
"uLX" = (
/obj/effect/floor_decal/spline/fancy/wood,
/obj/random/pottedplant,
@@ -146944,6 +146402,15 @@
},
/turf/simulated/open,
/area/horizon/hallway/primary/deck_3/central)
+"uMe" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/presentation)
"uMf" = (
/obj/effect/shuttle_landmark/horizon/dock/deck_3/port_1,
/obj/machinery/door/airlock/external,
@@ -147440,6 +146907,14 @@
/obj/structure/tank_wall/phoron,
/turf/simulated/floor/airless,
/area/horizon/engineering/atmos)
+"uQi" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/alarm/east,
+/turf/simulated/floor/grass/no_edge,
+/area/horizon/command/bridge/upperdeck)
"uQl" = (
/obj/random/pottedplant,
/obj/structure/railing/mapped,
@@ -148386,25 +147861,6 @@
},
/turf/simulated/floor/carpet,
/area/horizon/command/heads/rd)
-"uWw" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/turf/simulated/floor/tiled/dark/full/airless,
-/area/horizon/command/bridge/controlroom)
"uWx" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/tank_wall/nitrous_oxide{
@@ -148464,6 +147920,10 @@
},
/turf/simulated/floor,
/area/horizon/maintenance/deck_3/aft/starboard/far)
+"uWZ" = (
+/obj/machinery/alarm/west,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/stairwell/bridge/deck_2)
"uXb" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 5
@@ -148730,16 +148190,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/operations)
-"uYC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/junction_compartment)
"uYN" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/turf/simulated/floor,
@@ -148867,6 +148317,19 @@
},
/turf/simulated/floor/reinforced/airmix,
/area/horizon/engineering/atmos/air)
+"uZL" = (
+/obj/effect/floor_decal/corner/dark_blue{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/east,
+/turf/simulated/floor/tiled,
+/area/horizon/command/bridge/controlroom)
"uZQ" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 6
@@ -149126,22 +148589,6 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_2/wing/port/near)
-"vbU" = (
-/obj/machinery/door/firedoor{
- req_one_access = list(24,11,67,73)
- },
-/obj/effect/floor_decal/industrial/hatch_door/yellow{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/main_compartment)
"vbV" = (
/obj/effect/floor_decal/spline/fancy/wood/cee{
dir = 8
@@ -149220,22 +148667,6 @@
},
/turf/simulated/open/airless,
/area/horizon/exterior)
-"vco" = (
-/obj/structure/closet/secure_closet/refrigerator/standard,
-/obj/item/storage/box/fancy/egg_box,
-/obj/item/storage/box/fancy/egg_box,
-/obj/item/reagent_containers/food/drinks/carton/milk,
-/obj/item/reagent_containers/food/drinks/carton/milk,
-/obj/item/reagent_containers/food/drinks/carton/soymilk,
-/obj/item/reagent_containers/food/drinks/carton/soymilk,
-/obj/machinery/firealarm/east,
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/item/reagent_containers/food/drinks/carton/cream,
-/obj/item/reagent_containers/food/drinks/carton/cream,
-/obj/item/reagent_containers/food/condiment/soysauce,
-/obj/item/reagent_containers/food/condiment/soysauce,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/service/kitchen)
"vcq" = (
/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{
id = "bar_fore";
@@ -149381,54 +148812,6 @@
/obj/item/bedsheet/purple,
/turf/simulated/floor/carpet/art,
/area/shuttle/skipjack)
-"vdg" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Less than Lethal Ammunitions"
- },
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/effect/floor_decal/corner_wide/paleblue{
- dir = 10
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/storage/box/shells/flashshells{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/storage/box/shells/trackingslugs,
-/obj/item/storage/box/shells/beanbags{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/storage/box/shells/beanbags{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/storage/box/shells/stunshells,
-/obj/item/storage/box/shells/beanbags,
-/obj/item/storage/box/shells/beanbags,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/mc9mmt/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/obj/item/ammo_magazine/c45m/rubber,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/security/armoury)
"vdj" = (
/obj/machinery/requests_console/north{
department = "Bar";
@@ -149535,6 +148918,59 @@
icon_state = "dark_preview"
},
/area/centcom/holding)
+"vdX" = (
+/obj/effect/floor_decal/corner/dark_blue/full{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ name = "Weaponry (Practice Ammunition)";
+ req_access = list(1)
+ },
+/obj/effect/floor_decal/industrial/outline/security,
+/obj/item/device/radio/intercom/west,
+/obj/item/storage/box/shells/practiceshells,
+/obj/item/storage/box/shells/practiceshells,
+/obj/item/storage/box/shells/practiceshells,
+/obj/item/ammo_magazine/c45m/practice{
+ pixel_x = 4
+ },
+/obj/item/ammo_magazine/c45m/practice{
+ pixel_x = -4
+ },
+/obj/item/ammo_magazine/c45m/practice{
+ pixel_x = -4
+ },
+/obj/item/ammo_magazine/c45m/practice{
+ pixel_x = -4
+ },
+/obj/item/ammo_magazine/c45m/practice{
+ pixel_x = 4
+ },
+/obj/item/ammo_magazine/c45m/practice{
+ pixel_x = 4
+ },
+/obj/item/ammo_magazine/a556/carbine/practice{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/a556/carbine/practice{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/a556/carbine/practice{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/a556/carbine/practice{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/machinery/power/apc/north,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/security/firing_range)
"vdY" = (
/obj/machinery/constructable_frame/machine_frame,
/turf/simulated/floor/carpet/rubber,
@@ -149865,19 +149301,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/port)
-"vha" = (
-/obj/machinery/power/smes/batteryrack{
- input_level = 50000;
- output_level = 45000
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/substation/wing_port)
"vhe" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 5
@@ -150000,16 +149423,6 @@
},
/turf/simulated/floor/holofloor/grass,
/area/horizon/holodeck/source_picnicarea)
-"vhK" = (
-/obj/structure/table/rack,
-/obj/item/storage/box/tactical/smokebombs{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/storage/box/tactical/flashbangs,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/unsimulated/floor,
-/area/antag/mercenary)
"vhO" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/structure/railing/mapped,
@@ -150040,6 +149453,24 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/shuttle/intrepid/flight_deck)
+"vie" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/library)
"vih" = (
/obj/structure/bed/stool/padded/beige{
dir = 1
@@ -150068,23 +149499,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/horizon/security/investigations_hallway)
-"vis" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
-/obj/structure/bed/stool/bar/padded/red{
- dir = 1
- },
-/turf/simulated/floor/lino,
-/area/horizon/service/bar)
"vit" = (
/obj/machinery/conveyor{
dir = 8;
@@ -150135,6 +149549,32 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/command/bridge/aibunker)
+"viT" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/airlock/security{
+ dir = 4;
+ id_tag = "HoSdoor";
+ name = "Head of Security's Office";
+ req_access = list(58);
+ secured_wires = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/command/heads/hos)
"viY" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -150626,17 +150066,6 @@
/obj/effect/floor_decal/industrial/warning,
/turf/unsimulated/floor/plating,
/area/centcom/bar)
-"vlU" = (
-/obj/structure/closet/crate/secure/legion,
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/handcuffs,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/storage/box/tactical/teargas,
-/turf/unsimulated/floor,
-/area/centcom/legion)
"vlV" = (
/obj/item/storage/box/fancy/cigarettes/cigar{
pixel_y = 4
@@ -150689,6 +150118,16 @@
},
/turf/simulated/floor/lino,
/area/horizon/service/cafeteria)
+"vmj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/starboard_compartment)
"vms" = (
/obj/effect/decal{
anchored = 1;
@@ -151073,15 +150512,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/rnd/xenobiology/xenoflora)
-"voS" = (
-/obj/structure/bed/stool/chair/sofa/right/brown,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/north,
-/turf/simulated/floor/carpet/green,
-/area/horizon/medical/psych)
"voU" = (
/obj/effect/floor_decal/corner/dark_green{
dir = 10
@@ -151612,6 +151042,18 @@
/obj/machinery/telecomms/bus/preset_three,
/turf/simulated/floor/bluegrid,
/area/horizon/tcommsat/chamber)
+"vsY" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/structure/table/glass,
+/obj/item/storage/box/fancy/vials{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/unique/sharps,
+/turf/simulated/floor/tiled/white,
+/area/horizon/security/autopsy_laboratory)
"vte" = (
/obj/effect/floor_decal/industrial/hatch/red,
/obj/effect/floor_decal/industrial/warning,
@@ -151694,6 +151136,37 @@
},
/turf/simulated/floor/wood,
/area/horizon/service/cafeteria)
+"vtT" = (
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = 24;
+ pixel_x = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/coatrack{
+ pixel_y = 23;
+ pixel_x = -6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/horizon/command/heads/hos)
"vtW" = (
/obj/structure/platform_deco{
icon_state = "ledge_deco"
@@ -151975,21 +151448,6 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/rnd/xenobiology/dissection)
-"vvY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"vwe" = (
/obj/effect/floor_decal/spline/plain{
dir = 5
@@ -152373,26 +151831,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/hangar/operations)
-"vyS" = (
-/obj/machinery/door/airlock/research{
- name = "Secure Artifact Storage";
- req_access = list(47);
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/anomaly_storage)
"vyT" = (
/obj/random/junk,
/turf/simulated/floor/plating,
@@ -152601,6 +152039,27 @@
},
/turf/simulated/floor/reinforced/airmix,
/area/horizon/engineering/atmos/air)
+"vAs" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/steel,
+/obj/item/storage/box/large/flares{
+ pixel_x = -6;
+ pixel_y = 11
+ },
+/obj/item/storage/box/led_collars{
+ pixel_x = 8;
+ pixel_y = 11
+ },
+/obj/item/storage/box/large/flares{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/storage/box/tethers{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/turf/simulated/floor/plating,
+/area/horizon/hangar/intrepid)
"vAw" = (
/obj/structure/closet/secure_closet/machinist,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -152630,6 +152089,18 @@
},
/turf/simulated/floor/tiled,
/area/horizon/medical/paramedic)
+"vAP" = (
+/obj/structure/table/wood/gamblingtable,
+/obj/item/storage/box/unique/donkpockets{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/unsimulated/floor/wood,
+/area/antag/actor)
"vAT" = (
/obj/effect/floor_decal/corner_wide/blue{
dir = 9
@@ -152826,16 +152297,6 @@
/obj/random/dirt_75,
/turf/simulated/floor/tiled/dark,
/area/horizon/maintenance/deck_2/wing/port/nacelle)
-"vCj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/rnd/xenoarch/storage)
"vCl" = (
/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
@@ -153061,6 +152522,20 @@
/obj/structure/table/reinforced/steel,
/turf/unsimulated/floor,
/area/centcom/legion/hangar5)
+"vDP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/valve/digital/open{
+ dir = 4;
+ name = "Isolation C"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/xenoarch/atrium)
"vDQ" = (
/obj/structure/table/standard,
/obj/item/reagent_containers/glass/bottle/bicaridine{
@@ -153113,6 +152588,15 @@
/obj/machinery/portable_atmospherics/canister/hydrogen,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/engineering/storage_hard)
+"vEm" = (
+/obj/machinery/constructable_frame/machine_frame,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/substation/wing_starboard)
"vEo" = (
/obj/effect/floor_decal/spline/plain/corner{
dir = 4
@@ -153310,17 +152794,6 @@
},
/turf/simulated/floor/carpet/cyan,
/area/shuttle/merchant)
-"vFJ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/shuttle/intrepid/north,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_compartment)
"vFQ" = (
/obj/machinery/shower{
pixel_y = 20
@@ -153752,6 +153225,17 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/bridge/meeting_room)
+"vJs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/dark_green{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/primary/deck_2/fore)
"vJB" = (
/obj/effect/floor_decal/corner/lime{
dir = 5
@@ -154038,27 +153522,6 @@
},
/turf/simulated/floor/holofloor/tiled,
/area/horizon/holodeck/source_lasertag)
-"vLk" = (
-/obj/effect/floor_decal/industrial/hatch_door/yellow{
- dir = 8
- },
-/obj/machinery/door/firedoor{
- req_one_access = list(24,11,67,73)
- },
-/obj/machinery/door/airlock/hatch{
- name = "Starboard Nacelle"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/engineering)
"vLn" = (
/obj/structure/sign/electricshock{
pixel_x = 32
@@ -154886,6 +154349,23 @@
name = "shallow water"
},
/area/horizon/holodeck/source_konyang)
+"vRs" = (
+/obj/effect/floor_decal/corner/dark_green{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/operations/commissary)
"vRz" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/machinery/light/small/emergency{
@@ -154916,14 +154396,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/engineering/atmos/air)
-"vRP" = (
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/low/west,
-/turf/simulated/floor/carpet/rubber,
-/area/horizon/maintenance/deck_1/workshop)
"vRS" = (
/obj/effect/floor_decal/spline/fancy,
/obj/item/paper_bin{
@@ -155103,6 +154575,35 @@
/obj/effect/floor_decal/industrial/warning/cee,
/turf/simulated/floor/reinforced/airless,
/area/horizon/engineering/reactor/supermatter/mainchamber)
+"vTL" = (
+/obj/effect/floor_decal/corner/dark_blue/full,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/item/storage/box/large/flares{
+ pixel_x = -6
+ },
+/obj/item/storage/box/large/flares{
+ pixel_x = -6
+ },
+/obj/item/storage/box/large/flares{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/obj/item/storage/box/large/flares{
+ pixel_x = -6;
+ pixel_y = 11
+ },
+/obj/item/storage/box/tethers{
+ pixel_x = 8
+ },
+/obj/item/storage/box/led_collars{
+ pixel_x = 8;
+ pixel_y = 11
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/storage/eva)
"vTM" = (
/obj/machinery/light{
dir = 8
@@ -155271,6 +154772,12 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark/full,
/area/horizon/command/heads/rd)
+"vUN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/operations/starboard)
"vUP" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 10
@@ -155422,6 +154929,18 @@
"vVz" = (
/turf/simulated/floor/carpet/rubber,
/area/horizon/command/bridge/controlroom)
+"vVA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/horizon/service/bar)
"vVB" = (
/obj/structure/table/rack,
/obj/item/plastique{
@@ -155495,6 +155014,17 @@
},
/turf/simulated/open,
/area/horizon/hallway/primary/deck_3/central)
+"vVU" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/shuttle/east,
+/turf/simulated/floor/tiled/white,
+/area/horizon/shuttle/intrepid/medical)
"vVV" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -155842,30 +155372,6 @@
/obj/effect/floor_decal/industrial/hatch_tiny/yellow,
/turf/simulated/floor/tiled,
/area/horizon/operations/mining_main/refinery)
-"vYj" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/effect/floor_decal/spline/plain/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/spline/plain/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/service/kitchen)
"vYk" = (
/obj/effect/floor_decal/industrial/warning{
dir = 9
@@ -156293,6 +155799,17 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/command/bridge/controlroom)
+"wbo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/bluespace_beacon,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/main_compartment)
"wbr" = (
/obj/machinery/light/small/emergency{
dir = 1
@@ -156536,22 +156053,6 @@
/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/wood,
/area/horizon/command/bridge/minibar)
-"wcD" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark/full,
-/area/horizon/shuttle/intrepid/junction_compartment)
"wcE" = (
/obj/structure/table/rack,
/obj/machinery/light{
@@ -157219,6 +156720,20 @@
"whu" = (
/turf/unsimulated/wall/fakepdoor,
/area/centcom/legion/hangar5)
+"whx" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 9
+ },
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/structure/closet/crate,
+/obj/item/storage/box/unique/monkeycubes,
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/test_range)
"why" = (
/obj/structure/stairs_railing{
dir = 4;
@@ -157795,23 +157310,6 @@
},
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/telesci)
-"wlO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/service{
- c_tag = "Dinner - Kitchen Freezer";
- dir = 8
- },
-/turf/simulated/floor/tiled/freezer{
- name = "cooled tiles";
- temperature = 253.15
- },
-/area/horizon/service/kitchen/freezer)
"wlP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -158047,21 +157545,6 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/hangar/intrepid)
-"wno" = (
-/obj/structure/bed/stool/chair/padded/red{
- dir = 8
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/engineer_maintenance/electric/wall,
-/turf/simulated/floor/wood,
-/area/horizon/service/dining_hall)
"wnq" = (
/obj/effect/floor_decal/corner/dark_blue{
dir = 9
@@ -158233,6 +157716,15 @@
},
/turf/unsimulated/floor/carpet,
/area/centcom/bar)
+"woC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/main/starboard)
"woE" = (
/obj/structure/railing/mapped{
dir = 8
@@ -158323,16 +157815,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/shuttle/skipjack)
-"wps" = (
-/obj/effect/floor_decal/corner/dark_blue{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/north,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/stairwell/bridge/deck_2)
"wpz" = (
/obj/structure/railing/mapped,
/obj/structure/table/rack,
@@ -158751,27 +158233,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/maintenance/deck_1/wing/starboard/far)
-"wrb" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/table/rack,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/item/storage/box/unique/monkeycubes,
-/obj/item/reagent_containers/spray/chemsprayer/xenobiology,
-/obj/item/reagent_containers/spray/chemsprayer/xenobiology,
-/obj/item/melee/baton/slime{
- pixel_x = 3;
- pixel_y = -1
- },
-/obj/item/melee/baton/slime{
- pixel_x = 3;
- pixel_y = -1
- },
-/obj/item/reagent_containers/spray/cleaner,
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenobiology)
"wri" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -159279,6 +158740,16 @@
/obj/item/device/radio/intercom/west,
/turf/simulated/floor/tiled/white,
/area/horizon/crew/washroom/deck_3)
+"wtP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_compartment)
"wtR" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/shutters/open{
@@ -160297,20 +159768,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/command/bridge/cciaroom)
-"wAV" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/bed/handrail{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_compartment)
"wAY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/mech_wreckage{
@@ -160546,22 +160003,6 @@
/obj/structure/cart/storage/parcelcart,
/turf/simulated/floor/tiled,
/area/horizon/operations/mail_room)
-"wDd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/turf/simulated/floor/plating,
-/area/horizon/engineering/storage/lower)
"wDe" = (
/obj/machinery/door/airlock/command{
id_tag = "rep_office_a";
@@ -160780,23 +160221,6 @@
"wEr" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/horizon/operations/office_aux)
-"wEu" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 7
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm/west{
- dir = 1;
- pixel_x = 0;
- pixel_y = 31
- },
-/turf/simulated/floor/wood,
-/area/horizon/command/bridge/meeting_room)
"wEy" = (
/obj/machinery/recharge_station,
/obj/effect/floor_decal/corner/brown{
@@ -160819,6 +160243,23 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/engineering/atmos/propulsion/starboard)
+"wEO" = (
+/obj/effect/floor_decal/spline/plain/lime{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/operations/commissary)
"wEQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
@@ -161368,6 +160809,25 @@
/obj/effect/floor_decal/corner/lime/diagonal,
/turf/simulated/floor/tiled/white,
/area/horizon/medical/washroom)
+"wKi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/structure/bed/stool/chair/shuttle/double{
+ pixel_x = 8
+ },
+/obj/effect/floor_decal/spline/plain/black{
+ dir = 1
+ },
+/obj/structure/bed/stool/chair/shuttle/double{
+ pixel_x = -8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/shuttle/west,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/main_compartment)
"wKl" = (
/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 8
@@ -161384,6 +160844,15 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/hangar/starboard)
+"wKo" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/operations/lobby)
"wKq" = (
/obj/structure/shuttle_part/mercenary/small{
icon_state = "1,12"
@@ -161958,18 +161427,6 @@
/obj/structure/shuttle_part/mercenary/small,
/turf/unsimulated/floor/plating,
/area/shuttle/syndicate_elite)
-"wOR" = (
-/obj/structure/table/wood,
-/obj/machinery/photocopier/faxmachine{
- anchored = 0;
- department = "Representative's Office A";
- pixel_y = 4
- },
-/obj/effect/floor_decal/spline/fancy/wood/cee{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/horizon/repoffice/representative_one)
"wOU" = (
/turf/simulated/wall/shuttle/unique/ccia{
icon_state = "4,4"
@@ -162214,6 +161671,19 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/brig)
+"wQK" = (
+/obj/structure/bed/stool/chair/padded/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/engineer_maintenance/electric/wall,
+/turf/simulated/floor/wood,
+/area/horizon/service/dining_hall)
"wQR" = (
/obj/machinery/door/firedoor,
/obj/structure/window/shuttle/scc_space_ship,
@@ -162482,31 +161952,6 @@
},
/turf/simulated/floor/wood,
/area/horizon/service/chapel/main)
-"wSn" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/horizon/rnd/xenoarch/atrium)
"wSp" = (
/obj/structure/tank_wall{
density = 0;
@@ -163218,17 +162663,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/security/interrogation)
-"wWw" = (
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/decal/cleanable/generic,
-/turf/simulated/floor/carpet/rubber,
-/area/horizon/maintenance/deck_1/workshop)
"wWD" = (
/obj/structure/holostool{
dir = 4
@@ -163324,24 +162758,19 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/horizon/medical/reception)
-"wWN" = (
-/obj/structure/platform_deco{
- dir = 1
+"wWO" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/machinery/disposal/small/north,
-/obj/effect/floor_decal/corner/paleblue/full{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
},
-/obj/machinery/alarm/north{
- dir = 4;
- pixel_y = 0;
- pixel_x = 10
- },
-/turf/simulated/floor/tiled,
-/area/horizon/command/bridge/cciaroom/lounge)
+/turf/simulated/floor/tiled/white,
+/area/horizon/rnd/test_range)
"wWR" = (
/turf/simulated/open/airless,
/area/template_noop)
@@ -163380,18 +162809,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/starboard)
-"wXD" = (
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/extinguisher_cabinet/west,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/port_compartment)
"wXN" = (
/obj/machinery/atmospherics/pipe/manifold/visible/red{
dir = 4
@@ -163431,27 +162848,6 @@
},
/turf/simulated/floor/tiled/dark/full,
/area/horizon/shuttle/intrepid/starboard_compartment)
-"wXZ" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- d1 = 4;
- d2 = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1;
- name = "Xenoarchaelogy Presentation"
- },
-/obj/machinery/door/firedoor/multi_tile{
- dir = 1
- },
-/turf/simulated/floor/tiled/full,
-/area/horizon/rnd/xenoarch/presentation)
"wYa" = (
/obj/machinery/light{
dir = 1
@@ -163799,30 +163195,6 @@
},
/turf/simulated/floor/plating,
/area/horizon/maintenance/deck_1/wing/starboard/far)
-"wZO" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 5
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/turf/simulated/floor/plating,
-/area/horizon/maintenance/deck_1/main/starboard)
"wZV" = (
/obj/structure/lattice,
/obj/structure/railing/mapped{
@@ -164064,6 +163436,17 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hangar/operations)
+"xbc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/power/apc/super/north,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/holodeck_control)
"xbj" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/structure/disposalpipe/segment,
@@ -164193,17 +163576,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/unsimulated/floor/monotile,
/area/antag/jockey)
-"xcl" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/horizon/shuttle/intrepid/main_compartment)
"xcs" = (
/obj/structure/platform{
dir = 4
@@ -165484,6 +164856,12 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/horizon/operations/mining_main/refinery)
+"xnI" = (
+/obj/machinery/atm{
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/service/bar)
"xnL" = (
/obj/machinery/light/small/emergency{
dir = 8
@@ -165781,6 +165159,54 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/horizon/service/kitchen)
+"xpB" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/north,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/condiment/shaker/spacespice{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/holomenu{
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/item/holomenu{
+ pixel_x = 9;
+ pixel_y = 4
+ },
+/obj/random/pottedplant_small{
+ pixel_x = 10;
+ pixel_y = 11
+ },
+/obj/item/reagent_containers/food/drinks/shaker{
+ pixel_x = -5;
+ pixel_y = 18
+ },
+/obj/item/storage/box/fancy/candle_box{
+ pixel_x = -14;
+ pixel_y = 1
+ },
+/obj/item/storage/box/fancy/candle_box{
+ pixel_x = -12;
+ pixel_y = 1
+ },
+/obj/item/storage/box/fancy/candle_box{
+ pixel_x = -10;
+ pixel_y = 1
+ },
+/obj/item/storage/box/fancy/candle_box{
+ pixel_x = -10;
+ pixel_y = 1
+ },
+/obj/item/storage/box/fancy/candle_box{
+ pixel_x = -10;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/service/bar/backroom)
"xpD" = (
/obj/machinery/smartfridge/secure,
/obj/machinery/door/firedoor,
@@ -165803,11 +165229,6 @@
/obj/structure/lattice,
/turf/simulated/open,
/area/horizon/maintenance/deck_2/wing/starboard)
-"xpO" = (
-/obj/machinery/firealarm/south,
-/obj/effect/floor_decal/corner/dark_green/full,
-/turf/simulated/floor/tiled,
-/area/horizon/engineering/hallway/fore)
"xpR" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -166568,20 +165989,6 @@
},
/turf/simulated/floor/reinforced,
/area/horizon/engineering/gravity_gen)
-"xuY" = (
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/obj/structure/railing/mapped{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark/full/airless,
-/area/horizon/command/bridge/controlroom)
"xvg" = (
/obj/machinery/atmospherics/portables_connector,
/obj/machinery/door/window/southleft{
@@ -167753,59 +167160,6 @@
},
/turf/simulated/floor/lino,
/area/horizon/service/chapel/main)
-"xEJ" = (
-/obj/effect/floor_decal/corner/dark_blue/full{
- dir = 8
- },
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Weaponry (Practice Ammunition)";
- req_access = list(1)
- },
-/obj/effect/floor_decal/industrial/outline/security,
-/obj/item/device/radio/intercom/west,
-/obj/item/storage/box/shells/practiceshells,
-/obj/item/storage/box/shells/practiceshells,
-/obj/item/storage/box/shells/practiceshells,
-/obj/item/ammo_magazine/c45m/practice{
- pixel_x = 4
- },
-/obj/item/ammo_magazine/c45m/practice{
- pixel_x = -4
- },
-/obj/item/ammo_magazine/c45m/practice{
- pixel_x = -4
- },
-/obj/item/ammo_magazine/c45m/practice{
- pixel_x = -4
- },
-/obj/item/ammo_magazine/c45m/practice{
- pixel_x = 4
- },
-/obj/item/ammo_magazine/c45m/practice{
- pixel_x = 4
- },
-/obj/item/ammo_magazine/a556/carbine/practice{
- pixel_x = -5;
- pixel_y = 9
- },
-/obj/item/ammo_magazine/a556/carbine/practice{
- pixel_x = 7;
- pixel_y = 9
- },
-/obj/item/ammo_magazine/a556/carbine/practice{
- pixel_x = -5;
- pixel_y = 9
- },
-/obj/item/ammo_magazine/a556/carbine/practice{
- pixel_x = 7;
- pixel_y = 9
- },
-/obj/machinery/power/apc/north,
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/horizon/security/firing_range)
"xEO" = (
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/beach/sand{
@@ -167855,6 +167209,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/rnd/xenobiology/xenoflora)
+"xFf" = (
+/obj/machinery/power/apc/west,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/table/reinforced/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/case_button/shuttle{
+ pixel_x = 4;
+ pixel_y = 15
+ },
+/obj/item/flame/lighter/zippo{
+ pixel_x = -8
+ },
+/obj/item/card/id/captains_spare,
+/turf/simulated/floor/wood,
+/area/horizon/command/heads/captain)
"xFl" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/unsimulated/floor,
@@ -167917,18 +167290,6 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/white,
/area/horizon/rnd/xenobiology)
-"xFS" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/hatch_tiny/yellow,
-/obj/machinery/atmospherics/binary/passive_gate/on{
- name = "Air Tank to Air Distribution"
- },
-/obj/machinery/power/apc/shuttle/intrepid/west,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/engineering)
"xFT" = (
/obj/structure/bed/stool/chair/office/bridge{
dir = 8
@@ -167937,6 +167298,22 @@
icon_state = "wood"
},
/area/centcom/control)
+"xFY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/horizon/service/library)
"xGd" = (
/obj/machinery/vending/zora,
/obj/effect/floor_decal/industrial/hatch/grey,
@@ -167946,6 +167323,19 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/hallway/primary/deck_3/starboard)
+"xGf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/hangar/port)
"xGn" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -168136,17 +167526,6 @@
},
/turf/simulated/floor/tiled/full,
/area/horizon/hallway/primary/deck_2/central)
-"xHJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/west,
-/turf/simulated/floor,
-/area/horizon/maintenance/deck_3/aft/port/far)
"xHO" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -168691,6 +168070,13 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/tcommsat/chamber)
+"xLg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small,
+/obj/structure/cable/green,
+/obj/machinery/power/apc/shuttle/west,
+/turf/simulated/floor/tiled/dark/full,
+/area/horizon/shuttle/intrepid/junction_compartment)
"xLh" = (
/obj/effect/map_effect/window_spawner/full/reinforced/firedoor,
/turf/simulated/floor/tiled/dark/full,
@@ -169103,6 +168489,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/command/bridge/controlroom)
+"xNz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Kitchen Freezer";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 253.15
+ },
+/area/horizon/service/kitchen/freezer)
"xND" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
@@ -169408,6 +168809,17 @@
},
/turf/simulated/floor/tiled,
/area/horizon/operations/office)
+"xQs" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/tactical/flashbangs{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/gun/energy/blaster/revolver,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/legion/hangar5)
"xQt" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
dir = 8
@@ -169483,6 +168895,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/horizon/hangar/auxiliary)
+"xRu" = (
+/obj/structure/closet/crate,
+/obj/item/stack/packageWrap,
+/obj/item/stack/material/steel/full,
+/obj/item/stack/rods/full,
+/turf/simulated/floor/plating,
+/area/horizon/engineering/reactor/indra/office)
"xRw" = (
/obj/machinery/mech_recharger,
/obj/effect/floor_decal/industrial/warning/corner{
@@ -169977,6 +169396,14 @@
},
/turf/simulated/floor/carpet/rubber,
/area/horizon/shuttle/canary)
+"xVg" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/super/north,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/holodeck_control/beta)
"xVh" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -170364,15 +169791,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/security/investigations_hallway)
-"xYx" = (
-/obj/effect/floor_decal/corner/dark_blue/diagonal,
-/obj/structure/bed/handrail,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/alarm/shuttle/intrepid/north,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/intrepid/flight_deck)
"xYC" = (
/obj/structure/lattice/catwalk,
/obj/structure/railing/mapped,
@@ -170607,6 +170025,16 @@
/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/holofloor/grass,
/area/horizon/holodeck/source_picnicarea)
+"yai" = (
+/obj/structure/lattice/catwalk/indoor/grate/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet/west,
+/turf/simulated/floor/plating,
+/area/horizon/shuttle/intrepid/port_compartment)
"yak" = (
/obj/structure/ladder{
pixel_y = 16
@@ -170765,17 +170193,6 @@
},
/turf/simulated/floor/tiled,
/area/horizon/service/hydroponics)
-"ybs" = (
-/obj/structure/table/rack,
-/obj/item/storage/box/tactical/flashbangs{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/gun/energy/blaster/revolver,
-/turf/unsimulated/floor{
- icon_state = "wood"
- },
-/area/centcom/legion/hangar5)
"ybt" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/pizzabox{
@@ -171103,6 +170520,23 @@
},
/turf/simulated/floor/tiled,
/area/horizon/hallway/primary/deck_3/port/docks)
+"ydX" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/table/reinforced/steel,
+/obj/item/storage/box/unique/donkpockets,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/engineering/bluespace_drive/monitoring)
"ydY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/button/remote/blast_door{
@@ -171319,6 +170753,23 @@
},
/turf/unsimulated/floor/wood,
/area/antag/raider)
+"yeL" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/disposal/small/north,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 7
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/wood,
+/area/horizon/repoffice/consular_two)
"yeP" = (
/obj/structure/table/reinforced/wood,
/obj/item/folder/blue,
@@ -171386,45 +170837,6 @@
},
/turf/unsimulated/floor,
/area/centcom/holding)
-"yfd" = (
-/obj/effect/floor_decal/corner/teal/diagonal,
-/obj/item/storage/box/large/condiment{
- pixel_y = 13
- },
-/obj/effect/decal/fake_object{
- desc = "A chalkboard with the menu of the cafe written on it.";
- dir = 8;
- icon = 'icons/obj/coffeemenu.dmi';
- icon_state = "left";
- name = "coffee menu chalkboard";
- pixel_x = 32
- },
-/obj/item/reagent_containers/food/condiment/shaker/pumpkinspice{
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/condiment/shaker/peppermill{
- pixel_x = 2
- },
-/obj/item/reagent_containers/food/condiment/shaker/salt{
- pixel_x = 7
- },
-/obj/item/reagent_containers/food/condiment/shaker/sprinkles{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/storage/box/fancy/donut{
- pixel_x = 1;
- pixel_y = -9
- },
-/obj/structure/table/stone/marble,
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/horizon/service/cafeteria)
"yfg" = (
/obj/structure/lattice/catwalk/indoor/grate/dark,
/obj/structure/cable{
@@ -172079,28 +171491,6 @@
/obj/effect/floor_decal/industrial/outline/medical,
/turf/unsimulated/floor/marble,
/area/antag/wizard)
-"yjA" = (
-/obj/structure/table/standard,
-/obj/machinery/vending/wallmed1{
- req_access = null;
- pixel_y = 32
- },
-/obj/item/paper_bin{
- pixel_y = 3;
- pixel_x = 4
- },
-/obj/item/pen{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/shuttle/quark/south,
-/obj/item/storage/firstaid/regular,
-/obj/machinery/alarm/shuttle/quark/east,
-/turf/simulated/floor/tiled/dark,
-/area/horizon/shuttle/quark/cockpit)
"yjB" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/effect/floor_decal/spline/plain{
@@ -172293,6 +171683,16 @@
/obj/item/deployable_kit/legion_barrier,
/turf/unsimulated/floor,
/area/centcom/legion/hangar5)
+"ykW" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/horizon/maintenance/deck_1/operations/starboard)
"ykX" = (
/obj/structure/lattice/catwalk,
/obj/structure/railing/mapped,
@@ -192602,7 +192002,7 @@ ies
bsP
onR
ljU
-kfd
+hov
bsP
wlr
mjD
@@ -197977,7 +197377,7 @@ xHg
yaz
gvX
pWh
-pbc
+ydX
slm
nad
oDI
@@ -198226,7 +197626,7 @@ tJJ
tJJ
jvg
llK
-oyO
+jdB
nad
nad
nad
@@ -198484,15 +197884,15 @@ tJJ
xpa
vYR
epp
-jse
-wDd
-oBc
-ijt
-vvY
-ajn
-oJC
-hZN
-ajn
+pfP
+qqn
+qJD
+diA
+idV
+gWV
+qGr
+rMc
+gWV
rtL
rXL
opl
@@ -199272,7 +198672,7 @@ hoK
lCo
dOy
myf
-vRP
+gTb
lqd
hoK
lta
@@ -199530,7 +198930,7 @@ vdY
tAh
uvi
hWi
-wWw
+ejB
hoK
iDV
auB
@@ -199787,11 +199187,11 @@ xgn
lzi
ljA
pAY
-iNY
-ood
-ftF
-ftF
-rrA
+hrV
+ogN
+vUN
+vUN
+mwB
sgF
oAp
hWT
@@ -200048,7 +199448,7 @@ sZy
hoK
dTn
jbx
-eTe
+lbI
jbx
wZA
wZA
@@ -200069,7 +199469,7 @@ vyQ
ajQ
oes
mGq
-iaO
+boS
wgt
piU
nKq
@@ -200305,7 +199705,7 @@ ygr
hoK
kll
vyT
-jvL
+gLS
gou
wZA
beE
@@ -200326,9 +199726,9 @@ vyQ
hnL
dde
blc
-ash
+awG
rAI
-bzG
+qKl
mBQ
bgZ
mGq
@@ -200562,7 +199962,7 @@ hoK
hoK
gRK
gRK
-iRI
+ykW
gRK
wZA
vhH
@@ -200819,7 +200219,7 @@ ssf
ssf
ssf
ssf
-mFX
+woC
jmX
wZA
uqd
@@ -201076,7 +200476,7 @@ epk
lJn
lJn
lJn
-wZO
+kQh
akV
wZA
dFP
@@ -202099,7 +201499,7 @@ mAV
spg
lgR
agz
-agz
+dtp
nTH
akD
lsX
@@ -203132,7 +202532,7 @@ gzR
ovv
cto
gbh
-nLx
+aty
gZf
lVR
ovv
@@ -203366,7 +202766,7 @@ kEc
kEc
kEc
sbT
-kRt
+qFI
pGm
wSp
fDG
@@ -203667,9 +203067,9 @@ xeM
lpq
otq
cDE
-xFS
+kNt
bDI
-tHC
+kho
wgj
tSi
iEH
@@ -203681,7 +203081,7 @@ jtk
eIR
mnz
aTs
-rIt
+fzz
jtk
jtk
faV
@@ -204182,13 +203582,13 @@ kJf
smS
uaB
vXA
-vLk
-tsa
-qeT
-imM
-cUY
-eWM
-sHR
+bMx
+nZY
+iWc
+vmj
+odp
+pNo
+gxl
mgk
wqE
cZT
@@ -204196,7 +203596,7 @@ vqg
wtF
xTt
qYn
-fHC
+siY
jtk
fAX
faV
@@ -204438,7 +203838,7 @@ qwA
qYp
xzG
dFY
-pFt
+eNu
gfR
fTd
wiS
@@ -204700,7 +204100,7 @@ gfR
amD
daj
msi
-qBE
+wKi
dQy
dHT
pZe
@@ -204710,7 +204110,7 @@ yjX
xDp
xDp
faU
-cAL
+xLg
asT
vps
nLd
@@ -204969,7 +204369,7 @@ gcq
eHa
cAb
asT
-mBl
+jZV
kFt
uqx
djX
@@ -205215,18 +204615,18 @@ icd
lra
dbH
cBu
-tpv
-urR
+wbo
+oxc
wGg
-xcl
-vbU
-uYC
-uYC
-tQV
-wcD
-eFw
-ohf
-fyT
+dAO
+ixB
+esA
+esA
+fUs
+iJG
+fdt
+uLN
+pRI
rci
uqx
feT
@@ -205479,11 +204879,11 @@ dwn
sgr
dfi
xeO
-cWK
+pBN
dRP
luK
asT
-xYx
+dBV
vib
uqx
cKs
@@ -205728,7 +205128,7 @@ wdq
pAA
uPK
msi
-jAr
+jRW
nOq
djy
pZe
@@ -206225,7 +205625,7 @@ eBv
yik
efD
aXf
-tGM
+vAs
pcS
mJv
xax
@@ -206235,16 +205635,16 @@ ctv
faV
ipk
aOT
-tHO
-hzq
-nmH
-fzv
+rUq
+lui
+dfw
+ffF
nBQ
-jPC
-cJq
-plN
-wXD
-lVy
+kyi
+wtP
+hkJ
+yai
+fxX
cIe
glZ
sdr
@@ -206496,7 +205896,7 @@ kWv
eEf
iRa
wdq
-vFJ
+bZW
dNA
mKI
dNh
@@ -206750,22 +206150,22 @@ faV
ipk
xDt
sbD
-mcs
+hHQ
xah
wdq
-imW
+tau
dNA
-fTN
+jPY
wRx
tfs
rTB
wRx
riT
qaa
-aMJ
+dkG
qqJ
rKY
-chG
+vVU
qaa
qaa
faV
@@ -207011,7 +206411,7 @@ uTA
wdq
wdq
azN
-wAV
+jti
nIn
wRx
afm
@@ -208308,7 +207708,7 @@ mRY
psS
bqv
dqy
-ojm
+gZh
rHe
ltk
feE
@@ -208528,13 +207928,13 @@ jmY
kbY
nlf
qwc
-qQI
+gYa
hTy
kqr
aiU
piE
hka
-sUy
+vTL
hTy
aoG
vTq
@@ -208564,7 +207964,7 @@ gmT
oGR
plU
aLN
-uEI
+pJX
hWP
upH
oeJ
@@ -208821,7 +208221,7 @@ nlD
wSs
plU
uwp
-iAw
+fMa
hWP
hWP
hWP
@@ -209078,7 +208478,7 @@ gga
aUk
kZw
gQy
-uEI
+pJX
pNi
eQS
kdL
@@ -209326,7 +208726,7 @@ eiv
aTK
dKa
wmr
-guW
+kBo
wsU
dBK
tic
@@ -209583,7 +208983,7 @@ nwZ
maS
kSL
jcn
-oAW
+xGf
iUl
pNi
ofO
@@ -210862,7 +210262,7 @@ suN
fGY
wUD
cIy
-hYE
+gqK
oel
orc
eAR
@@ -211079,7 +210479,7 @@ ahU
bbK
rpg
rgW
-ckG
+dkC
spC
wUv
uGV
@@ -212128,7 +211528,7 @@ eMq
mHU
gSw
lIV
-ktu
+hnZ
eFV
sCy
dnr
@@ -212384,10 +211784,10 @@ eRv
kiO
uXJ
kqf
-vCj
-aop
+rJD
+jdf
rmB
-fVP
+ebE
jIT
jvE
qVt
@@ -212404,12 +211804,12 @@ suN
xyx
wUD
tTt
-qpN
+poA
wyL
orc
eAR
dgt
-yjA
+nDk
dgt
nPT
dgt
@@ -212895,7 +212295,7 @@ khM
eFV
bef
qDx
-dIA
+kHZ
mZJ
bFq
trg
@@ -213942,7 +213342,7 @@ gWQ
pgc
cWf
aGa
-nvu
+qgr
xPM
sGI
iYw
@@ -214179,7 +213579,7 @@ nzX
oCs
nzX
nzX
-uJE
+hni
ktX
tTE
gEb
@@ -214187,7 +213587,7 @@ dcp
ucX
jmQ
aPu
-cxY
+ioq
xwP
aPx
aHX
@@ -214433,9 +213833,9 @@ xek
nMz
fKk
qVe
-sLh
-pPu
-qIW
+nxJ
+mbY
+uMe
vZU
ktX
frm
@@ -214444,7 +213844,7 @@ pUH
fjg
lUT
vhu
-aso
+eLF
sBm
oOh
gss
@@ -214693,7 +214093,7 @@ nMz
nMz
nMz
nTP
-wXZ
+cRU
ktX
mMa
upI
@@ -214701,7 +214101,7 @@ wLi
aJB
afi
tGc
-aso
+eLF
sBm
bFL
sNA
@@ -214950,7 +214350,7 @@ erL
pNN
mSS
rjx
-bgl
+pSV
ktX
nTO
aQV
@@ -214958,7 +214358,7 @@ jaG
aQV
jaG
oRJ
-aso
+eLF
jVV
dHs
bBk
@@ -214977,8 +214377,8 @@ xcV
hCp
byt
ehl
-gcW
-jwq
+jOP
+sBQ
gxQ
qVQ
nHo
@@ -215207,7 +214607,7 @@ clb
erL
sAy
lGw
-sIT
+dJL
mab
dNL
mfJ
@@ -215215,7 +214615,7 @@ gtf
ofX
iMz
eVo
-nZv
+uDB
nmf
mfJ
bBk
@@ -215464,7 +214864,7 @@ erL
erL
sAy
lGw
-qtJ
+sEq
mAU
cnw
bIP
@@ -215472,7 +214872,7 @@ xbj
oMM
rew
oMM
-wSn
+dUX
xys
wCw
gTE
@@ -215721,15 +215121,15 @@ erL
erL
mSS
vZa
-nsL
+aLa
ktX
ihe
xLH
-bTI
+uAh
qlF
aTR
jjR
-jPm
+vDP
htm
oOv
bfH
@@ -215977,16 +215377,16 @@ dok
dok
dok
dok
-qDc
-kDz
+pln
+hxA
rAV
pRh
pRh
-eaz
+iwu
rAV
gNq
gNq
-sOx
+fUT
ceg
sTm
sTm
@@ -216232,22 +215632,22 @@ uEF
wUm
nQW
jFu
-aiq
+aJT
dok
wvk
-qMU
+hJT
rAV
xUy
-mBg
-aVB
+oMl
+lns
rAV
rpZ
-qpt
-qcG
+sLz
+mGu
ceg
utn
msy
-nEd
+nGu
fVa
qvV
wIE
@@ -216492,7 +215892,7 @@ lLP
qHV
lnw
mEO
-dSw
+ioH
rAV
erC
kAX
@@ -216749,7 +216149,7 @@ vrM
tlq
dok
vAo
-dgC
+syM
rAV
wPV
uWH
@@ -217260,7 +216660,7 @@ gLM
ilI
qAi
abC
-axH
+whx
bBu
vYC
xUb
@@ -217519,7 +216919,7 @@ uNZ
mKb
wgI
dwJ
-jHH
+eFb
ohr
gLM
wEY
@@ -217776,7 +217176,7 @@ gqY
fsi
xZp
qJG
-mEJ
+cXe
orp
gLM
wEY
@@ -218033,7 +217433,7 @@ ujF
nvI
nPH
iwj
-lkr
+wWO
jDV
gLM
wEY
@@ -218290,7 +217690,7 @@ mdy
xrV
rrL
qbA
-fIC
+tMN
kTp
gLM
wEY
@@ -218547,7 +217947,7 @@ dAa
uUM
oJe
oJe
-vyS
+nnx
oJe
fdr
wEY
@@ -218803,8 +218203,8 @@ hQf
hQf
hQf
oJe
-aQq
-osH
+dII
+aOR
iNX
fdr
wEY
@@ -219061,7 +218461,7 @@ wYE
nEH
oJe
scM
-sCi
+pgo
dmi
fdr
mOM
@@ -219318,7 +218718,7 @@ hQf
hQf
oJe
fXg
-tJh
+fbT
oIq
fdr
eSV
@@ -252473,7 +251873,7 @@ eSV
kcm
okw
bGR
-pCJ
+rRE
okw
laV
sDE
@@ -252729,8 +252129,8 @@ eSV
eSV
kcm
okw
-vha
-fmx
+uDy
+dQs
sGu
pVa
srI
@@ -260209,7 +259609,7 @@ kmi
uHG
aaw
wiG
-cxN
+oEb
cgr
rTt
lzB
@@ -260467,7 +259867,7 @@ gcm
kpS
wiG
cDT
-fhX
+aUO
adV
eMA
wiG
@@ -260721,9 +260121,9 @@ ewT
hko
hmp
fpB
-rXx
-pRa
-qmN
+wKo
+anb
+szJ
jfM
jtE
kwf
@@ -260955,7 +260355,7 @@ khW
xaL
nwj
vwY
-maJ
+kXK
qYk
vAF
nwj
@@ -263267,7 +262667,7 @@ psT
rmS
lqW
eDt
-rtG
+jXT
bfn
exd
jJy
@@ -263782,7 +263182,7 @@ fXk
fTQ
hDH
bBn
-pHW
+tUv
wcr
kbL
oKj
@@ -264033,7 +263433,7 @@ tMC
qFe
ntw
gcS
-gHn
+aiZ
gPE
qsx
tSd
@@ -264550,7 +263950,7 @@ gcS
ccB
oJM
ygJ
-biW
+tSN
rdc
krP
cBt
@@ -264807,7 +264207,7 @@ tcG
wWd
oJM
ygJ
-feo
+kRv
ygJ
beU
beU
@@ -265064,7 +264464,7 @@ pbP
wWd
aAD
ygJ
-aJR
+tAr
wfO
ico
wtH
@@ -265591,7 +264991,7 @@ lyV
uIW
cTc
hfm
-pGO
+eGL
hfm
dnG
hfm
@@ -265838,7 +265238,7 @@ fXk
bWj
aDZ
vfr
-qQC
+nzO
vHf
trv
boz
@@ -266082,7 +265482,7 @@ ule
lcs
vok
tWW
-dLO
+nDl
xVm
opV
hXD
@@ -266359,7 +265759,7 @@ mKn
lnU
qIn
wii
-prI
+phc
rft
gsz
kCM
@@ -266597,7 +265997,7 @@ hqf
vok
amL
sFO
-jxT
+nCP
ede
gIA
aFB
@@ -267671,15 +267071,15 @@ pns
ezA
rfq
klT
-ciq
-hAl
-gFd
-ppf
-rDk
-rDk
-aGm
-nik
-vis
+aUG
+miR
+ahF
+fRs
+vVA
+vVA
+pLp
+mVK
+bYc
piX
hIq
ezA
@@ -268409,7 +267809,7 @@ bnP
esg
rrG
pVJ
-adI
+tyY
vlW
hCf
qLW
@@ -268439,10 +267839,10 @@ irb
ktJ
omW
ngN
-hNd
+krV
kgV
ezA
-sPd
+gUm
dhg
ejL
ezA
@@ -268695,11 +268095,11 @@ lbH
uhZ
uhZ
omW
-mlC
-cKZ
-gki
-amP
-ege
+xpB
+aAS
+iOL
+tzv
+sHB
hfj
rZV
ezA
@@ -268709,7 +268109,7 @@ gry
xPS
hwQ
jrl
-iZf
+xnI
ezA
iDS
mLO
@@ -269181,7 +268581,7 @@ tlJ
aFZ
xEl
aJe
-fDJ
+eUe
jHa
tiz
xkk
@@ -269437,7 +268837,7 @@ jHa
dkp
vqm
egG
-eKK
+oFo
sIs
jHa
wee
@@ -269475,7 +268875,7 @@ qAM
mma
llI
ezA
-gNj
+aQr
cEg
aIv
cEg
@@ -269691,9 +269091,9 @@ uef
fJT
hom
jHa
-voS
-lFm
-gVC
+uiN
+kbR
+uHe
qjR
yks
jHa
@@ -269732,7 +269132,7 @@ uiZ
ezA
ezA
ezA
-wno
+wQK
cEg
jfO
dOW
@@ -269957,11 +269357,11 @@ jHa
gAg
jms
pKO
-lYB
+crO
qHI
jKx
gtT
-kVB
+rEy
goh
hCr
dIP
@@ -269986,12 +269386,12 @@ lrR
jgz
cRC
uEl
-uHo
-sud
-qMO
-rYV
-kfv
-lYL
+vJs
+kNP
+gAx
+siF
+oXo
+ilH
sgW
wrG
wrG
@@ -270203,7 +269603,7 @@ xcb
ika
uef
eJH
-xpO
+iIQ
jHa
jHa
qgS
@@ -270743,7 +270143,7 @@ bbi
iGf
jVS
gLY
-jCz
+hxx
sfZ
gzZ
sfZ
@@ -270993,14 +270393,14 @@ rZN
uZQ
nbV
nNH
-hHL
+cJR
aTY
iWE
bxX
sGz
odk
lHG
-alN
+kFF
aTY
aTY
bxX
@@ -271250,14 +270650,14 @@ pZM
qZz
qZz
vGI
-rEP
+rqU
vGI
qZz
qZz
xZE
xZE
adB
-oWL
+oxF
adB
xZE
xZE
@@ -271507,14 +270907,14 @@ koS
mSK
wYc
qtL
-dCb
+vRs
mok
plF
qZz
iTN
tyQ
peH
-cqV
+dAi
fuN
bel
pTl
@@ -271528,10 +270928,10 @@ hbw
oli
jHq
sht
-dDN
-glr
-jZh
-sxf
+sOp
+reA
+hEw
+hvn
aLr
psQ
psQ
@@ -271763,7 +271163,7 @@ hOg
mQb
vGI
pfa
-inF
+djK
uIf
exs
pfa
@@ -271771,7 +271171,7 @@ oPk
hHf
mZW
dec
-ukc
+ggO
lPo
lPo
wRC
@@ -271783,7 +271183,7 @@ ayt
jHq
dfj
bQb
-cQX
+qeX
cUQ
opW
vnx
@@ -272020,7 +271420,7 @@ vJd
gst
vGI
pfa
-inF
+djK
clw
exs
ltG
@@ -272028,7 +271428,7 @@ oPk
kDb
sgD
cGM
-cQj
+xFY
bsD
dTh
nCe
@@ -272277,7 +271677,7 @@ ewE
gst
qZz
wwY
-dNS
+nHT
wRO
fNI
wyT
@@ -272285,7 +271685,7 @@ qZz
qpq
uSs
fBB
-aaj
+vie
dit
qOh
jDE
@@ -272501,7 +271901,7 @@ pOK
htX
hOj
ujO
-pvt
+dnk
eey
wbY
xxH
@@ -272534,7 +271934,7 @@ hkQ
voU
qZz
tPm
-lXz
+pQq
lFN
cwS
qZz
@@ -272542,7 +271942,7 @@ qZz
ieF
gmA
xoe
-rZi
+oyY
tUZ
qOh
lqu
@@ -272791,7 +272191,7 @@ hkQ
gst
vGI
arS
-scb
+wEO
raV
tXC
dFf
@@ -272799,7 +272199,7 @@ qZz
gAW
efc
iKQ
-esq
+sOP
hHH
cga
oaM
@@ -272821,9 +272221,9 @@ qvh
lCn
qkF
uXU
-cBn
+uso
ixL
-cCe
+asc
gtv
woK
woK
@@ -273000,7 +272400,7 @@ eSV
dxi
eex
pvo
-jBH
+xRu
eBI
mud
tCq
@@ -273056,7 +272456,7 @@ qZz
vhF
yaa
tpV
-hpR
+koU
uOw
vTR
gXl
@@ -273797,7 +273197,7 @@ sNz
nqF
vKt
grz
-mTJ
+stT
dkM
eoP
ruW
@@ -273824,7 +273224,7 @@ icP
icP
icP
hCx
-hbc
+jsA
hXn
iSm
rJN
@@ -273845,8 +273245,8 @@ eSY
aZJ
nBM
pRB
-fro
-vYj
+ote
+mKW
nwW
fPR
sAQ
@@ -274101,8 +273501,8 @@ rjz
gbX
aZJ
nBM
-oYe
-vco
+pAh
+bhP
cTZ
eby
eby
@@ -274615,8 +274015,8 @@ rvz
xJw
bvu
wkW
-gjJ
-gdj
+dyj
+uWZ
aye
nTu
hDC
@@ -274854,7 +274254,7 @@ rWj
iTt
pHq
aoE
-tiQ
+qYe
wBl
wBl
ciH
@@ -274872,9 +274272,9 @@ rmU
orF
bdh
kFE
-puk
-fFZ
-jSC
+gpe
+fag
+klU
nTu
gSC
xHC
@@ -275111,7 +274511,7 @@ hbV
rmd
uuj
aoE
-hqG
+vtT
nQV
ioo
nQV
@@ -275129,11 +274529,11 @@ pzg
awN
rWR
wkW
-wps
-obb
-eJD
+gua
+deT
+mCh
ttq
-wlO
+xNz
mce
fQt
pPw
@@ -275368,7 +274768,7 @@ frB
gMd
yhc
aoE
-ijR
+viT
wGl
wGl
wGl
@@ -277166,7 +276566,7 @@ uZZ
wxZ
gkY
abe
-sQo
+cHU
bkO
qOn
lMi
@@ -277681,15 +277081,15 @@ wxZ
kmP
jCq
qwZ
-leX
+hvi
dSk
-edI
+iTo
eRt
kDT
biz
mji
gcA
-vdg
+bHT
eRt
riR
whs
@@ -277946,7 +277346,7 @@ hPu
iTd
hfy
vLP
-ckf
+puP
eRt
cYM
whs
@@ -279720,7 +279120,7 @@ tCL
ohz
lFp
sJP
-ssb
+mZt
tNI
rwZ
dEK
@@ -282536,9 +281936,9 @@ hsc
eXV
eXV
aIS
-reu
-lco
-jHW
+qhm
+qDB
+dOi
hFX
qqQ
saG
@@ -283079,7 +282479,7 @@ mbR
mbR
goL
mbR
-ngi
+rru
rwk
tzr
pEY
@@ -284609,7 +284009,7 @@ cgS
nqN
wLN
mnb
-wrb
+ohv
wJy
tPN
vXL
@@ -286147,7 +285547,7 @@ pKF
aGN
uwY
pSi
-hYP
+tZW
uXH
uwY
oHl
@@ -288453,7 +287853,7 @@ ehU
sBe
iml
bvK
-ncH
+mui
lhP
lrX
uQC
@@ -288709,7 +288109,7 @@ eSV
www
bTv
iml
-dVR
+vEm
hZF
iml
ssr
@@ -330615,7 +330015,7 @@ dUD
vAN
vuQ
dkZ
-hGY
+orU
xhH
sSD
oMa
@@ -331103,7 +330503,7 @@ fBH
aqj
tUP
fLk
-jxf
+rPM
rfd
hLJ
cDa
@@ -332698,7 +332098,7 @@ eVU
aWQ
aWQ
bOF
-lsU
+nHd
jEV
hbD
gXQ
@@ -332943,9 +332343,9 @@ pDK
fpb
qMC
tvI
-wOR
+tlA
iNt
-ubz
+dca
lmW
lWf
dHF
@@ -333200,9 +332600,9 @@ vnN
ndA
iko
gww
-rkm
+tCj
iNt
-sHg
+crD
lch
cvV
rWS
@@ -333212,7 +332612,7 @@ oiP
dxT
ovB
aRj
-wEu
+rLo
oLw
yeP
xtz
@@ -333926,7 +333326,7 @@ vkg
sFY
aQx
qxa
-utG
+fEo
ljK
mAg
oXd
@@ -333978,7 +333378,7 @@ tnj
pIb
tMK
szR
-ogZ
+hKt
iNl
ijx
lYC
@@ -334183,7 +333583,7 @@ gkJ
krd
aQx
hOD
-jYF
+sjA
agj
agj
agj
@@ -334228,9 +333628,9 @@ vnN
gkb
byc
czb
-sQh
+dkT
vnN
-iWZ
+beT
azE
ouc
pvW
@@ -334238,7 +333638,7 @@ szR
wnY
clg
clg
-hpK
+tJS
aRj
hCM
hAz
@@ -334440,7 +333840,7 @@ bAD
mGS
aQx
sGU
-jYF
+sjA
agj
beP
beP
@@ -334697,7 +334097,7 @@ wor
jZO
aQx
dhn
-jYF
+sjA
agj
hsg
sJu
@@ -334708,7 +334108,7 @@ khZ
tGz
pDm
plx
-bEB
+xVg
iHv
cmJ
wlm
@@ -334719,7 +334119,7 @@ wlm
wlm
wlm
oVZ
-jum
+xbc
kvn
qFG
phb
@@ -334954,7 +334354,7 @@ ozS
fOA
aQx
jgb
-jYF
+sjA
agj
fzV
fzV
@@ -335211,7 +334611,7 @@ jGE
jGE
jGE
qxa
-jYF
+sjA
agj
vhk
sjr
@@ -335468,7 +334868,7 @@ jBt
uXh
jGE
qJm
-jYF
+sjA
agj
kWF
agj
@@ -335724,8 +335124,8 @@ eGR
tsW
fpe
iVr
-qHc
-mhI
+pdB
+qoo
prK
mFp
agj
@@ -335770,7 +335170,7 @@ esv
kKK
qZQ
xnY
-eok
+dAj
wJp
qBd
wqO
@@ -336279,7 +335679,7 @@ hqS
uRY
fVp
fVp
-ozW
+nkz
wJp
aqt
ixo
@@ -336294,7 +335694,7 @@ svo
wJp
cxf
mdl
-maz
+qzz
cCN
ofJ
vFs
@@ -336790,7 +336190,7 @@ wGH
aiT
twe
kCF
-mmD
+tDa
qUZ
kYg
lrE
@@ -337524,7 +336924,7 @@ xIk
fwN
tiA
fyf
-tbG
+tTi
bMq
qKu
ceW
@@ -337830,7 +337230,7 @@ uQc
kyP
hyJ
dOQ
-det
+uQi
kLd
pBl
eEA
@@ -337840,7 +337240,7 @@ icI
czE
dBC
pwE
-cCX
+uZL
mbD
czO
bFC
@@ -338346,8 +337746,8 @@ smE
lhU
mfA
aSy
-clO
-kWh
+xFf
+eXk
nOV
cWD
wCn
@@ -338849,7 +338249,7 @@ jLW
amu
ajf
ajf
-anw
+yeL
cXa
uWM
cFR
@@ -338872,7 +338272,7 @@ jtz
fSa
hwS
wcC
-ryM
+lfL
bSp
qnj
rUz
@@ -339322,7 +338722,7 @@ sQk
fvH
uSC
lKv
-fgw
+kKC
wrx
wNN
dmo
@@ -340139,7 +339539,7 @@ gtL
fVY
jcc
mfA
-oIR
+owX
lCB
ltb
jDG
@@ -340396,7 +339796,7 @@ xcZ
qod
qwI
upn
-fgr
+ceF
kaD
jKJ
btI
@@ -340611,7 +340011,7 @@ brM
wNN
wNN
nAO
-xHJ
+pXD
gPO
hUv
wkl
@@ -340913,7 +340313,7 @@ dBS
cKu
xBh
pxB
-uWw
+hwz
aek
xBh
hCm
@@ -341144,7 +340544,7 @@ ufE
key
hjg
azV
-yfd
+rDC
lei
gBh
yfR
@@ -341168,7 +340568,7 @@ jok
qii
upn
cKu
-xuY
+kTR
mVH
kPL
uKc
@@ -341682,7 +341082,7 @@ gSB
pBw
dBS
cKu
-xuY
+kTR
xyC
sAj
sUQ
@@ -341931,17 +341331,17 @@ wGH
cVv
hiJ
jHQ
-wWN
+nZA
xiE
cGG
-sQX
+bbG
vSE
qAG
upn
cKu
xBh
-aqZ
-nXb
+rMV
+kuB
dNa
xBh
dkx
@@ -342422,7 +341822,7 @@ jnz
jnz
jnz
kjr
-eOx
+pCO
aAs
iVS
lJw
@@ -343173,9 +342573,9 @@ eZu
xNk
ngB
oKR
-hgA
-cSx
-tAY
+ewx
+cFs
+imq
aky
iVt
oKR
@@ -343962,7 +343362,7 @@ aUV
kqo
bra
dAG
-eCr
+uJD
qDy
pFH
nIm
@@ -344985,13 +344385,13 @@ cKu
cKu
cKu
rNO
-fEz
+qTj
grx
uoP
qlQ
uZV
qDy
-xEJ
+vdX
gjr
qxC
xdR
@@ -345007,7 +344407,7 @@ ovT
tLt
dlu
wAH
-oob
+tIV
gue
qQD
awq
@@ -345264,7 +344664,7 @@ bvA
iQG
dlu
jrQ
-hsX
+ceb
odY
uty
vEe
@@ -346530,7 +345930,7 @@ kIT
vxL
aTc
knL
-dQc
+lIa
hKJ
lRV
eSt
@@ -347045,7 +346445,7 @@ lqx
frv
hQW
frv
-sAh
+vsY
lRV
vZq
vPd
@@ -386201,7 +385601,7 @@ qAF
qAF
bov
brN
-rth
+bYW
ebQ
eUk
qAF
@@ -391834,7 +391234,7 @@ oeb
irQ
sYo
bjH
-hYO
+iNn
agt
rTh
uFj
@@ -417257,7 +416657,7 @@ oQD
gIk
gIk
pDb
-tgn
+arQ
xtf
auP
lha
@@ -418022,7 +417422,7 @@ eSV
eSV
oQD
bFb
-kgE
+pMi
iwT
quf
gIk
@@ -419076,7 +418476,7 @@ lIi
hZJ
cvL
xue
-vhK
+raO
auP
fjX
vZQ
@@ -420064,7 +419464,7 @@ rQG
hoV
tZn
kqs
-msj
+vAP
oEh
klO
mIw
@@ -423994,7 +423394,7 @@ kVe
nPg
mUf
vdG
-vlU
+bWe
iLe
xdU
mWG
@@ -425558,7 +424958,7 @@ inE
ixY
ixY
fdq
-ybs
+xQs
isL
iVP
ozQ