diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index 4ff24a1a21c..867edbaa9a1 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -326,6 +326,25 @@ /obj/structure/bed/padded/New(var/newloc) ..(newloc, MATERIAL_PLASTIC, MATERIAL_CLOTH) +/obj/structure/bed/padded/bunk + pixel_y = 16 + var/sleeby_shift = 16 + +/obj/structure/bed/padded/bunk/post_buckle(atom/movable/MA) + . = ..() + if(MA == buckled) + if(istype(MA, /mob/living)) + var/mob/living/M = MA + M.old_y = sleeby_shift + buckled.pixel_y = sleeby_shift + update_icon() + else + if(istype(MA, /mob/living)) + var/mob/living/M = MA + M.old_y = 0 + MA.pixel_y = 0 + update_icon() + /obj/structure/bed/aqua name = "aquabed" icon_state = "aquabed" diff --git a/code/game/turfs/simulated/shuttle_turfs.dm b/code/game/turfs/simulated/shuttle_turfs.dm index 2d38ec0112f..826ed402d59 100644 --- a/code/game/turfs/simulated/shuttle_turfs.dm +++ b/code/game/turfs/simulated/shuttle_turfs.dm @@ -426,6 +426,7 @@ icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi' icon_state = "c1" +//Canary pieces /turf/simulated/wall/shuttle/unique/scc/scout name = "jester-type shuttle hull" desc = "The hull and reinforcement of a Jester-type corporate skiff. The phoron-purple colored bands indicate this, in bold text as the SCCV Canary." @@ -451,6 +452,36 @@ icon_state = "4,1" layer = ABOVE_ALL_MOB_LAYER +//Intrepid pieces +/turf/simulated/wall/shuttle/unique/scc/research + name = "pathfinder class shuttle hull" + desc = "The hull and reinforcement of a Pathfinder class corporate expedition shuttle. The phoron-purple colored bands indicate this, in bold text as the SCCV Intrepid." + icon = 'icons/turf/shuttles_unique/scc/research_shuttle/complete_hull.dmi' + icon_state = "8,10" + +/obj/structure/shuttle_part/scc/research + name = "pathfinder class shuttle hull" + desc = "The hull and reinforcement of a Pathfinder class corporate expedition shuttle. The phoron-purple colored bands indicate this, in bold text as the SCCV Intrepid." + icon = 'icons/turf/shuttles_unique/scc/research_shuttle/complete_hull.dmi' + icon_state = "5,8" + +/obj/structure/window/shuttle/unique/scc/research + name = "pathfinder class shuttle hull" + desc = "The hull and reinforcement of a Pathfinder class corporate expedition shuttle. This particular piece looks fragile and frames a viewport." + icon = 'icons/turf/shuttles_unique/scc/research_shuttle/complete_hull.dmi' + icon_state = "3,10" + +/obj/structure/window/shuttle/unique/scc/tall//For side windows of the hull, can overlap seamlessly + icon = 'icons/obj/spaceship/scc/windows_tall.dmi' + icon_state = "long1-1" + +/obj/structure/window/shuttle/unique/scc/research/over + name = "pathfinder class shuttle cockpit" + desc = "The strong glass face of a Pathfinder class shuttle cockpit." + icon = 'icons/turf/shuttles_unique/scc/research_shuttle/cockpit_windows.dmi' + icon_state = "2,1" + layer = ABOVE_ALL_MOB_LAYER + //--Floors--// /turf/simulated/floor/shuttle diff --git a/code/modules/cooking/machinery/cooking_machines/oven.dm b/code/modules/cooking/machinery/cooking_machines/oven.dm index 4cd9a2fff21..81bb3929ffd 100644 --- a/code/modules/cooking/machinery/cooking_machines/oven.dm +++ b/code/modules/cooking/machinery/cooking_machines/oven.dm @@ -122,6 +122,24 @@ return ..() +/obj/machinery/appliance/cooker/oven/small + name = "compact oven" + desc = "A lightweight, small oven. Doesn't hold much, but it cooks just fine." + density = 0 + anchored = 0 + max_contents = 2 + icon_state = "small_ovenopen" + +/obj/machinery/appliance/cooker/oven/small/update_icon() + if (!open) + icon_state = "small_ovenclosed" + else + icon_state = "small_ovenopen" + cut_overlays() + if (!stat) + var/glow = image('icons/obj/cooking_machines.dmi', "smalloven_on", EFFECTS_ABOVE_LIGHTING_LAYER) + add_overlay(glow) + /obj/machinery/appliance/cooker/oven/adhomai name = "adhomian oven" desc = "A heavy and rustic adhomian oven. Perfect for a Tajaran grandma" diff --git a/code/modules/overmap/ships/computers/sensors.dm b/code/modules/overmap/ships/computers/sensors.dm index 03855f8ee7d..e73fbbdd496 100644 --- a/code/modules/overmap/ships/computers/sensors.dm +++ b/code/modules/overmap/ships/computers/sensors.dm @@ -496,6 +496,10 @@ desc = "Miniturized gravity scanner with various other sensors, used to detect irregularities in surrounding space. Can only run in vacuum to protect delicate quantum BS elements." deep_scan_range = 0 +/obj/machinery/shipsensors/weak/scc_shuttle + icon_state = "sensors" + icon = 'icons/obj/spaceship/scc/helm_pieces.dmi' + /obj/machinery/shipsensors/strong desc = "An upgrade to the standard ship-mounted sensor array, this beast has massive cooling systems running beneath it, allowing it to run hotter for much longer. Can only run in vacuum to protect delicate quantum BS elements." heat_reduction = 3.7 // can sustain range 6 diff --git a/code/modules/overmap/ships/identification.dm b/code/modules/overmap/ships/identification.dm index bcec979ca04..15251ce0a1d 100644 --- a/code/modules/overmap/ships/identification.dm +++ b/code/modules/overmap/ships/identification.dm @@ -70,7 +70,7 @@ can_change_name = FALSE /obj/machinery/iff_beacon/horizon/shuttle - icon = 'icons/obj/spaceship/scc/iff.dmi' + icon = 'icons/obj/spaceship/scc/helm_pieces.dmi' icon_state = "iff" /obj/machinery/iff_beacon/name_change diff --git a/html/changelogs/kyres1-intrepid_gaming.yml b/html/changelogs/kyres1-intrepid_gaming.yml new file mode 100644 index 00000000000..c103442875c --- /dev/null +++ b/html/changelogs/kyres1-intrepid_gaming.yml @@ -0,0 +1,9 @@ +author: kyres1 + +delete-after: True + +changes: + - rscadd: "Completely upgrades and adds a new hull sprite for the Intrepid shuttle." + - rscadd: "Added a bunk bed subtype that functions like a bed, but is a bunk, on a bed." + - rscadd: "Added a cool oven subtype that is small and holds two trays instead of five." + - tweak: "Changed the entire layout of the Intrepid while retaining its features and attempting to add more." diff --git a/icons/obj/cooking_machines.dmi b/icons/obj/cooking_machines.dmi index b403d832865..a3be6cf0625 100644 Binary files a/icons/obj/cooking_machines.dmi and b/icons/obj/cooking_machines.dmi differ diff --git a/icons/obj/spaceship/scc/helm_pieces.dmi b/icons/obj/spaceship/scc/helm_pieces.dmi new file mode 100644 index 00000000000..68bf103c75f Binary files /dev/null and b/icons/obj/spaceship/scc/helm_pieces.dmi differ diff --git a/icons/obj/spaceship/scc/hull.dmi b/icons/obj/spaceship/scc/hull.dmi new file mode 100644 index 00000000000..0dcca4f5cdf Binary files /dev/null and b/icons/obj/spaceship/scc/hull.dmi differ diff --git a/icons/obj/spaceship/scc/iff.dmi b/icons/obj/spaceship/scc/iff.dmi deleted file mode 100644 index f346d2a6aba..00000000000 Binary files a/icons/obj/spaceship/scc/iff.dmi and /dev/null differ diff --git a/icons/obj/spaceship/scc/windows_tall.dmi b/icons/obj/spaceship/scc/windows_tall.dmi new file mode 100644 index 00000000000..e6cbf091afb Binary files /dev/null and b/icons/obj/spaceship/scc/windows_tall.dmi differ diff --git a/icons/turf/shuttles_unique/scc/research_shuttle/cockpit_windows.dmi b/icons/turf/shuttles_unique/scc/research_shuttle/cockpit_windows.dmi new file mode 100644 index 00000000000..dcaccf67aa5 Binary files /dev/null and b/icons/turf/shuttles_unique/scc/research_shuttle/cockpit_windows.dmi differ diff --git a/icons/turf/shuttles_unique/scc/research_shuttle/complete_hull.dmi b/icons/turf/shuttles_unique/scc/research_shuttle/complete_hull.dmi new file mode 100644 index 00000000000..e38ac61fa01 Binary files /dev/null and b/icons/turf/shuttles_unique/scc/research_shuttle/complete_hull.dmi differ diff --git a/maps/sccv_horizon/code/sccv_horizon_areas.dm b/maps/sccv_horizon/code/sccv_horizon_areas.dm index cde282ea6b3..828e481f7de 100644 --- a/maps/sccv_horizon/code/sccv_horizon_areas.dm +++ b/maps/sccv_horizon/code/sccv_horizon_areas.dm @@ -292,8 +292,8 @@ name = "Atmos Compartment" /area/shuttle/intrepid/cockpit name = "Cockpit" -/area/shuttle/intrepid/rotary - name = "Intrepid Armament" +/area/shuttle/intrepid/quarters + name = "Intrepid Crew Quarters" /area/shuttle/canary name = "Canary" diff --git a/maps/sccv_horizon/code/sccv_horizon_overmap.dm b/maps/sccv_horizon/code/sccv_horizon_overmap.dm index c567dea9552..77f54b9e86c 100644 --- a/maps/sccv_horizon/code/sccv_horizon_overmap.dm +++ b/maps/sccv_horizon/code/sccv_horizon_overmap.dm @@ -89,6 +89,12 @@ name = "\improper Intrepid control console" shuttle_tag = "Intrepid" req_access = list(access_intrepid) + density = 0 + icon = 'icons/obj/cockpit_console.dmi' + icon_state = "right" + icon_screen = "blue" + icon_keyboard = null + circuit = null /obj/effect/overmap/visitable/ship/landable/mining_shuttle name = "Spark" diff --git a/maps/sccv_horizon/code/sccv_horizon_shuttles.dm b/maps/sccv_horizon/code/sccv_horizon_shuttles.dm index 2f606c07df5..7c9c26ca57f 100644 --- a/maps/sccv_horizon/code/sccv_horizon_shuttles.dm +++ b/maps/sccv_horizon/code/sccv_horizon_shuttles.dm @@ -156,7 +156,7 @@ /datum/shuttle/autodock/overmap/intrepid name = "Intrepid" move_time = 20 - shuttle_area = list(/area/shuttle/intrepid/crew_compartment, /area/shuttle/intrepid/cargo_bay, /area/shuttle/intrepid/engine_compartment, /area/shuttle/intrepid/atmos_compartment, /area/shuttle/intrepid/cockpit, /area/shuttle/intrepid/rotary) + shuttle_area = list(/area/shuttle/intrepid/crew_compartment, /area/shuttle/intrepid/cargo_bay, /area/shuttle/intrepid/engine_compartment, /area/shuttle/intrepid/atmos_compartment, /area/shuttle/intrepid/cockpit, /area/shuttle/intrepid/quarters) dock_target = "intrepid_shuttle" current_location = "nav_hangar_intrepid" landmark_transition = "nav_transit_intrepid" diff --git a/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm b/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm index 8e1cfae46b3..ac29f964b8d 100644 --- a/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm +++ b/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm @@ -78,12 +78,13 @@ /turf/simulated/floor/tiled, /area/horizon/custodial) "adv" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "mwr3" +/obj/machinery/light/spot/weak{ + dir = 8; + must_start_working = 1 }, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) +/area/hangar/intrepid) "adX" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -165,6 +166,26 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) +"aiN" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/rack, +/obj/item/pipewrench, +/obj/item/storage/toolbox/electrical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/wrench{ + pixel_y = -8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/atmos_compartment) "ajK" = ( /obj/machinery/alarm{ dir = 4; @@ -308,7 +329,7 @@ dir = 10 }, /obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "aph" = ( /obj/machinery/light{ @@ -352,10 +373,6 @@ "aqp" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/hangar/canary) -"aqO" = ( -/turf/space, -/turf/simulated/floor/plating, -/area/hangar/intrepid) "aqY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -470,15 +487,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/medical/morgue/lower) -"awo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) "awr" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -515,19 +523,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, /area/engineering/atmos/air) -"ayq" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - id_tag = "intrepid_shuttle_cargo_pump_out_external"; - frequency = 1385; - layer = 2.8 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) "azl" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -645,6 +640,14 @@ /obj/effect/floor_decal/industrial/outline/research, /turf/simulated/floor/tiled/white, /area/storage/eva) +"aCM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "aDj" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/door/firedoor, @@ -693,16 +696,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/security/checkpoint) -"aEn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light/spot/weak{ - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) "aEs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -713,8 +706,10 @@ /turf/simulated/floor/plating, /area/engineering/atmos/air) "aEw" = ( -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/crew_compartment) +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "8,13" + }, +/area/shuttle/intrepid/quarters) "aFf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -731,17 +726,13 @@ /turf/simulated/floor/tiled, /area/hangar/operations) "aFx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/item/device/radio/intercom{ + pixel_y = 21; + pixel_x = -11 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/structure/bed/stool/chair/sofa/left/red, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/crew_compartment) "aFA" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -815,28 +806,38 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) +"aHB" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "15,22"; + opacity = 1; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "aHY" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/hangar/intrepid) -"aIC" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) "aIP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 2 }, -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/cockpit) +/obj/item/pen{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm/north, +/obj/item/flame/candle{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/quarters) "aJA" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -852,6 +853,15 @@ "aJB" = ( /turf/simulated/wall/r_wall, /area/horizon/custodial/disposals) +"aKh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "aKn" = ( /obj/effect/floor_decal/corner_wide/purple/diagonal, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -881,11 +891,10 @@ /turf/simulated/floor/tiled, /area/security/checkpoint) "aLc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,13" }, -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/crew_compartment) +/area/shuttle/intrepid/quarters) "aLu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -904,13 +913,6 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion) -"aMg" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "aMh" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -1082,17 +1084,13 @@ /turf/simulated/floor/tiled/full, /area/maintenance/engineering) "aRG" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1385; - master_tag = "intrepid_shuttle_cargo"; - name = "exterior access button"; - pixel_x = 8; - pixel_y = -5; - dir = 4 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/atmos_compartment) +/obj/machinery/shieldwallgen, +/turf/simulated/floor/airless, +/area/hangar/intrepid) "aSL" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -1157,8 +1155,8 @@ /turf/simulated/floor/plating, /area/engineering/atmos/air) "aUk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/railing/mapped{ + dir = 8 }, /turf/simulated/floor/plating, /area/hangar/intrepid) @@ -1229,6 +1227,24 @@ /obj/structure/window/shuttle/scc, /turf/simulated/floor/plating, /area/shuttle/escape_pod/pod1) +"aWz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "aWB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -1278,6 +1294,9 @@ /obj/structure/railing/mapped{ dir = 4 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "aXC" = ( @@ -1495,26 +1514,6 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) -"bfL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/emergency/evacuation{ - dir = 4; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) "bfX" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -1548,28 +1547,16 @@ }, /area/maintenance/research_port) "bhi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/shuttle_part/scc/research{ + icon_state = "3,12"; + outside_part = 0 }, -/obj/machinery/airlock_sensor/airlock_exterior{ - frequency = 1385; - id_tag = "intrepid_shuttle_west_exterior_sensor"; - pixel_x = -42; - pixel_y = 30; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - id_tag = "intrepid_shuttle_west_pump_out_external"; - frequency = 1385; - layer = 2.8 +/obj/structure/window/shuttle/unique/scc/tall{ + icon_state = "short1_top"; + layer = 3 }, /turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) +/area/shuttle/intrepid/quarters) "bij" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -1589,6 +1576,12 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid) +"bjm" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "16,11" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/crew_compartment) "bkV" = ( /obj/effect/floor_decal/corner/purple{ dir = 5 @@ -1596,12 +1589,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) -"blb" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) "bli" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -1632,8 +1619,24 @@ /turf/simulated/floor/tiled, /area/operations/loading) "blW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 }, /turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) @@ -1759,18 +1762,16 @@ /turf/simulated/floor/plating, /area/engineering/atmos/air) "brI" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 10 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark/full, /area/shuttle/intrepid/cargo_bay) +"brR" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "9,12" + }, +/area/shuttle/intrepid/crew_compartment) "brT" = ( /obj/machinery/light/small, /obj/structure/table/standard{ @@ -2231,6 +2232,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/checkpoint) +"bEN" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "2,18" + }, +/area/shuttle/intrepid/atmos_compartment) "bFd" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2270,6 +2276,13 @@ }, /turf/simulated/floor/airless, /area/engineering/atmos) +"bFM" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "10,0"; + density = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "bGf" = ( /obj/structure/tank_wall/carbon_dioxide{ density = 0; @@ -2363,6 +2376,13 @@ }, /turf/simulated/floor/tiled/full, /area/hangar/control) +"bIt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/crew_compartment) "bID" = ( /obj/structure/tank_wall/hydrogen{ icon_state = "h4" @@ -2375,17 +2395,6 @@ "bJa" = ( /turf/simulated/floor/plating, /area/hangar/auxiliary) -"bJr" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "se2"; - opacity = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/atmos_compartment) "bKx" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/steel, @@ -2423,6 +2432,16 @@ }, /turf/simulated/floor/tiled/dark, /area/security/checkpoint) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/light/small/red{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "bKC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -2568,6 +2587,11 @@ icon_state = "3,10" }, /area/shuttle/canary) +"bPT" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "8,7" + }, +/area/shuttle/intrepid/cockpit) "bQb" = ( /obj/machinery/alarm{ dir = 8; @@ -2695,6 +2719,14 @@ }, /turf/simulated/floor/tiled/dark, /area/turret_protected/ai_upload) +"bVo" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "3,22"; + opacity = 1; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "bVV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -2702,6 +2734,11 @@ }, /turf/simulated/floor/tiled/dark, /area/teleporter) +"bWz" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "6,24" + }, +/area/shuttle/intrepid/engine_compartment) "bWE" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue{ dir = 9 @@ -2807,6 +2844,10 @@ temperature = 278.15 }, /area/medical/morgue/lower) +"cbu" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/hangar/intrepid) "cch" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 2; @@ -2815,27 +2856,6 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) -"ccr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "ccU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -2920,6 +2940,19 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, /area/storage/eva) +"cfJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) "cfS" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -2930,15 +2963,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering/lower) -"cfY" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) "chW" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/camera/network/engineering{ @@ -2984,11 +3008,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"cjK" = ( -/obj/machinery/door/window/westright, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) "ckb" = ( /obj/structure/stairs/south, /turf/simulated/floor/plating, @@ -3036,21 +3055,31 @@ }, /turf/simulated/floor/plating, /area/horizon/hydroponics/lower) -"clM" = ( -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/engine_compartment) "clT" = ( /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, /area/horizon/exterior) +"cmX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/iff_beacon/horizon/shuttle{ + pixel_y = -15 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/intrepid/cockpit) "cnb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "cne" = ( /turf/simulated/floor/reinforced/airless, @@ -3093,11 +3122,27 @@ }, /turf/simulated/floor/plating, /area/maintenance/hangar/port) +"coc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/atmos_compartment) "con" = ( -/obj/structure/window/shuttle/scc, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "5,8" + }, +/area/shuttle/intrepid/quarters) "coo" = ( /obj/structure/lattice/catwalk/indoor, /obj/structure/cable{ @@ -3115,15 +3160,20 @@ /turf/simulated/floor/tiled, /area/operations/loading) "cpn" = ( -/obj/machinery/door/airlock/external{ - frequency = 1385; - icon_state = "door_locked"; - id_tag = "intrepid_shuttle_west_in" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 }, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) "cpt" = ( /obj/effect/floor_decal/corner/yellow{ @@ -3166,6 +3216,18 @@ /obj/effect/spider/stickyweb, /turf/simulated/floor/plating, /area/maintenance/operations) +"cqU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "crb" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -3196,18 +3258,6 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/engineering) -"csz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Cargo"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/item/device/gps/stationary/sccv_intrepid{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cargo_bay) "cty" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/corner/brown{ @@ -3222,17 +3272,16 @@ /turf/space, /area/template_noop) "ctI" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_hangarseccpexternal"; - name = "Security Checkpoint External Shutter" +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" +/obj/effect/floor_decal/corner/black/full{ + dir = 8 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "ctM" = ( /obj/machinery/door/firedoor, @@ -3492,11 +3541,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) -"cAU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "cBF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -3547,6 +3591,16 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/research_port) +"cEf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "External Ports to Air Reserve"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "cEl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -3572,12 +3626,6 @@ /obj/item/material/shard, /turf/simulated/floor/plating, /area/maintenance/wing/port/deck1) -"cGa" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/airless, -/area/hangar/intrepid) "cHx" = ( /obj/machinery/artifact_scanpad, /obj/effect/floor_decal/spline/plain{ @@ -3606,12 +3654,11 @@ /turf/simulated/floor/tiled, /area/rnd/eva) "cIp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/effect/floor_decal/corner/pink/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/turf/simulated/floor/carpet/lightblue, +/area/shuttle/intrepid/quarters) "cIU" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/door/airlock/hatch{ @@ -3643,6 +3690,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) +"cJx" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "6,8" + }, +/area/shuttle/intrepid/quarters) "cJz" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -3721,13 +3773,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) -"cLv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) "cLC" = ( /obj/machinery/space_heater, /turf/simulated/floor/tiled/dark, @@ -3805,10 +3850,10 @@ /turf/simulated/floor/tiled, /area/hangar/intrepid/interstitial) "cND" = ( -/obj/structure/bed/stool/chair/office/bridge, -/obj/effect/floor_decal/corner/pink/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,10" + }, +/area/shuttle/intrepid/quarters) "cOm" = ( /obj/machinery/conveyor{ dir = 4; @@ -3842,6 +3887,12 @@ /obj/effect/shuttle_landmark/horizon/deckone/starboard_propulsion, /turf/template_noop, /area/template_noop) +"cPw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/crew_compartment) "cPE" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /obj/structure/lattice/catwalk/indoor, @@ -4021,6 +4072,11 @@ /obj/machinery/recharge_station, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"cVZ" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "cWa" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -4114,6 +4170,11 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) +"cZe" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,23" + }, +/area/shuttle/intrepid/engine_compartment) "cZi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4277,14 +4338,24 @@ /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) "dhi" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, /obj/effect/floor_decal/corner/black{ - dir = 10 + dir = 9 }, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) +"dhJ" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "15,26"; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "dhX" = ( /obj/machinery/door/blast/shutters/open{ dir = 2; @@ -4323,10 +4394,13 @@ }, /area/engineering/atmos/propulsion) "dir" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1385; + id_tag = "intrepid_shuttle_cargo_pump_out_internal"; + layer = 2.8 }, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) "diJ" = ( @@ -4371,6 +4445,26 @@ /obj/machinery/atmospherics/pipe/simple/visible/blue, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"dlv" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/power/portgen/basic, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/stack/material/graphite/full, +/obj/item/stack/material/graphite/full, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 24 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/intrepid/crew_compartment) "dlM" = ( /obj/machinery/suit_cycler/engineering, /obj/effect/floor_decal/corner/blue{ @@ -4399,24 +4493,42 @@ /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) "dnR" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 }, /turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) "dnX" = ( -/obj/structure/closet/walllocker/emerglocker/east{ - pixel_x = 0; - pixel_y = 32 +/obj/machinery/alarm{ + pixel_y = 24 }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 +/obj/structure/table/reinforced, +/obj/machinery/appliance/cooker/oven/small{ + pixel_y = 5; + pixel_x = 6 }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -8; + pixel_y = 9 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 11; + pixel_x = 26 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 5; + pixel_x = 26 + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/crew_compartment) "dob" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning, @@ -4543,6 +4655,19 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) +"drK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Thruster Compartment"; + req_access = list(73) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "drU" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -4630,15 +4755,8 @@ /turf/simulated/floor/tiled, /area/hangar/canary) "duz" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/turf/simulated/wall/shuttle/unique/scc/research, +/area/shuttle/intrepid/quarters) "duN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4686,14 +4804,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion/starboard) -"dwt" = ( -/obj/structure/window/shuttle/scc, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, center" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) "dwY" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 5 @@ -4710,23 +4820,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) -"dzg" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/door/window/westright, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +"dyG" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "12,23" }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, /area/shuttle/intrepid/engine_compartment) "dzi" = ( /obj/structure/window/shuttle/scc_space_ship, @@ -4913,15 +5010,23 @@ /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/escape_pod/pod1) "dFQ" = ( -/obj/machinery/atmospherics/unary/engine{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me3" +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, starboard engines" +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/atmos_compartment) +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "dGo" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -4965,14 +5070,24 @@ }, /turf/simulated/floor/tiled/dark, /area/storage/eva) -"dJm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"dJe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) +"dJm" = ( /obj/machinery/light/spot/weak{ dir = 4; must_start_working = 1 }, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/hangar/intrepid) "dJH" = ( @@ -5009,13 +5124,38 @@ }, /turf/simulated/floor/tiled, /area/hangar/operations) -"dKn" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/item/hoist_kit, -/obj/item/device/multitool, +"dJY" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "8,4"; + density = 0; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "1,2"; + density = 0 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, /area/shuttle/intrepid/cockpit) +"dKn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 23; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/shuttle/intrepid/quarters) "dKB" = ( /obj/machinery/cryopod/robot, /turf/simulated/floor/plating, @@ -5069,6 +5209,12 @@ "dKY" = ( /turf/simulated/floor/reinforced/carbon_dioxide, /area/engineering/atmos) +"dLe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "15,10" + }, +/area/shuttle/intrepid/crew_compartment) "dLh" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5111,6 +5257,13 @@ }, /turf/simulated/floor/tiled, /area/hangar/operations) +"dLs" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "4,7"; + density = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "dLt" = ( /obj/machinery/ammunition_loader/francisca{ weapon_id = "Francisca Rotary Gun" @@ -5190,16 +5343,6 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/hangar/starboard) -"dQP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "intrepid_inner"; - name = "Intrepid Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cargo_bay) "dRh" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -5215,9 +5358,27 @@ /obj/effect/floor_decal/corner_wide/purple/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/test_range) +"dRx" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "17,22" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "dSD" = ( -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/cargo_bay) +/obj/structure/shuttle_part/scc/research{ + icon_state = "4,11"; + density = 0; + outside_part = 0; + layer = 2.6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/computer/ship/navigation{ + dir = 4 + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/quarters) "dTe" = ( /obj/structure/railing/mapped, /turf/simulated/floor/tiled/ramp/bottom{ @@ -5244,6 +5405,19 @@ temperature = 278.15 }, /area/medical/morgue/lower) +"dVb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Crew Area"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/crew_compartment) "dVz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -5261,11 +5435,6 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) -"dVS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) "dWt" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -5364,16 +5533,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) -"dZT" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "eab" = ( /obj/structure/tank_wall{ density = 0; @@ -5401,10 +5560,18 @@ /turf/simulated/floor/tiled, /area/maintenance/wing/starboard/deck1) "eaS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled, +/obj/structure/window/shuttle/unique/scc/tall{ + icon_state = "long2-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) +"ebk" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "8,1" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "ebu" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -5483,34 +5650,23 @@ /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) "edO" = ( -/obj/effect/floor_decal/corner/blue/full, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1385; - master_tag = "intrepid_shuttle_west"; - name = "interior access button"; - pixel_x = -24; - pixel_y = -5; +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/airlock_sensor/airlock_interior{ - dir = 4; - pixel_x = -23; - pixel_y = 5; - id_tag = "intrepid_shuttle_west_interior_sensor"; - frequency = 1385 +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/area/hangar/intrepid) "eeb" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -5538,33 +5694,6 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/hangar/control) -"eeD" = ( -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/firstaid/o2, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/table/standard, -/obj/structure/closet/walllocker/medical{ - pixel_x = 32 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin, -/obj/machinery/vending/wallmed1{ - pixel_y = 32; - req_access = null - }, -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Medbay" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "eeK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /turf/simulated/wall/shuttle/unique/scc/scout{ @@ -5673,12 +5802,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/hangar/port) -"elI" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/floodlight, -/obj/machinery/firealarm/west, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) "elM" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/light{ @@ -5748,6 +5871,11 @@ /obj/item/storage/box/gloves, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"epb" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,7" + }, +/area/shuttle/intrepid/cockpit) "epn" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -5760,6 +5888,19 @@ /obj/machinery/door/window/brigdoor/northright, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) +"epr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/crew_compartment) "epB" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -5821,6 +5962,21 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"eqw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/intrepid{ + dir = 8; + pixel_y = 4; + pixel_x = -23 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "erd" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, @@ -5861,15 +6017,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) -"esD" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) "esS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -5901,6 +6048,26 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/hangar/operations) +"euz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) +"euL" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "15,12"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/tall{ + icon_state = "short2_top"; + layer = 3 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/crew_compartment) "evd" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5926,6 +6093,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) +"evr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/shuttle/intrepid/quarters) "evA" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -5940,21 +6120,14 @@ /turf/simulated/floor/tiled, /area/medical/morgue/lower) "ewy" = ( -/obj/machinery/door/airlock/external{ - frequency = 1385; - icon_state = "door_locked"; - id_tag = "intrepid_shuttle_west_out" +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_outer"; + name = "Intrepid Shutter" }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1385; - master_tag = "intrepid_shuttle_west"; - name = "exterior access button"; - pixel_x = -9; - pixel_y = -23; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ dir = 8 }, /turf/simulated/floor/plating, @@ -5969,28 +6142,6 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/engineering) -"exg" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/power/apc/intrepid{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "exw" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6045,30 +6196,12 @@ /turf/simulated/floor/plating, /area/engineering/atmos/propulsion/starboard) "eyW" = ( -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Airlock Starboard" +/obj/structure/window/shuttle/unique/scc/tall{ + icon_state = "long1-2" }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1385; - id_tag = "intrepid_shuttle_west"; - layer = 3.3; - master_tag = "intrepid_shuttle"; - pixel_y = 28; - tag_airpump = "intrepid_shuttle_west_pump"; - tag_chamber_sensor = "intrepid_shuttle_west_sensor"; - tag_exterior_door = "intrepid_shuttle_west_out"; - tag_exterior_sensor = "intrepid_shuttle_west_exterior_sensor"; - tag_interior_door = "intrepid_shuttle_west_in"; - cycle_to_external_air = 1; - tag_interior_sensor = "intrepid_shuttle_west_interior_sensor" - }, -/obj/structure/bed/handrail, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - id_tag = "intrepid_shuttle_west_pump_out_internal"; - frequency = 1385; - layer = 2.8 +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, center" }, /turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) @@ -6304,6 +6437,12 @@ /obj/machinery/drone_fabricator, /turf/simulated/floor/greengrid/nitrogen, /area/engineering/drone_fabrication) +"eHK" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "3,26" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "eHZ" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -6338,6 +6477,12 @@ /obj/effect/floor_decal/corner/green{ dir = 8 }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "eIE" = ( @@ -6361,13 +6506,6 @@ "eIS" = ( /turf/simulated/wall/r_wall, /area/horizon/custodial) -"eJu" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "eJG" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -6467,15 +6605,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/reinforced/carbon_dioxide, /area/engineering/atmos) -"eLa" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) "eLb" = ( /obj/effect/floor_decal/corner/brown{ dir = 6 @@ -6507,6 +6636,13 @@ }, /turf/simulated/floor/airless, /area/engineering/atmos) +"eNa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "eNT" = ( /obj/structure/bed/stool/chair/office/bridge/pilot{ dir = 4 @@ -6609,6 +6745,20 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) +"eSa" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "eSx" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -6643,24 +6793,22 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion/starboard) +"eVk" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/shieldwallgen, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/hangar/intrepid) "eVn" = ( -/obj/machinery/door/window/westright, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/corner/blue{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8 +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "3,11" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) +/area/shuttle/intrepid/quarters) "eVw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -6723,17 +6871,24 @@ /obj/item/storage/box/gloves, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"eWB" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,17" + }, +/area/shuttle/intrepid/cargo_bay) "eWJ" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/structure/bed/padded/bunk, +/obj/structure/bed/padded, +/obj/item/bedsheet/black, +/obj/item/bedsheet/blue{ + pixel_y = 16 }, -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet/lightblue, +/area/shuttle/intrepid/quarters) "eWN" = ( /obj/machinery/power/apc/low{ name = "south bump"; @@ -6806,25 +6961,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/hangar/port) -"eYN" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4; - layer = 3.5; - start_pressure = 5066.26 - }, -/obj/machinery/door/window/eastleft, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/atmos_compartment) "eYX" = ( /obj/machinery/light/small{ dir = 1 @@ -6871,6 +7007,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/custodial) +"eZW" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "13,3" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "eZY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -6933,6 +7075,19 @@ }, /turf/simulated/floor/tiled, /area/operations/loading) +"fbB" = ( +/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 = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/crew_compartment) "fbJ" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -7092,6 +7247,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) +"fgJ" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "7,5"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "0,3" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "fgW" = ( /obj/machinery/artifact_analyser, /obj/effect/floor_decal/spline/plain{ @@ -7166,6 +7332,11 @@ }, /turf/simulated/floor/tiled/dark/full/airless, /area/shuttle/mining) +"fjA" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "6,7" + }, +/area/shuttle/intrepid/cockpit) "fjS" = ( /obj/structure/ladder/up{ pixel_y = 13 @@ -7200,6 +7371,43 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) +"flh" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -12; + pixel_y = 26 + }, +/obj/machinery/alarm{ + pixel_y = 26; + pixel_x = 5 + }, +/obj/item/device/binoculars/high_power{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "flw" = ( /obj/machinery/light{ dir = 1 @@ -7308,6 +7516,9 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "fpy" = ( @@ -7361,6 +7572,17 @@ /obj/item/device/hand_labeler, /turf/simulated/floor/tiled/dark/full, /area/outpost/mining_main/refinery) +"fry" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "11,5"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "4,3" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "fsf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7498,6 +7720,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial) +"fye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/intrepid/crew_compartment) "fyz" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -7547,34 +7788,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"fAh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/window/southleft, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Atmos Compartment"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/ramp, -/area/shuttle/intrepid/atmos_compartment) -"fAj" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/crew_compartment) "fBg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -7664,17 +7877,11 @@ /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"fEM" = ( -/obj/effect/floor_decal/corner/blue/full{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/computer/ship/helm{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/cockpit) +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "fFb" = ( /obj/machinery/door/airlock/external{ frequency = 1380; @@ -7726,6 +7933,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/airless, /area/engineering/atmos) +"fGD" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,20" + }, +/area/shuttle/intrepid/cargo_bay) "fHn" = ( /obj/structure/table/rack{ dir = 8; @@ -7782,6 +7994,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/rnd/xenoarch_atrium) +"fIw" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "13,8" + }, +/area/shuttle/intrepid/crew_compartment) +"fIy" = ( +/obj/machinery/door/window/eastright, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "fIC" = ( /obj/effect/floor_decal/corner/purple{ dir = 5 @@ -7897,6 +8124,23 @@ }, /turf/simulated/floor/tiled/full, /area/hangar/intrepid/interstitial) +"fNt" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "12,26"; + opacity = 1; + outside_part = 0 + }, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "nozzle"; + outside_part = 0; + opacity = 1; + icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; + layer = 2.4; + name = "pathfinder class shuttle hull"; + desc = "The hull and reinforcement of a Pathfinder class corporate expedition shuttle. The phoron-purple colored bands indicate this, in bold text as the SCCV Intrepid." + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "fOC" = ( /obj/structure/tank_wall/hydrogen{ icon_state = "h8" @@ -7991,23 +8235,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 +/obj/effect/floor_decal/corner/green{ + dir = 6 }, /turf/simulated/floor/tiled, /area/hangar/intrepid) -"fQU" = ( -/obj/machinery/power/smes/buildable/horizon_shuttle{ - RCon_tag = "Intrepid" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "fQZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -8073,12 +8305,6 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"fTb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "fTm" = ( /obj/structure/cable{ icon_state = "4-8" @@ -8199,7 +8425,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "fUU" = ( /obj/structure/window/shuttle/scc_space_ship, @@ -8326,6 +8552,27 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/hangar/intrepid/interstitial) +"fYr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/intrepid{ + dir = 4; + pixel_y = 4; + pixel_x = 23 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "fYt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -8349,6 +8596,56 @@ dir = 4 }, /area/maintenance/wing/port/deck1) +"fZQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + id_tag = "intrepid_shuttle_cargo_pump_out_external"; + frequency = 1385; + layer = 2.8 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1385; + master_tag = "intrepid_shuttle_cargo"; + name = "exterior access button"; + pixel_x = -22; + pixel_y = 2; + dir = 4; + layer = 3.1 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + frequency = 1385; + id_tag = "intrepid_shuttle_cargo_exterior_sensor"; + pixel_x = -21; + dir = 4; + pixel_y = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1385; + id_tag = "intrepid_shuttle_cargo"; + layer = 3.3; + master_tag = "intrepid_shuttle"; + pixel_x = -22; + tag_airpump = "intrepid_shuttle_cargo_pump"; + tag_chamber_sensor = "intrepid_shuttle_cargo_sensor"; + tag_exterior_door = "intrepid_shuttle_cargo_out"; + tag_exterior_sensor = "intrepid_shuttle_cargo_exterior_sensor"; + tag_interior_door = "intrepid_shuttle_cargo_in"; + dir = 4; + cycle_to_external_air = 1; + tag_interior_sensor = "intrepid_shuttle_cargo_interior_sensor"; + pixel_y = -8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "fZX" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Pilot Room"; @@ -8377,6 +8674,16 @@ /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos/propulsion/starboard) +"gar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "gaC" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -8438,6 +8745,12 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"gdy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "gdJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -8481,25 +8794,6 @@ "geN" = ( /turf/simulated/wall/r_wall, /area/horizon/crew_quarters/cryo/living_quarters_lift) -"gfb" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Intrepid Engine Compartment" - }, -/obj/machinery/door/firedoor, -/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/fuel, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engine_compartment) "ggp" = ( /obj/structure/cable{ icon_state = "1-2" @@ -8547,26 +8841,6 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/hangar/canary) -"ggY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8; - start_pressure = 1000.13 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "ghn" = ( /obj/structure/cable{ icon_state = "1-2" @@ -8599,10 +8873,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial) -"ghP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "gig" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 6 @@ -8666,6 +8936,11 @@ "gkM" = ( /turf/simulated/wall/shuttle/scc/cardinal, /area/shuttle/escape_pod/pod1) +"gkN" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,17" + }, +/area/shuttle/intrepid/cargo_bay) "glb" = ( /obj/structure/railing/mapped, /obj/structure/sign/emergency/evacuation{ @@ -8674,6 +8949,12 @@ }, /turf/simulated/floor/tiled, /area/hangar/operations) +"gmo" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "1,20" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "gmL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -8685,6 +8966,16 @@ }, /turf/simulated/floor/tiled/dark, /area/security/checkpoint) +"gmT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Thruster Compartment"; + req_access = list(73) + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "gnn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8734,44 +9025,6 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid) -"gpy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/engine{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me3" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/engine_compartment) -"gpR" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1385; - id_tag = "intrepid_shuttle_cargo"; - layer = 3.3; - master_tag = "intrepid_shuttle"; - pixel_x = 24; - tag_airpump = "intrepid_shuttle_cargo_pump"; - tag_chamber_sensor = "intrepid_shuttle_cargo_sensor"; - tag_exterior_door = "intrepid_shuttle_cargo_out"; - tag_exterior_sensor = "intrepid_shuttle_cargo_exterior_sensor"; - tag_interior_door = "intrepid_shuttle_cargo_in"; - dir = 8; - cycle_to_external_air = 1; - tag_interior_sensor = "intrepid_shuttle_cargo_interior_sensor" - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8; - frequency = 1385; - id_tag = "intrepid_shuttle_cargo_pump"; - layer = 2.8 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) "gqR" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -8966,18 +9219,11 @@ /turf/simulated/floor/tiled/white, /area/rnd/test_range) "gwA" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/hangar/intrepid) "gwG" = ( /obj/structure/cable/green, /obj/effect/floor_decal/industrial/hatch, @@ -9107,22 +9353,6 @@ }, /turf/simulated/floor/tiled/dark, /area/storage/eva) -"gAi" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/firealarm/west, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "gAK" = ( /obj/structure/sign/fire{ name = "\improper DANGER: COMBUSTION CHAMBER sign"; @@ -9158,6 +9388,22 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"gBq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "gBw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -9192,6 +9438,13 @@ }, /turf/simulated/floor/tiled/dark, /area/storage/eva) +"gBD" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "15,24"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "gCe" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -9205,8 +9458,12 @@ /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/atmos/air) "gDj" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/red, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "intrepid_shuttle_cargo_out" + }, /turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) "gDC" = ( @@ -9275,19 +9532,6 @@ /obj/item/storage/box/flares, /turf/simulated/floor/tiled/dark, /area/teleporter) -"gGb" = ( -/obj/machinery/meter, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/alarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/atmos_compartment) "gGg" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -9394,6 +9638,12 @@ }, /turf/simulated/floor/plating, /area/horizon/custodial/disposals) +"gJM" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "1,19" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "gJN" = ( /obj/structure/table/steel, /obj/machinery/light{ @@ -9435,6 +9685,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) +"gMb" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,23" + }, +/area/shuttle/intrepid/engine_compartment) "gMp" = ( /obj/effect/shuttle_landmark/lift/morgue_bottom, /turf/simulated/floor/plating, @@ -9480,10 +9735,10 @@ /obj/machinery/light{ dir = 8 }, -/obj/effect/floor_decal/corner/green{ +/obj/effect/floor_decal/corner/black{ dir = 9 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "gOe" = ( /obj/structure/cable{ @@ -9579,6 +9834,23 @@ }, /turf/simulated/floor/tiled/full, /area/hangar/intrepid) +"gSU" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "10,4"; + density = 0; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "3,2"; + density = 0 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/computer/shuttle_control/explore/intrepid, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "gTi" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 6 @@ -9592,19 +9864,21 @@ /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) "gTl" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/alarm{ - pixel_y = 28 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cargo_bay) +/area/hangar/intrepid) "gTq" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/bluegrid, @@ -9616,7 +9890,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/security/checkpoint) "gTU" = ( /obj/structure/flora/ausbushes/sparsegrass, @@ -9697,16 +9971,6 @@ }, /turf/simulated/floor/plating, /area/hangar/auxiliary) -"gYd" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft, -/turf/simulated/floor/tiled/ramp{ - dir = 4 - }, -/area/hangar/intrepid) "gYN" = ( /obj/structure/table/rack, /obj/structure/window/reinforced{ @@ -9735,6 +9999,20 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"gZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Cargo"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cargo_bay) "gZP" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -9805,6 +10083,31 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/airless, /area/hangar/auxiliary) +"hcq" = ( +/obj/structure/bed/stool/chair/office/bridge, +/obj/item/device/radio/intercom{ + pixel_y = 2; + dir = 4; + pixel_x = -21 + }, +/obj/machinery/button/remote/blast_door{ + id = "intrepid_outer"; + name = "side facing external blast door controller"; + pixel_x = -34; + pixel_y = -2; + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "intrepid_cockpit"; + name = "Cockpit Bolts"; + pixel_x = -34; + pixel_y = 7; + specialfunctions = 4; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "hcC" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -9835,6 +10138,11 @@ "hdi" = ( /turf/simulated/wall, /area/security/checkpoint) +"hdl" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,22" + }, +/area/shuttle/intrepid/cargo_bay) "hdK" = ( /obj/structure/railing/mapped{ dir = 1 @@ -9844,22 +10152,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) -"hdY" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1385; - id_tag = "intrepid_shuttle_cargo_pump_out_internal"; - layer = 2.8 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) "her" = ( /obj/structure/railing/mapped{ dir = 4 @@ -9873,6 +10165,9 @@ /obj/effect/floor_decal/corner/green{ dir = 1 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "heH" = ( @@ -9883,17 +10178,6 @@ }, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/air) -"hfm" = ( -/obj/structure/bed/handrail, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4; - frequency = 1385; - id_tag = "intrepid_shuttle_west_pump"; - layer = 2.8 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) "hfv" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, warehouse" @@ -9981,15 +10265,28 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos) -"hhv" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 +"hhb" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "16,13" }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 +/obj/structure/shuttle_part/scc/research{ + icon_state = "17,13"; + density = 0; + pixel_x = 32; + outside_part = 0 }, -/turf/simulated/floor/carpet/rubber, +/turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) +"hhv" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "hhO" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -10056,6 +10353,20 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) +"hkM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/command{ + name = "Fore Crew Compartment" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/crew_compartment) "hkW" = ( /obj/machinery/door/airlock/external{ frequency = 1380; @@ -10200,18 +10511,27 @@ /turf/simulated/floor/tiled/full, /area/teleporter) "hqg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "intrepid_inner"; - name = "Intrepid Shutter" +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/dark, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark/full, /area/shuttle/intrepid/cargo_bay) +"hqn" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/closet/firecloset/full, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) +"hqo" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "7,2" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "hqC" = ( /obj/structure/stairs/west, /obj/structure/railing/mapped, @@ -10397,6 +10717,16 @@ }, /turf/simulated/floor/plating, /area/hangar/canary) +"hxL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "hyD" = ( /obj/structure/tank_wall/nitrogen{ density = 0; @@ -10421,6 +10751,16 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) +"hzv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) "hzC" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, @@ -10460,6 +10800,18 @@ }, /turf/simulated/floor/carpet/rubber, /area/assembly/chargebay) +"hAl" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "13,26"; + opacity = 1; + outside_part = 0 + }, +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/landmark/entry_point/aft{ + name = "aft, port engines" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "hAU" = ( /obj/machinery/door/airlock/hatch{ name = "Propulsion"; @@ -10508,17 +10860,15 @@ /turf/simulated/floor/tiled, /area/hangar/auxiliary) "hBV" = ( -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Crew Area"; - dir = 1 +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 8; + name = "External Ports to Fuel Tank" }, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 +/obj/effect/floor_decal/industrial/outline/engineering, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/carpet/rubber, +/turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) "hCV" = ( /obj/structure/bed/stool/chair/office/light{ @@ -10611,6 +10961,8 @@ /obj/effect/floor_decal/corner/green{ dir = 6 }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hangar/intrepid) "hHY" = ( @@ -10628,7 +10980,10 @@ id = "hangarlockdown"; name = "Hangar Lockdown" }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hangar" + }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/hangar/intrepid) "hIf" = ( @@ -10820,26 +11175,12 @@ /turf/simulated/floor/plating, /area/shuttle/canary) "hQr" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Intrepid Crew Area" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "hQO" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/freezer{ @@ -10925,13 +11266,8 @@ dir = 8; pixel_x = -32 }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 2"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "hUt" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, @@ -11011,22 +11347,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion/starboard) -"hXw" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/structure/closet/walllocker/medical/secure{ - name = "blood closet"; - pixel_x = 32; - req_access = null - }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "hXX" = ( /obj/machinery/power/smes/buildable/substation{ RCon_tag = "Substation - Xenoarchaeology" @@ -11038,26 +11358,13 @@ /turf/simulated/floor/plating, /area/maintenance/substation/research_sublevel) "hYy" = ( -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"hZr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/power/apc/intrepid{ - dir = 8; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) +/area/hangar/intrepid) +"hZs" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,8" + }, +/area/shuttle/intrepid/quarters) "hZS" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -11104,13 +11411,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial) -"iau" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +"iaD" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,24" }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) +/area/shuttle/intrepid/engine_compartment) "ibi" = ( /obj/structure/railing/mapped{ dir = 4 @@ -11154,6 +11459,13 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"idU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) "ieb" = ( /obj/structure/window/shuttle/unique/scc/scout{ icon_state = "5,2" @@ -11234,17 +11546,17 @@ /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics/lower) "ifw" = ( -/obj/machinery/door/airlock/external{ - frequency = 1385; - icon_state = "door_locked"; - id_tag = "intrepid_shuttle_west_out" +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_outer"; + name = "Intrepid Shutter" }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, airlock" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 8 }, +/obj/item/hullbeacon/red, /turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) "ifD" = ( @@ -11256,7 +11568,7 @@ pixel_y = -28 }, /obj/machinery/light, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "ifE" = ( /obj/machinery/door/blast/regular{ @@ -11265,12 +11577,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/isolation_a) -"ifJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) "ifK" = ( /obj/effect/map_effect/door_helper/unres{ dir = 1 @@ -11327,21 +11633,11 @@ }, /turf/simulated/floor/tiled, /area/operations/loading) -"ihC" = ( -/obj/structure/railing/mapped{ - dir = 8 +"ihP" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "12,8" }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/area/shuttle/intrepid/crew_compartment) "iiM" = ( /obj/effect/floor_decal/corner/blue{ dir = 9 @@ -11407,6 +11703,26 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"ilY" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,23" + }, +/area/shuttle/intrepid/engine_compartment) +"imc" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "16,16" + }, +/area/shuttle/intrepid/crew_compartment) +"inf" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "12,24" + }, +/area/shuttle/intrepid/engine_compartment) +"inM" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,25" + }, +/area/shuttle/intrepid/engine_compartment) "iog" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -11421,23 +11737,16 @@ /turf/simulated/floor/plating, /area/shuttle/canary) "ioq" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/light/spot/weak{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/corner/green{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 4 - }, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "ipg" = ( @@ -11456,6 +11765,11 @@ }, /turf/simulated/floor/tiled/dark, /area/storage/eva) +"ipK" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "2,20" + }, +/area/shuttle/intrepid/atmos_compartment) "ipW" = ( /obj/machinery/door/airlock/external{ frequency = 1380; @@ -11585,19 +11899,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/operations) -"iwX" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/door/window/westright{ - name = "Medical Compartment" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "ixm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -11648,6 +11949,14 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) +"iAP" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "7,26"; + opacity = 1; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "iAX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/large_stock_marker, @@ -11718,6 +12027,52 @@ }, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) +"iDh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1385; + master_tag = "intrepid_shuttle_cargo"; + name = "interior access button"; + pixel_x = -10; + pixel_y = 20 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "intrepid_shuttle_cargo_interior_sensor"; + pixel_y = 25; + pixel_x = -10; + frequency = 1385 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1385; + id_tag = "intrepid_shuttle_cargo"; + layer = 3.3; + master_tag = "intrepid_shuttle"; + tag_airpump = "intrepid_shuttle_cargo_pump"; + tag_chamber_sensor = "intrepid_shuttle_cargo_sensor"; + tag_exterior_door = "intrepid_shuttle_cargo_out"; + tag_exterior_sensor = "intrepid_shuttle_cargo_exterior_sensor"; + tag_interior_door = "intrepid_shuttle_cargo_in"; + cycle_to_external_air = 1; + tag_interior_sensor = "intrepid_shuttle_cargo_interior_sensor"; + pixel_y = 22 + }, +/obj/machinery/button/remote/blast_door{ + id = "intrepid_bay_outer"; + name = "inner cargo hold blast doors"; + pixel_x = 10; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "iDk" = ( /obj/effect/shuttle_landmark/escape_pod/start/pod4, /turf/simulated/floor/shuttle/dark_blue, @@ -11894,6 +12249,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port/deck1) +"iKx" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "12,5"; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "iKD" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 8 @@ -11935,14 +12297,17 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) -"iLE" = ( -/obj/machinery/shipsensors/weak, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 +"iLX" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "0,21"; + density = 0; + pixel_x = -32; + outside_part = 0 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "1,21" + }, +/area/shuttle/intrepid/engine_compartment) "iMg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -11960,6 +12325,23 @@ /obj/effect/floor_decal/spline/plain/cee, /turf/simulated/floor/carpet/rubber, /area/teleporter) +"iMt" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "6,26"; + opacity = 1; + outside_part = 0 + }, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "nozzle"; + outside_part = 0; + opacity = 1; + icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; + layer = 2.4; + name = "pathfinder class shuttle hull"; + desc = "The hull and reinforcement of a Pathfinder class corporate expedition shuttle. The phoron-purple colored bands indicate this, in bold text as the SCCV Intrepid." + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "iMY" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12077,6 +12459,16 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) +"iQL" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "10,2" + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "3,0"; + density = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "iQM" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -12119,6 +12511,18 @@ "iSc" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/maintenance/research_port) +"iSn" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "5,26"; + opacity = 1; + outside_part = 0 + }, +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard engines" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "iSu" = ( /obj/structure/lattice, /obj/structure/grille, @@ -12244,18 +12648,7 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/light/spot/weak{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/black{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "iZi" = ( @@ -12323,10 +12716,46 @@ }, /turf/simulated/floor/tiled, /area/hangar/operations) +"jbR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "jbS" = ( /obj/effect/shuttle_landmark/horizon/deckone/starboard, /turf/template_noop, /area/template_noop) +"jcd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/engineering, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/intrepid/crew_compartment) +"jcD" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "jcT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable{ @@ -12393,6 +12822,12 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/rnd/xenoarch_atrium) +"jew" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "5,5" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "jeF" = ( /obj/effect/floor_decal/corner/green{ dir = 1 @@ -12508,6 +12943,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) +"jkq" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/cryopod, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "jks" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -12570,13 +13010,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) -"joi" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/walllocker/emerglocker/west, -/obj/machinery/light/small, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "joF" = ( /obj/effect/landmark/entry_point/port{ name = "port, deck 1 maintenance" @@ -12595,6 +13028,18 @@ }, /turf/simulated/floor/tiled, /area/medical/morgue/lower) +"jpl" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "5,4" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) +"jpo" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "16,9" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/crew_compartment) "jpI" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -12670,10 +13115,10 @@ /turf/simulated/floor/tiled/dark, /area/storage/eva) "jqE" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "jrr" = ( /obj/structure/cable/green{ @@ -12730,6 +13175,11 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) +"jtK" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,20" + }, +/area/shuttle/intrepid/cargo_bay) "jue" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -12831,20 +13281,6 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/rnd/eva) -"jwo" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "jwL" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -12906,23 +13342,27 @@ /turf/simulated/floor/tiled/dark/cooled, /area/turret_protected/ai) "jyn" = ( -/obj/machinery/airlock_sensor{ - frequency = 1385; - id_tag = "intrepid_shuttle_west_sensor"; - pixel_y = -23; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 }, -/obj/structure/bed/handrail{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4; - frequency = 1385; - id_tag = "intrepid_shuttle_west_pump"; - layer = 2.8 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -16; + pixel_x = 7 + }, +/turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) "jyH" = ( /obj/effect/floor_decal/corner_wide/purple{ @@ -12991,6 +13431,11 @@ dir = 8 }, /area/maintenance/research_port) +"jAw" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,20" + }, +/area/shuttle/intrepid/atmos_compartment) "jAy" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "1,4" @@ -13012,6 +13457,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hangar/intrepid/interstitial) +"jBq" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "9,10" + }, +/area/shuttle/intrepid/quarters) "jBx" = ( /obj/turbolift_map_holder/scc_ship/primary, /turf/simulated/floor/plating, @@ -13125,21 +13575,6 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/engineering/storage/tech) -"jEt" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me1" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" - }, -/area/shuttle/intrepid/atmos_compartment) "jEx" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/hangar/operations) @@ -13168,6 +13603,20 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) +"jEW" = ( +/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/ramp{ + dir = 4 + }, +/area/shuttle/intrepid/crew_compartment) "jFa" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ @@ -13239,6 +13688,27 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"jHp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/hoist_kit, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "jHu" = ( /obj/structure/tank_wall{ icon_state = "m-8" @@ -13264,6 +13734,13 @@ opacity = 1 }, /area/shuttle/canary) +"jIj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "jID" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/visible/purple, @@ -13404,13 +13881,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion/starboard) -"jQQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "jRx" = ( /obj/structure/cable{ icon_state = "4-8" @@ -13506,11 +13976,10 @@ /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) "jUm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 1 +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "3,13" }, -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/crew_compartment) +/area/shuttle/intrepid/quarters) "jUT" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 @@ -13555,52 +14024,44 @@ /turf/simulated/floor/tiled/full, /area/maintenance/engineering) "jWI" = ( -/obj/machinery/newscaster{ - pixel_x = 30 +/obj/structure/shuttle_part/scc/research{ + icon_state = "14,12"; + density = 0; + outside_part = 0; + layer = 2.6 }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 43 +/obj/structure/table/reinforced, +/obj/item/material/kitchen/utensil/knife/plastic{ + pixel_x = 9 }, -/obj/structure/table/steel, -/obj/item/device/binoculars/high_power{ - pixel_x = -2; - pixel_y = -1 +/obj/item/material/kitchen/utensil/knife/plastic{ + pixel_x = 7 }, -/obj/machinery/recharger{ - pixel_x = 6; +/obj/item/storage/box/drinkingglasses{ pixel_y = 6 }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 +/obj/item/storage/box/drinkingglasses{ + pixel_y = 6 }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 +/obj/item/storage/box/kitchen, +/obj/item/storage/box/kitchen, +/obj/machinery/light/small{ + dir = 1 }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/crew_compartment) "jWJ" = ( /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/hangar/operations) "jXW" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/fuel_port/phoron{ - pixel_x = -32 +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; +/obj/machinery/door/airlock/external{ frequency = 1385; - id_tag = "intrepid_shuttle_cargo_pump_out_internal"; - layer = 2.8 + icon_state = "door_locked"; + id_tag = "intrepid_shuttle_cargo_out" }, /turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) @@ -13659,6 +14120,12 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid) +"kaM" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "9,0" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "kbo" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -13718,6 +14185,13 @@ }, /turf/simulated/floor/plating, /area/shuttle/escape_pod/pod4) +"kcW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "kdE" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -13748,6 +14222,16 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/canary) +"ker" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "16,19" + }, +/area/shuttle/intrepid/cargo_bay) +"keA" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,10" + }, +/area/shuttle/intrepid/crew_compartment) "keQ" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Atmospherics Control 3" @@ -13768,6 +14252,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/engineering/gravity_gen) +"kga" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "kgC" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -13826,27 +14325,20 @@ /turf/space, /area/horizon/exterior) "kki" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/airlock_sensor{ - frequency = 1385; - id_tag = "intrepid_shuttle_cargo_sensor"; - pixel_x = -24; - pixel_y = -6; - dir = 4 - }, /obj/structure/bed/handrail{ dir = 4 }, /obj/machinery/camera/network/intrepid{ c_tag = "Intrepid - Airlock Aft"; - dir = 1 + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4; - id_tag = "intrepid_shuttle_cargo_pump"; +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; frequency = 1385; + id_tag = "intrepid_shuttle_cargo_pump_out_internal"; layer = 2.8 }, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) "kkS" = ( @@ -13871,6 +14363,17 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) +"kmo" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "18,21"; + density = 0; + pixel_x = 32; + outside_part = 0 + }, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "17,21" + }, +/area/shuttle/intrepid/engine_compartment) "kmS" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -13921,6 +14424,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) +"knw" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "16,12" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/crew_compartment) "koi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -13988,6 +14497,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hangar/auxiliary) +"koV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/portables_connector{ + dir = 1; + layer = 2.8 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/intrepid/quarters) "kpm" = ( /obj/structure/railing/mapped{ dir = 8 @@ -14045,11 +14562,10 @@ /turf/simulated/floor/tiled, /area/hangar/intrepid) "kqZ" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "9,11" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/area/shuttle/intrepid/quarters) "krm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -14060,16 +14576,13 @@ /turf/simulated/floor/plating, /area/engineering/atmos/air) "kru" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, /obj/structure/cable{ - icon_state = "2-4" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/green{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "krG" = ( /obj/structure/shuttle_part/scc/scout{ @@ -14087,17 +14600,17 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/canary) -"ksy" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 +"ksN" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "2,25"; + density = 0; + pixel_x = -32; + outside_part = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "3,25" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/area/shuttle/intrepid/engine_compartment) "ksR" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14195,16 +14708,27 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/custodial/disposals) -"kxl" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/window/reinforced{ +"kxk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + id_tag = "intrepid_shuttle_cargo_pump_out_external"; + frequency = 1385; + layer = 2.8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/bed/handrail{ dir = 8 }, -/obj/structure/window/reinforced, -/obj/structure/bed/roller, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 18 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "kyq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -14213,6 +14737,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"kyK" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "9,2"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "2,0" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "kzi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -14279,14 +14814,6 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) -"kzH" = ( -/obj/machinery/door/window/eastright, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/ramp{ - dir = 4 - }, -/area/hangar/intrepid) "kzJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -14323,14 +14850,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/rnd/xenoarch_atrium) -"kAX" = ( -/obj/structure/window/shuttle/scc, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/fore{ - name = "fore, bridge side" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) "kBF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14389,6 +14908,19 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion/starboard) +"kCU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/sleeper, +/obj/machinery/vending/wallmed1{ + pixel_y = 26; + req_access = null; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) "kDf" = ( /obj/structure/railing/mapped, /obj/effect/decal/cleanable/dirt, @@ -14399,30 +14931,20 @@ /turf/simulated/floor/plating, /area/maintenance/wing/port/deck1) "kDt" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/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 = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 + icon_state = "1-2" }, /obj/effect/floor_decal/corner/blue{ - dir = 9 + dir = 5 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 7 +/obj/machinery/light/small{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/crew_compartment) "kDx" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "7,4" @@ -14456,53 +14978,18 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) -"kDY" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "kEg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 24 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "West Airlock;Cargo Airlock"; - child_tags_txt = "intrepid_shuttle_west;intrepid_shuttle_cargo"; - frequency = 1380; - id_tag = "intrepid_shuttle"; - pixel_y = 33 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/structure/bed/stool/chair/sofa/right/red, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/crew_compartment) "kEk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14540,6 +15027,15 @@ }, /turf/simulated/floor/plating, /area/hangar/intrepid) +"kES" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "kEW" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -14585,6 +15081,17 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"kHF" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "7,6"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "0,4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "kHT" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -14750,16 +15257,11 @@ /turf/simulated/floor/tiled, /area/medical/morgue/lower) "kMG" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "se2"; - opacity = 1 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/engine_compartment) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/hangar/intrepid) "kMV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/green{ @@ -14821,6 +15323,18 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) +"kOR" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/obj/machinery/meter{ + name = "Fuel Reserve"; + pixel_y = 10; + pixel_x = 7 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "kQI" = ( /obj/structure/railing/mapped, /obj/machinery/light/small/emergency{ @@ -14852,14 +15366,16 @@ /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) "kSq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ +/obj/effect/floor_decal/corner/black{ dir = 9 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) +"kSs" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,10" + }, +/area/shuttle/intrepid/quarters) "kSH" = ( /obj/structure/tank_wall/hydrogen{ icon_state = "h16" @@ -14868,6 +15384,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/airless, /area/engineering/atmos) +"kTh" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "12,7" + }, +/area/shuttle/intrepid/cockpit) "kTC" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -14961,15 +15482,16 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) -"kWb" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 +"kVM" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "8,13" }, -/obj/structure/cable/green{ - icon_state = "1-2" +/area/shuttle/intrepid/crew_compartment) +"kVX" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,17" }, -/turf/simulated/floor/tiled, -/area/shuttle/intrepid/cargo_bay) +/area/shuttle/intrepid/atmos_compartment) "kWp" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 8 @@ -15046,13 +15568,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/space/dynamic, /area/horizon/exterior) -"laL" = ( -/obj/effect/floor_decal/corner/blue/full, -/obj/machinery/computer/shuttle_control/explore/intrepid{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/cockpit) "laX" = ( /obj/structure/window/shuttle/unique/scc/scout{ icon_state = "3,5" @@ -15069,6 +15584,13 @@ }, /turf/simulated/floor/plating, /area/shuttle/canary) +"lbc" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "8,0"; + density = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "lbr" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -15196,6 +15718,22 @@ /obj/item/device/hand_labeler, /turf/simulated/floor/tiled/dark, /area/security/checkpoint) +"lgN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) "lhE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, @@ -15210,28 +15748,10 @@ /turf/simulated/floor/tiled/dark, /area/engineering/atmos) "liI" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "9,12" }, -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "West Airlock;Cargo Airlock"; - child_tags_txt = "intrepid_shuttle_west;intrepid_shuttle_cargo"; - frequency = 1385; - id_tag = "intrepid_shuttle"; - pixel_y = 28 - }, -/obj/machinery/computer/ship/sensors{ - dir = 4; - layer = 2.991 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/area/shuttle/intrepid/quarters) "liP" = ( /obj/structure/sign/securearea{ pixel_y = 32 @@ -15291,14 +15811,11 @@ /turf/simulated/floor/tiled, /area/maintenance/wing/starboard/deck1) "lkH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - id_tag = "intrepid_cockpit"; - name = "Intrepid Cockpit"; - req_access = list(73) +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "8,13" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/area/shuttle/intrepid/quarters) "llk" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 @@ -15430,6 +15947,11 @@ }, /turf/simulated/floor/reinforced, /area/rnd/test_range) +"lqO" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,19" + }, +/area/shuttle/intrepid/atmos_compartment) "lrd" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -15516,13 +16038,35 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"luZ" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,24" + }, +/area/shuttle/intrepid/engine_compartment) "lvq" = ( /obj/structure/closet/firecloset, /obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled/dark/full, /area/storage/eva) "lvI" = ( -/turf/simulated/floor/tiled, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/glasses/hud/health, +/obj/item/storage/firstaid/o2, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, /area/shuttle/intrepid/crew_compartment) "lvP" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -15571,6 +16115,28 @@ dir = 4 }, /area/maintenance/research_port) +"lyH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "3,10" + }, +/area/shuttle/intrepid/quarters) +"lyN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/smes/buildable/horizon_shuttle{ + RCon_tag = "Intrepid" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 21; + pixel_x = 7 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "lyU" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -15654,7 +16220,7 @@ c_tag = "First Deck - Hangar 8"; dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "lDd" = ( /obj/structure/cable/green{ @@ -15725,13 +16291,6 @@ /obj/random/tech_supply, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion/starboard) -"lFU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "lGb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable{ @@ -15786,6 +16345,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"lIM" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "intrepid_outer"; + name = "Intrepid Shutter" + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/item/hullbeacon/red, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/crew_compartment) "lJi" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; @@ -15851,10 +16424,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" +/obj/effect/floor_decal/corner/green{ + dir = 6 }, /turf/simulated/floor/tiled/full, /area/hangar/intrepid) @@ -15882,6 +16453,9 @@ dir = 6 }, /obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "lMS" = ( @@ -16097,9 +16671,27 @@ /turf/simulated/floor/reinforced, /area/shuttle/canary) "lRu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/dark, +/obj/structure/closet/secure_closet/guncabinet{ + name = "Emergency Weaponry"; + req_access = list(73) + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/item/gun/energy/laser/shotgun/research, +/obj/item/gun/energy/laser/shotgun/research, +/obj/item/clothing/accessory/holster/utility/machete, +/obj/item/clothing/accessory/holster/utility/machete, +/obj/item/material/hatchet/machete/steel, +/obj/item/material/hatchet/machete/steel, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, /area/shuttle/intrepid/crew_compartment) "lRH" = ( /obj/structure/cable/green{ @@ -16317,8 +16909,27 @@ /area/storage/eva) "lWu" = ( /obj/machinery/bluespace_beacon, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) +"lWy" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,22" + }, +/area/shuttle/intrepid/engine_compartment) +"lWV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/light/small/red{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "lXa" = ( /obj/structure/cable, /obj/machinery/power/terminal{ @@ -16333,19 +16944,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"lXC" = ( -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Engine Compartment"; - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "lXZ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/disposalpipe/segment{ @@ -16395,6 +16993,11 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/canary) +"maM" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,13" + }, +/area/shuttle/intrepid/crew_compartment) "mbp" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -16430,6 +17033,16 @@ /obj/random/tech_supply, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion/starboard) +"mbZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "mcC" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "1,5" @@ -16677,13 +17290,20 @@ /turf/simulated/floor/tiled/full, /area/hallway/engineering) "mlL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled/dark, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/bed/roller, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -16; + pixel_x = -11 + }, +/turf/simulated/floor/tiled/white, /area/shuttle/intrepid/crew_compartment) "mmh" = ( /obj/structure/closet/walllocker/emerglocker/south, @@ -16782,6 +17402,37 @@ /obj/machinery/door/airlock/maintenance_hatch, /turf/simulated/floor/tiled, /area/maintenance/operations) +"moH" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/intrepid{ + dir = 1; + pixel_y = 24; + pixel_x = 4 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + pixel_y = 26; + req_access = null; + pixel_x = -11 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/atmos_compartment) "moI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -16913,6 +17564,11 @@ }, /turf/simulated/floor/tiled, /area/hangar/auxiliary) +"mvO" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,20" + }, +/area/shuttle/intrepid/atmos_compartment) "mwo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16932,34 +17588,13 @@ /turf/simulated/floor/plating, /area/hangar/operations) "mwR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 }, -/obj/machinery/power/apc/intrepid{ - dir = 8; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/machinery/airlock_sensor/airlock_interior{ - id_tag = "intrepid_shuttle_cargo_interior_sensor"; - pixel_y = 23; - pixel_x = -3; - frequency = 1385 +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "intrepid_shuttle_cargo_in" }, /turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) @@ -17014,13 +17649,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hangar/operations) -"myR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) "mzd" = ( /obj/machinery/atmospherics/pipe/tank/air/scc_shuttle{ dir = 4 @@ -17074,18 +17702,9 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/stairwell/central) -"mBJ" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" +"mCJ" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,22" }, /area/shuttle/intrepid/engine_compartment) "mDd" = ( @@ -17138,6 +17757,22 @@ }, /turf/simulated/floor/tiled/dark/full, /area/rnd/xenoarch_atrium) +"mFo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_command{ + id_tag = "intrepid_cockpit"; + name = "Intrepid Cockpit"; + req_access = list(73) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cockpit) "mFu" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -17191,19 +17826,17 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) +"mIX" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "14,7"; + density = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "mJk" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) -"mJn" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/crew_compartment) "mJD" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "6,11"; @@ -17271,8 +17904,15 @@ /obj/effect/floor_decal/corner/green{ dir = 10 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) +"mLu" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "mLw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable{ @@ -17339,6 +17979,9 @@ /area/maintenance/wing/starboard/deck1) "mNH" = ( /obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "mNS" = ( @@ -17510,21 +18153,26 @@ /turf/simulated/floor/tiled/dark, /area/storage/eva) "mSf" = ( -/obj/structure/bed/handrail{ - dir = 8 +/obj/structure/shuttle_part/scc/research{ + icon_state = "4,12"; + density = 0; + outside_part = 0; + layer = 2.6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + pixel_y = 21; + pixel_x = 7 }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - id_tag = "intrepid_shuttle_west_pump_out_external"; - frequency = 1385; - layer = 2.8 +/obj/item/device/binoculars{ + pixel_x = 12 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) +/obj/machinery/recharger{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/quarters) "mSk" = ( /obj/effect/floor_decal/corner/green{ dir = 10 @@ -17705,13 +18353,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/mining) -"mXg" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "mwr1" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) "mXD" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -17808,18 +18449,34 @@ /turf/simulated/floor/tiled, /area/medical/morgue/lower) "mZD" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "mwr2" +/obj/effect/floor_decal/corner/black{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot/weak{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "nag" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 }, /turf/simulated/floor/tiled, /area/operations/loading) +"nar" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "nax" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1386; @@ -17849,6 +18506,11 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/canary) +"ncq" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "2,16" + }, +/area/shuttle/intrepid/atmos_compartment) "ncC" = ( /obj/machinery/light/small{ dir = 1 @@ -17876,20 +18538,17 @@ /turf/simulated/floor/reinforced, /area/rnd/test_range) "ncP" = ( -/obj/item/storage/toolbox/electrical{ - pixel_y = 6 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/turf/simulated/floor/wood, +/area/shuttle/intrepid/quarters) "ndI" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "2,12"; @@ -17919,6 +18578,22 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/operations) +"neC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/intrepid/crew_compartment) "nfE" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/lattice/catwalk/indoor, @@ -18051,18 +18726,6 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) -"njr" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/shuttle/intrepid/cargo_bay) "njB" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -18159,6 +18822,11 @@ }, /turf/simulated/floor/plating, /area/engineering/storage/lower) +"nmW" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "13,17" + }, +/area/shuttle/intrepid/cargo_bay) "nnh" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ frequency = 1441; @@ -18251,6 +18919,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos) +"nrz" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "17,20" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "nrK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -18373,6 +19047,20 @@ /obj/item/pen, /turf/simulated/floor/tiled/dark, /area/hangar/control) +"nvn" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + id_tag = "intrepid_shuttle_cargo_pump_out_external"; + frequency = 1385; + layer = 2.8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "nvV" = ( /obj/structure/cable{ icon_state = "1-2" @@ -18399,10 +19087,29 @@ /turf/simulated/floor/plating, /area/rnd/eva) "nwF" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/table/standard, +/obj/item/roller{ + pixel_x = -8 + }, +/obj/item/roller{ + pixel_x = -8 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 19 + }, +/obj/item/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, /area/shuttle/intrepid/crew_compartment) "nwI" = ( /obj/effect/floor_decal/industrial/warning{ @@ -18426,29 +19133,36 @@ /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) "nxj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 }, -/obj/effect/floor_decal/corner/blue, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "intrepid_shuttle_cargo_in" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux, -/turf/simulated/floor/tiled, +/turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) "nyl" = ( -/obj/structure/window/shuttle/scc, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) +/obj/effect/shuttle_landmark/intrepid/hangar, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "9,13" + }, +/area/shuttle/intrepid/quarters) "nyp" = ( /turf/simulated/floor/grass/alt, /area/horizon/hydroponics/lower) "nyz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 +/obj/structure/shuttle_part/scc/research{ + icon_state = "1,13"; + density = 0; + pixel_x = -32; + outside_part = 0 }, -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/crew_compartment) +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "2,13" + }, +/area/shuttle/intrepid/quarters) "nyL" = ( /turf/unsimulated/wall/fakepdoor{ dir = 4 @@ -18536,6 +19250,11 @@ }, /turf/simulated/floor/airless, /area/engineering/atmos) +"nBh" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,23" + }, +/area/shuttle/intrepid/engine_compartment) "nBA" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -18643,10 +19362,17 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion/starboard) -"nGN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +"nGF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "nGZ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -18672,6 +19398,11 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"nJB" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,16" + }, +/area/shuttle/intrepid/atmos_compartment) "nKB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION'."; @@ -18735,6 +19466,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/full, /area/maintenance/engineering) +"nME" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "3,23"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "nMJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -18810,6 +19548,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/outpost/mining_main/refinery) +"nOb" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "2,22"; + opacity = 1; + outside_part = 0 + }, +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "nOi" = ( /obj/machinery/seed_storage/garden, /obj/effect/floor_decal/industrial/outline/yellow, @@ -18895,12 +19642,26 @@ /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) "nQH" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, /area/shuttle/intrepid/cargo_bay) +"nQT" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "12,4"; + layer = 2.97; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "nRy" = ( /turf/simulated/wall, /area/horizon/hydroponics/lower) @@ -18988,18 +19749,6 @@ }, /turf/simulated/floor/tiled/dark, /area/storage/eva) -"nUc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue/full, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "nUn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -19009,18 +19758,6 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) -"nUQ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) "nUR" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -19039,6 +19776,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) +"nVZ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "nWf" = ( /obj/machinery/light/small{ dir = 4 @@ -19135,14 +19887,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/plating, /area/rnd/xenoarch_atrium) -"nZx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "oam" = ( /obj/structure/grille/diagonal{ dir = 8 @@ -19184,14 +19928,6 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"obJ" = ( -/obj/structure/window/shuttle/scc, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/fore{ - name = "fore, bridge" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) "obL" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -19208,7 +19944,26 @@ /turf/simulated/floor/plating, /area/maintenance/engineering) "ock" = ( -/turf/simulated/wall/shuttle/scc/cardinal, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/quarters) +"ocp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, /area/shuttle/intrepid/cockpit) "ocs" = ( /obj/structure/cable/green{ @@ -19307,6 +20062,12 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) +"oea" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "13,7" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "oek" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19317,6 +20078,13 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"oeq" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "6,6"; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "ofh" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -19345,6 +20113,24 @@ /obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/operations/storage) +"ohm" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "ohB" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, @@ -19360,16 +20146,6 @@ dir = 8 }, /area/hangar/operations) -"ohO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Intrepid Cargo Bay" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/shuttle/intrepid/cargo_bay) "ohS" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/mineral/processing_unit{ @@ -19381,6 +20157,24 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) +"ois" = ( +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "1,3"; + density = 0 + }, +/obj/structure/bed/stool/chair/office/bridge{ + dir = 8 + }, +/obj/machinery/computer/ship/sensors/cockpit{ + pixel_x = -22; + layer = 3; + pixel_y = 7 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "oiS" = ( /turf/simulated/floor/greengrid/nitrogen, /area/engineering/drone_fabrication) @@ -19478,6 +20272,18 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion) +"onT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "onU" = ( /obj/machinery/atmospherics/pipe/zpipe/up/black, /obj/structure/lattice, @@ -19533,6 +20339,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full/airless, /area/shuttle/mining) +"otE" = ( +/obj/machinery/atmospherics/portables_connector/aux, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm/north, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cargo_bay) "otX" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/green{ @@ -19605,6 +20423,11 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/gravity_gen) +"ouI" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,10" + }, +/area/shuttle/intrepid/crew_compartment) "ovb" = ( /obj/machinery/firealarm/east, /obj/effect/floor_decal/corner/brown/full{ @@ -19623,21 +20446,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"ovh" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "ows" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -19653,6 +20461,12 @@ }, /turf/simulated/floor/tiled/dark, /area/hangar/auxiliary) +"owM" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "11,2" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "owP" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/disposalpipe/segment, @@ -19688,14 +20502,22 @@ /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) "oxX" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 }, -/turf/simulated/floor/tiled/dark, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) "oys" = ( /obj/effect/floor_decal/corner/green{ @@ -19922,10 +20744,20 @@ /turf/simulated/floor/reinforced, /area/rnd/test_range) "oFN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/turf/simulated/floor/plating, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "oGK" = ( /obj/structure/trash_pile, @@ -19966,6 +20798,16 @@ /obj/machinery/light, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/escape_pod/pod1) +"oKJ" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "8,2" + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "1,0"; + density = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "oLd" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -20000,6 +20842,11 @@ }, /turf/simulated/floor/tiled, /area/medical/emergency_storage) +"oMU" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,18" + }, +/area/shuttle/intrepid/atmos_compartment) "oNp" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -20079,6 +20926,16 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/hangar/operations) +"oSi" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "9,1"; + outside_part = 0 + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, bridge" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "oSv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -20180,15 +21037,12 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/hangar/operations) -"oYc" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 +"oXW" = ( +/obj/machinery/shipsensors/weak/scc_shuttle{ + pixel_y = -15 }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/structure/table/steel, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, /area/shuttle/intrepid/cockpit) "oYp" = ( /obj/structure/cable/green{ @@ -20308,6 +21162,14 @@ "pbJ" = ( /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/escape_pod/pod4) +"pbX" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "6,4"; + layer = 2.97; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "pbY" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/visible/universal{ @@ -20343,6 +21205,41 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"pcQ" = ( +/obj/item/device/gps/stationary/sccv_intrepid{ + pixel_x = 7; + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Medbay" + }, +/obj/structure/bedsheetbin, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) +"pdv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/binary/passive_gate/supply{ + target_pressure = 250; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/intrepid/crew_compartment) "pdC" = ( /turf/simulated/wall/r_wall, /area/turret_protected/ai_upload) @@ -20387,6 +21284,11 @@ }, /turf/simulated/floor/tiled, /area/hangar/operations) +"pfa" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,9" + }, +/area/shuttle/intrepid/crew_compartment) "pfb" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/floor_decal/corner/brown{ @@ -20452,6 +21354,21 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/airless, /area/hangar/operations) +"phg" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "8,3"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "1,1" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "phs" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -20497,6 +21414,15 @@ "pid" = ( /turf/simulated/floor/reinforced, /area/rnd/isolation_b) +"piD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "piI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -20552,19 +21478,8 @@ /obj/effect/floor_decal/corner/green{ dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) -"pkw" = ( -/obj/structure/window/shuttle/scc, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/entry_point/port{ - name = "port, engine compartment" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engine_compartment) "pkE" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -20620,16 +21535,6 @@ /obj/effect/floor_decal/industrial/outline/research, /turf/simulated/floor/tiled, /area/operations/storage) -"pmR" = ( -/obj/machinery/computer/ship/engines, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "png" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/tank_wall/nitrous_oxide{ @@ -20652,6 +21557,13 @@ /obj/structure/window/shuttle/scc, /turf/simulated/floor/plating, /area/shuttle/escape_pod/pod3) +"poM" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "12,6"; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "poO" = ( /obj/structure/window/reinforced{ dir = 8 @@ -20687,6 +21599,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/storage/eva) +"ppH" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "ppR" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/lattice/catwalk/indoor, @@ -20702,6 +21618,11 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"ppS" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,16" + }, +/area/shuttle/intrepid/atmos_compartment) "pqh" = ( /obj/machinery/power/apc/low{ name = "south bump"; @@ -20743,19 +21664,11 @@ /obj/random/loot, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"psd" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/obj/machinery/light/small{ - dir = 8 +"pru" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "2,17" }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/intrepid/cargo_bay) +/area/shuttle/intrepid/atmos_compartment) "psr" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Starboard Propulsion"; @@ -20807,25 +21720,9 @@ /turf/simulated/floor/tiled, /area/hangar/intrepid) "pvn" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/airlock_sensor/airlock_exterior{ - frequency = 1385; - id_tag = "intrepid_shuttle_cargo_exterior_sensor"; - pixel_x = -23; - dir = 4; - pixel_y = 5 - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - id_tag = "intrepid_shuttle_cargo_pump_out_external"; - frequency = 1385; - layer = 2.8 - }, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) +/area/hangar/intrepid) "pvO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 8 @@ -20990,26 +21887,6 @@ }, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/air) -"pAv" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "pAB" = ( /obj/structure/cable{ icon_state = "0-8" @@ -21055,6 +21932,15 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/maintenance/engineering) +"pBV" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "16,22"; + opacity = 1; + outside_part = 0 + }, +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "pCs" = ( /obj/structure/cable{ icon_state = "1-2" @@ -21068,14 +21954,11 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"pCD" = ( -/obj/structure/window/reinforced{ - dir = 8 +"pCx" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "16,10" }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/sleeper, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) "pEb" = ( /obj/machinery/body_scanconsole{ @@ -21140,6 +22023,9 @@ /obj/effect/floor_decal/corner/black{ dir = 6 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "pFK" = ( @@ -21175,6 +22061,17 @@ /obj/structure/stairs/west, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) +"pGP" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "16,25"; + density = 0; + pixel_x = 32; + outside_part = 0 + }, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "15,25" + }, +/area/shuttle/intrepid/engine_compartment) "pHy" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/loading/grey, @@ -21227,6 +22124,23 @@ /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, /area/outpost/mining_main/eva) +"pIR" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "4,26"; + opacity = 1; + outside_part = 0 + }, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "nozzle"; + outside_part = 0; + opacity = 1; + icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; + layer = 2.4; + name = "pathfinder class shuttle hull"; + desc = "The hull and reinforcement of a Pathfinder class corporate expedition shuttle. The phoron-purple colored bands indicate this, in bold text as the SCCV Intrepid." + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "pJm" = ( /obj/effect/floor_decal/corner/purple{ dir = 6 @@ -21300,6 +22214,14 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/deck1) +"pLV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/effect/floor_decal/industrial/outline/engineering, +/obj/machinery/atmospherics/binary/pump{ + name = "Air Reserve to Airlock Cycling" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "pMo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -21318,6 +22240,21 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"pMz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_command{ + name = "Intrepid Cargo Bay" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/cargo_bay) "pMA" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -21483,6 +22420,23 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) +"pTd" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "9,3"; + density = 0; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + density = 0 + }, +/obj/machinery/computer/ship/helm/cockpit{ + layer = 3.1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "pTj" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/industrial/outline/grey, @@ -21494,17 +22448,13 @@ /turf/simulated/floor/reinforced/phoron, /area/engineering/atmos) "pTp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/airlock/external{ +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + id_tag = "intrepid_shuttle_cargo_pump"; frequency = 1385; - icon_state = "door_locked"; - id_tag = "intrepid_shuttle_cargo_in" + layer = 2.8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/dark, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) "pTw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -21604,24 +22554,6 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"pXu" = ( -/obj/machinery/power/apc/intrepid{ - dir = 4; - pixel_x = 30 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/atmos_compartment) "pXv" = ( /obj/machinery/light{ dir = 4 @@ -21682,19 +22614,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/air) -"pZv" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "qaf" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -21846,7 +22765,7 @@ /obj/effect/floor_decal/corner/green{ dir = 10 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/security/checkpoint) "qeG" = ( /obj/effect/floor_decal/industrial/warning{ @@ -21869,18 +22788,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/research_port) -"qeY" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/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/fuel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "qfH" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 5 @@ -21980,11 +22887,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) -"qjt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) "qju" = ( /turf/simulated/wall, /area/horizon/stairwell/central) @@ -22030,7 +22932,7 @@ name = "Security Checkpoint Shutter" }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/security/checkpoint) "qks" = ( /obj/structure/railing/mapped{ @@ -22061,15 +22963,15 @@ /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) "qmi" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 18 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/turf/simulated/floor/carpet/lightblue, +/area/shuttle/intrepid/quarters) "qmn" = ( /obj/machinery/power/apc/low{ name = "south bump"; @@ -22089,6 +22991,19 @@ }, /turf/simulated/floor/tiled, /area/hangar/auxiliary) +"qmJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "15,11" + }, +/area/shuttle/intrepid/crew_compartment) +"qnb" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "16,17" + }, +/area/shuttle/intrepid/cargo_bay) "qnr" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -22288,13 +23203,14 @@ /turf/space/dynamic, /area/horizon/exterior) "qtp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/obj/effect/floor_decal/corner/pink/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/quarters) "qtO" = ( /obj/structure/cable{ icon_state = "2-4" @@ -22316,6 +23232,12 @@ dir = 1 }, /area/maintenance/research_port) +"qui" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "17,19" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "quA" = ( /obj/structure/cable{ icon_state = "1-2" @@ -22381,6 +23303,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) +"qwt" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "15,23"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "qwK" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Hangar" @@ -22391,23 +23320,6 @@ }, /turf/simulated/floor/tiled/full, /area/hangar/intrepid/interstitial) -"qxk" = ( -/obj/structure/closet/walllocker/emerglocker/east, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "qxn" = ( /obj/structure/table/standard, /obj/machinery/light{ @@ -22487,18 +23399,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial) -"qAI" = ( -/obj/structure/bed/stool/chair/office/bridge, -/obj/effect/floor_decal/corner/blue{ - dir = 6 +"qAj" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,17" }, -/obj/structure/cable/green, -/obj/machinery/power/apc/intrepid{ - dir = 4; - pixel_x = 28 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/cockpit) +/area/shuttle/intrepid/crew_compartment) "qAY" = ( /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, @@ -22637,6 +23542,27 @@ }, /turf/simulated/floor/tiled, /area/operations/storage) +"qFc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/sink{ + pixel_x = -7; + pixel_y = 23; + layer = 3 + }, +/obj/structure/mirror{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/intrepid/crew_compartment) "qFp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22656,7 +23582,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "qGG" = ( /obj/machinery/door/blast/regular/open{ @@ -22697,6 +23623,25 @@ }, /turf/simulated/floor/grass/alt, /area/horizon/hydroponics/lower) +"qIS" = ( +/obj/item/stack/material/phoron{ + amount = 30 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/circuitboard/rtg, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/obj/structure/closet/crate{ + name = "power generation supplies" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "qIT" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/corner/purple/full, @@ -22855,7 +23800,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/security/checkpoint) "qPV" = ( /obj/effect/floor_decal/industrial/warning{ @@ -22970,21 +23915,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/checkpoint) -"qTC" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/obj/machinery/button/remote/airlock{ - id = "intrepid_cockpit"; - name = "Cockpit Bolts"; - pixel_x = -38; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/structure/bed/stool/chair/office/bridge, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/cockpit) "qUu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/miner, @@ -23054,16 +23984,39 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/rnd/test_range) -"qWV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +"qWK" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/atmos_compartment) "qWW" = ( /obj/effect/floor_decal/corner/brown{ dir = 6 @@ -23190,13 +24143,13 @@ /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) "rbx" = ( -/obj/effect/floor_decal/corner/green{ +/obj/effect/floor_decal/corner/black{ dir = 10 }, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "rbK" = ( /obj/structure/tank_wall/nitrous_oxide{ @@ -23325,6 +24278,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial) +"rfT" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/light/small/red{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "riF" = ( /obj/structure/grille/broken, /obj/item/material/shard{ @@ -23334,21 +24295,6 @@ /obj/structure/window_frame/empty, /turf/simulated/floor/tiled/dark/full, /area/maintenance/wing/starboard/deck1) -"riI" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/closet/walllocker/emerglocker/east, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "riL" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/air) @@ -23369,6 +24315,12 @@ /obj/structure/lattice/catwalk/indoor/grate/damaged, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) +"rkl" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "14,8" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/crew_compartment) "rkQ" = ( /obj/effect/floor_decal/corner/green{ dir = 5 @@ -23436,14 +24388,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/airless, /area/engineering/atmos) -"rmT" = ( -/obj/structure/window/shuttle/scc, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/port{ - name = "port, medbay" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) "rmY" = ( /obj/structure/trash_pile, /obj/effect/floor_decal/corner/purple/full{ @@ -23478,6 +24422,13 @@ /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) +"rnM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/intrepid/crew_compartment) "ros" = ( /obj/structure/table/standard, /obj/random/tech_supply, @@ -23548,6 +24499,11 @@ /obj/structure/janitorialcart, /turf/simulated/floor/tiled, /area/horizon/custodial) +"rqa" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "14,24" + }, +/area/shuttle/intrepid/engine_compartment) "rqf" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/alarm{ @@ -23628,6 +24584,13 @@ }, /turf/simulated/floor/tiled, /area/hangar/auxiliary) +"rrS" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "6,5"; + outside_part = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "rrX" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -23668,10 +24631,6 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark, /area/turret_protected/ai_upload) -"rsz" = ( -/obj/effect/overmap/visitable/ship/landable/intrepid, -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/cargo_bay) "rsL" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/research_port) @@ -23681,22 +24640,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) -"rsY" = ( -/obj/item/pipewrench, -/obj/item/wrench{ - pixel_y = -8 - }, -/obj/machinery/firealarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -31 - }, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/effect/floor_decal/corner/blue/full, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/atmos_compartment) "rtb" = ( /obj/structure/table/stone/marble, /obj/machinery/light/small{ @@ -23711,6 +24654,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) +"rtF" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "2,9" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/quarters) "rtJ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -23739,6 +24688,14 @@ /obj/machinery/door/window/eastleft, /turf/simulated/floor/reinforced, /area/rnd/test_range) +"rvR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "rwh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -23906,6 +24863,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) +"rCK" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "2,19" + }, +/area/shuttle/intrepid/atmos_compartment) "rDi" = ( /obj/effect/shuttle_landmark/horizon/deckone/aft, /turf/template_noop, @@ -23965,16 +24927,6 @@ }, /turf/simulated/floor/tiled, /area/medical/morgue/lower) -"rHi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/crew_compartment) "rHr" = ( /obj/machinery/conveyor{ dir = 4; @@ -24034,10 +24986,16 @@ /turf/simulated/floor/tiled, /area/hangar/operations) "rKh" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "intrepid_shuttle_cargo_out" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "rKM" = ( /obj/structure/sign/fire{ desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."; @@ -24052,6 +25010,17 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/airless, /area/hangar/operations) +"rLd" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "11,3"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "4,1"; + density = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "rLm" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning{ @@ -24263,19 +25232,16 @@ /turf/simulated/floor/tiled/dark/full, /area/outpost/mining_main/refinery) "rRE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "intrepid_inner"; + name = "Intrepid Shutter" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "rSe" = ( /obj/machinery/alarm/cold{ pixel_y = 28 @@ -24331,9 +25297,28 @@ }, /turf/simulated/floor/tiled, /area/rnd/eva) +"rTW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) "rUd" = ( /turf/simulated/wall/r_wall, /area/turret_protected/ai) +"rUH" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,8" + }, +/area/shuttle/intrepid/crew_compartment) "rUU" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Morgue Port"; @@ -24549,20 +25534,6 @@ }, /turf/simulated/floor/bluegrid, /area/rnd/isolation_a) -"sex" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/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/shuttle/intrepid/crew_compartment) "seU" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -24653,6 +25624,11 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/rnd/xenoarch_atrium) +"sib" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,22" + }, +/area/shuttle/intrepid/engine_compartment) "siF" = ( /obj/structure/tank_wall/hydrogen{ density = 0; @@ -24797,11 +25773,13 @@ /turf/simulated/floor/tiled, /area/horizon/hydroponics/lower) "spQ" = ( -/obj/structure/bed/stool/chair/shuttle{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/bluespace_beacon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) @@ -25008,6 +25986,13 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/engineering) +"svJ" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "1,22"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "svZ" = ( /obj/effect/floor_decal/corner/mauve{ dir = 9 @@ -25091,6 +26076,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew_quarters/cryo/living_quarters_lift) +"syk" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "sys" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -25182,6 +26175,22 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) +"sDd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 7; + pixel_x = 28 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "sDJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25572,25 +26581,20 @@ /turf/simulated/floor/plating, /area/engineering/atmos/propulsion) "sRX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate{ - name = "power generation supplies" +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "intrepid_outer"; + name = "Intrepid Shutter" }, -/obj/item/circuitboard/rtg, -/obj/item/stack/cable_coil{ - amount = 5 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/stock_parts/capacitor, -/obj/item/stack/material/uranium{ - amount = 10 - }, -/obj/item/stack/material/phoron{ - amount = 30 - }, -/obj/machinery/light/small{ +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) "sSm" = ( /obj/structure/bed/stool/chair/shuttle{ @@ -25721,6 +26725,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/canary) +"sWq" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "13,5" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "sWr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -25800,6 +26810,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) +"tbm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "tbP" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -25837,18 +26857,6 @@ }, /turf/simulated/floor/tiled/dark, /area/storage/eva) -"tdy" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "tdL" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -25886,25 +26894,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/storage/tech) -"teq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastleft, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4; - layer = 3.5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "tes" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25952,6 +26941,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew_quarters/cryo/living_quarters_lift) +"tfA" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "10,7" + }, +/area/shuttle/intrepid/cockpit) "tfB" = ( /obj/machinery/alarm{ dir = 4; @@ -25960,17 +26954,31 @@ /turf/simulated/floor/exoplanet/water/shallow, /area/horizon/stairwell/bridge) "tfR" = ( -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Side Doors"; +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/closet/cabinet, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/intrepid{ + dir = 1; + pixel_y = 24; + pixel_x = 4 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/coatrack{ + pixel_x = -14 }, -/obj/effect/floor_decal/corner/pink/diagonal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/item/tank/emergency_oxygen{ + pixel_x = 5 + }, +/obj/item/tank/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/quarters) "tgR" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) @@ -26011,6 +27019,18 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid) +"thu" = ( +/obj/machinery/meter{ + name = "Air Reserve" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "thF" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/camera/network/command{ @@ -26052,21 +27072,6 @@ }, /turf/simulated/floor/tiled, /area/hangar/operations) -"tiJ" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me2" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" - }, -/area/shuttle/intrepid/engine_compartment) "tiM" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -26202,6 +27207,12 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/mining_main/eva) +"tmH" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "2,11" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/quarters) "tnb" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector, @@ -26333,6 +27344,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/hydroponics/lower) +"tsR" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "10,1" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "ttc" = ( /obj/structure/bed/stool/chair/office/dark, /obj/effect/floor_decal/corner/blue/diagonal, @@ -26357,6 +27374,11 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/crew_quarters/cryo/living_quarters_lift) +"tuA" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "16,20" + }, +/area/shuttle/intrepid/cargo_bay) "tuL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled/dark/full/airless, @@ -26379,6 +27401,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial) +"tvK" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Engine Compartment"; + dir = 1 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "twq" = ( /obj/structure/tank_wall/hydrogen{ icon_state = "h2" @@ -26413,6 +27444,21 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) +"twR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "intrepid_inner"; + name = "Intrepid Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "twX" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -26538,27 +27584,15 @@ }, /turf/simulated/floor/airless, /area/engineering/atmos) -"tBX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"tDa" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/atmos_compartment) "tEc" = ( /obj/machinery/door/blast/shutters{ dir = 2; @@ -26593,6 +27627,16 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/engineering) +"tEV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "tFd" = ( /obj/structure/lattice/catwalk/indoor/grate/damaged, /turf/simulated/floor/plating, @@ -26794,6 +27838,14 @@ /obj/effect/floor_decal/spline/fancy/wood/full, /turf/simulated/floor/wood, /area/hangar/auxiliary) +"tKf" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "tKi" = ( /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, @@ -26809,6 +27861,11 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/horizon/custodial) +"tLo" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "15,13" + }, +/area/shuttle/intrepid/crew_compartment) "tLq" = ( /obj/effect/floor_decal/corner_wide/purple/full{ dir = 4 @@ -26888,24 +27945,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/storage/tech) -"tNo" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/shuttle/intrepid/cargo_bay) "tNp" = ( /turf/unsimulated/wall/fakepdoor{ dir = 4 @@ -27053,13 +28092,6 @@ /obj/structure/cable/green{ icon_state = "2-4" }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "tTl" = ( @@ -27105,6 +28137,24 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) +"tVf" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "6,20" + }, +/area/shuttle/intrepid/atmos_compartment) +"tVv" = ( +/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/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/crew_compartment) "tVI" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/outline/yellow, @@ -27118,14 +28168,6 @@ }, /turf/simulated/floor/tiled/dark/full/airless, /area/shuttle/mining) -"tWc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) "tWm" = ( /obj/structure/window/shuttle/unique/scc/scout{ icon_state = "5,5" @@ -27211,14 +28253,6 @@ }, /turf/simulated/floor/reinforced/phoron, /area/engineering/atmos) -"tYB" = ( -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) "tYN" = ( /obj/item/device/radio/intercom{ dir = 1; @@ -27245,25 +28279,18 @@ /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) "tZm" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/shuttle/intrepid/crew_compartment) -"tZF" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 +/obj/structure/window/shuttle/unique/scc/tall{ + icon_state = "long2-1" }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/firealarm/south{ - dir = 4; - pixel_x = 30; - pixel_y = 0 +/obj/effect/landmark/entry_point/port{ + name = "port, medbay" }, -/obj/structure/table/steel, /turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) +/area/shuttle/intrepid/crew_compartment) "tZK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -27285,6 +28312,12 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) +"uab" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "5,7" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "uaD" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "7,3" @@ -27367,6 +28400,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/hangar/port) +"udv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/intrepid/crew_compartment) "udC" = ( /obj/effect/floor_decal/corner/green/full{ dir = 8 @@ -27397,6 +28439,12 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"ueH" = ( +/obj/effect/floor_decal/corner/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "ufi" = ( /obj/structure/window/reinforced{ dir = 4 @@ -27501,6 +28549,24 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid) +"ujK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hangar/intrepid) "ujV" = ( /obj/effect/shuttle_landmark/supply/horizon/dock, /turf/simulated/floor/plating, @@ -27514,25 +28580,9 @@ }, /turf/simulated/floor/airless, /area/engineering/atmos) -"ukE" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "mwr4" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) "ukS" = ( /turf/simulated/wall, /area/hangar/operations) -"ula" = ( -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Cockpit"; - dir = 1 - }, -/obj/machinery/door/window/westleft, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) "ulc" = ( /obj/structure/window/reinforced{ dir = 1 @@ -27545,6 +28595,11 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_atrium) +"uli" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "13,17" + }, +/area/shuttle/intrepid/crew_compartment) "ulp" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "6,10"; @@ -27595,14 +28650,19 @@ /turf/simulated/floor/plating, /area/maintenance/engineering) "umg" = ( -/obj/effect/floor_decal/corner/blue/full, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) "umt" = ( /obj/machinery/light, @@ -27640,20 +28700,6 @@ }, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/air) -"unD" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/bluespace_beacon, -/obj/effect/shuttle_landmark/intrepid/hangar, -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "unS" = ( /obj/effect/landmark/entry_point/aft{ name = "aft engines, starboard 2" @@ -27971,7 +29017,11 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/tiled, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 2"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "uAi" = ( /obj/effect/floor_decal/industrial/warning{ @@ -27987,12 +29037,10 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/effect/floor_decal/corner/blue{ dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hangar/intrepid) "uAS" = ( @@ -28223,6 +29271,21 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion/starboard) +"uJi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/valve/digital/open{ + name = "airlock shutoff valve" + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/door/window/southright{ + req_access = list(73) + }, +/obj/machinery/light_switch{ + pixel_x = 21; + pixel_y = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "uJE" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/atmospherics/binary/pump{ @@ -28237,6 +29300,12 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) +"uKn" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "13,4" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "uKu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -28249,22 +29318,24 @@ /obj/structure/window/shuttle/scc, /turf/simulated/floor/plating, /area/shuttle/escape_pod/pod2) -"uKX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/engine{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me4"; - item_state = null - }, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/atmos_compartment) "uLM" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/operations/storage) +"uLN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 1; + name = "Fuel Tank to Thrusters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Atmos Compartment"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "uNg" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/industrial/outline/grey, @@ -28300,15 +29371,15 @@ /turf/simulated/floor/reinforced/nitrogen, /area/engineering/atmos/air) "uOO" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Hangar" - }, -/obj/machinery/door/firedoor/multi_tile, /obj/machinery/door/blast/regular/open{ dir = 8; id = "hangarlockdown"; name = "Hangar Lockdown" }, +/obj/machinery/door/airlock/glass{ + name = "Hangar" + }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "uPe" = ( @@ -28360,6 +29431,11 @@ /obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled, /area/hangar/auxiliary) +"uRe" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "6,23" + }, +/area/shuttle/intrepid/engine_compartment) "uRl" = ( /obj/item/modular_computer/console/preset/ai{ dir = 1 @@ -28394,10 +29470,30 @@ }, /area/shuttle/canary) "uSd" = ( -/obj/effect/floor_decal/corner/blue{ +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/intrepid{ + dir = 1; + pixel_y = 24; + pixel_x = 4 + }, +/obj/effect/floor_decal/corner/yellow{ dir = 6 }, -/turf/simulated/floor/tiled/dark, +/obj/effect/floor_decal/industrial/outline/engineering, +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/random/powercell, +/obj/random/powercell, +/turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) "uSG" = ( /obj/structure/sign/electricshock{ @@ -28411,8 +29507,16 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid/interstitial) -"uSZ" = ( -/turf/simulated/floor/tiled/dark, +"uSU" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "7,3"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "0,1"; + density = 0 + }, +/turf/simulated/floor/plating, /area/shuttle/intrepid/cockpit) "uTz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28429,28 +29533,11 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"uUr" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 31 +"uUx" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "6,16" }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) +/area/shuttle/intrepid/atmos_compartment) "uUP" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -28497,10 +29584,22 @@ /turf/space/dynamic, /area/horizon/exterior) "uVF" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/machinery/door/airlock/command{ + name = "Crew Quarters and Office" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/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/wood, +/area/shuttle/intrepid/quarters) "uVL" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/atmos/propulsion) @@ -28512,6 +29611,24 @@ /obj/item/storage/firstaid, /turf/simulated/floor/tiled/dark, /area/teleporter) +"uWc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/cargo_bay) "uWn" = ( /obj/machinery/door/blast/regular/open{ id = "iso_a"; @@ -28650,6 +29767,20 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos/propulsion/starboard) +"vab" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "vai" = ( /obj/machinery/power/apc/low{ dir = 1; @@ -28800,19 +29931,31 @@ /turf/simulated/floor/tiled, /area/rnd/xenoarch_atrium) "vfk" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/full{ +/obj/machinery/door/window/westleft, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 4 }, -/obj/machinery/power/portgen/basic, -/obj/item/stack/material/graphite/full, -/obj/structure/cable{ - icon_state = "0-4" +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) +/obj/structure/closet/crate/freezer/rations, +/obj/item/storage/box/kitchen, +/obj/item/storage/box/kitchen, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) +"vgi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "vgw" = ( /obj/effect/floor_decal/corner/black{ dir = 6 @@ -29122,31 +30265,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/operations) -"vqV" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/roller{ - pixel_x = -8 - }, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/crew_compartment) "vqW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -29175,18 +30293,36 @@ /turf/simulated/floor/tiled, /area/assembly/chargebay) "vrz" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 +/obj/structure/bed/padded, +/obj/structure/bed/padded/bunk, +/obj/item/bedsheet/yellow, +/obj/item/bedsheet/brown{ + pixel_y = 16 }, -/obj/machinery/light/small{ +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet/lightblue, +/area/shuttle/intrepid/quarters) +"vrO" = ( +/obj/effect/overmap/visitable/ship/landable/intrepid, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/fuel_port/phoron/scc{ + pixel_y = 23; + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/crew_compartment) "vrQ" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 4 @@ -29289,6 +30425,11 @@ icon_state = "2,6" }, /area/shuttle/canary) +"vvK" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,25" + }, +/area/shuttle/intrepid/engine_compartment) "vxw" = ( /obj/structure/railing/mapped, /obj/structure/railing/mapped{ @@ -29322,6 +30463,12 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos/propulsion/starboard) +"vyI" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "5,3" + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "vyK" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 5 @@ -29334,6 +30481,24 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) +"vBb" = ( +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "3,3"; + density = 0 + }, +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/obj/machinery/computer/ship/engines/cockpit{ + pixel_x = 24; + layer = 3; + pixel_y = 7 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "vBr" = ( /obj/structure/tank_wall/hydrogen{ density = 0; @@ -29524,23 +30689,6 @@ }, /turf/simulated/floor/tiled/dark/full/airless, /area/shuttle/mining) -"vIF" = ( -/obj/structure/shuttle_part{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" - }, -/area/shuttle/intrepid/atmos_compartment) "vIS" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, d1 maintenance foreside" @@ -29601,6 +30749,17 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) +"vKl" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "11,6"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "4,4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "vKy" = ( /obj/structure/cable{ icon_state = "1-2" @@ -29633,14 +30792,16 @@ /turf/simulated/floor/tiled, /area/horizon/hydroponics/lower) "vMd" = ( -/obj/structure/bed/stool/chair/shuttle{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/light/small, +/obj/effect/floor_decal/corner/lime/diagonal, /obj/effect/floor_decal/spline/plain{ - dir = 4 + dir = 8 }, -/turf/simulated/floor/carpet/rubber, +/obj/machinery/iv_drip, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, /area/shuttle/intrepid/crew_compartment) "vMB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -29884,6 +31045,19 @@ }, /turf/simulated/floor/airless, /area/engineering/atmos) +"vWs" = ( +/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle{ + dir = 8; + name = "Pressure Tank (Air - Main Airlock)" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/intrepid/atmos_compartment) "vWL" = ( /obj/structure/tank_wall/hydrogen{ icon_state = "h9" @@ -29903,11 +31077,6 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) -"vYi" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/crew_compartment) "vYV" = ( /obj/structure/tank_wall/air{ density = 0; @@ -30155,17 +31324,6 @@ icon_state = "5,10" }, /area/shuttle/canary) -"whQ" = ( -/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/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) "wic" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate/damaged, @@ -30191,7 +31349,7 @@ name = "Security Checkpoint Shutter" }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/security/checkpoint) "wjp" = ( /obj/effect/floor_decal/corner/blue{ @@ -30221,53 +31379,38 @@ /turf/simulated/floor/tiled/dark, /area/engineering/storage/tech) "wjM" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Emergency Weaponry"; - req_access = list(73) - }, -/obj/item/gun/energy/laser/shotgun/research, -/obj/item/gun/energy/laser/shotgun/research, -/obj/machinery/recharger/wallcharger{ - layer = 3.3; - pixel_x = 36; - pixel_y = -12 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/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, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/cockpit) -"wjU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "intrepid_inner"; - name = "inner cargo hold blast doors"; - pixel_x = -24; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/shuttle_part/scc/research{ + icon_state = "14,11"; + density = 0; + outside_part = 0; + layer = 2.6 }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 8 }, -/turf/simulated/floor/tiled/dark, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 + }, +/turf/simulated/floor/lino/grey, /area/shuttle/intrepid/crew_compartment) +"wjU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/shuttle/intrepid/quarters) "wjW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -30427,43 +31570,41 @@ /turf/simulated/floor/airless, /area/engineering/atmos) "wnQ" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Hangar"; - req_one_access = list(12,26) - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) -"wnV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, /obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/access_button{ - command = "cycle_interior"; +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Cargo Airlock"; + child_tags_txt = "intrepid_shuttle_cargo"; frequency = 1385; - master_tag = "intrepid_shuttle_cargo"; - name = "interior access button"; - pixel_x = -24; - pixel_y = 24 + id_tag = "intrepid_shuttle"; + pixel_y = 23; + pixel_x = -9 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/power/apc/intrepid{ + dir = 1; + pixel_y = 24; + pixel_x = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Cockpit" }, -/turf/simulated/floor/tiled, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) +"wnV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "intrepid_shuttle_cargo_in" + }, +/turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) "wos" = ( /obj/structure/cable/green{ @@ -30667,18 +31808,14 @@ /turf/simulated/floor/tiled/dark/full, /area/rnd/xenoarch_atrium) "wvY" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -28 +/obj/machinery/light/spot/weak{ + dir = 4 }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) +/turf/simulated/floor/plating, +/area/hangar/intrepid) "wwN" = ( /obj/machinery/radiocarbon_spectrometer, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -30744,6 +31881,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /turf/simulated/floor/tiled/full, /area/maintenance/engineering) +"wzA" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "7,24" + }, +/area/shuttle/intrepid/engine_compartment) "wAk" = ( /obj/machinery/door/window/westright{ name = "Xenoarchaeology Platform Access"; @@ -30759,6 +31901,15 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"wBD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/lino/grey, +/area/shuttle/intrepid/crew_compartment) "wCf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30782,6 +31933,28 @@ /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/hangar/intrepid) +"wCW" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "3,24"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) +"wDu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Utility and Atmosphere Control"; + req_access = list(73) + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/engine_compartment) "wEQ" = ( /obj/machinery/light/small{ dir = 1 @@ -30796,6 +31969,18 @@ "wEY" = ( /turf/space/dynamic, /area/horizon/exterior) +"wFb" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "11,4"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "4,2"; + density = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "wFw" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -30814,19 +31999,6 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/engineering) -"wGa" = ( -/obj/machinery/iff_beacon/horizon, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) -"wGn" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/effect/floor_decal/spline/plain/cee, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/intrepid/crew_compartment) "wHJ" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, d1 airlock" @@ -30889,6 +32061,11 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) +"wIU" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "4,9" + }, +/area/shuttle/intrepid/quarters) "wJg" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden, @@ -31016,6 +32193,11 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/substation/security) +"wOI" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "16,18" + }, +/area/shuttle/intrepid/cargo_bay) "wOP" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 1 @@ -31025,6 +32207,13 @@ temperature = 278.15 }, /area/medical/morgue/lower) +"wOT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/shuttle/intrepid/crew_compartment) "wOZ" = ( /obj/machinery/atmospherics/omni/mixer{ active_power_usage = 7500; @@ -31060,15 +32249,9 @@ /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) "wPD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "wPX" = ( @@ -31083,6 +32266,12 @@ }, /turf/simulated/floor/carpet/rubber, /area/shuttle/canary) +"wQn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/atmos_compartment) "wQr" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/structure/cable/green{ @@ -31316,6 +32505,21 @@ temperature = 278.15 }, /area/medical/morgue/lower) +"wYT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/intrepid/crew_compartment) "wYU" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -31355,11 +32559,11 @@ /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) "wZl" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 +/obj/structure/shuttle_part/scc/research{ + icon_state = "2,10" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/atmos_compartment) +/turf/simulated/floor/plating, +/area/shuttle/intrepid/quarters) "xaf" = ( /obj/effect/shuttle_landmark/horizon/deckone/port_propulsion, /turf/template_noop, @@ -31593,6 +32797,21 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/air) +"xhT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/bed/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "xij" = ( /obj/machinery/light{ dir = 4 @@ -31662,8 +32881,24 @@ /turf/simulated/floor/tiled/dark, /area/hangar/canary) "xjL" = ( -/turf/simulated/wall/shuttle/scc/cardinal, -/area/shuttle/intrepid/atmos_compartment) +/obj/machinery/airlock_sensor{ + frequency = 1385; + id_tag = "intrepid_shuttle_cargo_sensor"; + pixel_x = -24; + pixel_y = -6; + dir = 4 + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + id_tag = "intrepid_shuttle_cargo_pump"; + frequency = 1385; + layer = 2.8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cargo_bay) "xjQ" = ( /obj/machinery/power/apc/super/critical{ dir = 8; @@ -31800,17 +33035,8 @@ /turf/simulated/floor/plating, /area/maintenance/wing/port/deck1) "xlX" = ( -/obj/machinery/light/small/red, -/obj/structure/bed/handrail{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - id_tag = "intrepid_shuttle_west_pump_out_internal"; - frequency = 1385; - layer = 2.8 - }, +/obj/structure/window/shuttle/unique/scc/tall, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/shuttle/intrepid/crew_compartment) "xmb" = ( @@ -31903,6 +33129,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) +"xnF" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "10,3"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "3,1" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/shuttle/intrepid/cockpit) "xnS" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -31981,33 +33222,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) -"xpT" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) "xpX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/bed/handrail, @@ -32026,19 +33240,27 @@ /turf/simulated/floor/tiled, /area/horizon/custodial) "xqo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/airlock/external{ +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + id_tag = "intrepid_shuttle_cargo_pump"; frequency = 1385; - icon_state = "door_locked"; - id_tag = "intrepid_shuttle_cargo_in" + layer = 2.8 }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/dark, +/obj/structure/lattice/catwalk/indoor, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 18 + }, +/turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) +"xqv" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "11,26"; + opacity = 1; + outside_part = 0; + layer = 2.91 + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "xqE" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -32061,13 +33283,20 @@ /turf/simulated/floor/tiled/dark/cooled, /area/turret_protected/ai) "xrp" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, +/obj/machinery/button/remote/blast_door{ + id = "intrepid_inner"; + name = "inner cargo hold blast doors"; + pixel_x = -24; + pixel_y = 26 + }, +/turf/simulated/floor/carpet/rubber, /area/shuttle/intrepid/crew_compartment) "xst" = ( /obj/structure/window/shuttle/scc_space_ship, @@ -32134,6 +33363,23 @@ "xtK" = ( /turf/simulated/wall/r_wall, /area/rnd/xenoarch_atrium) +"xtM" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "14,26"; + opacity = 1; + outside_part = 0 + }, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "nozzle"; + outside_part = 0; + opacity = 1; + icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; + layer = 2.4; + name = "pathfinder class shuttle hull"; + desc = "The hull and reinforcement of a Pathfinder class corporate expedition shuttle. The phoron-purple colored bands indicate this, in bold text as the SCCV Intrepid." + }, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/engine_compartment) "xtY" = ( /obj/machinery/button/remote/blast_door{ id = "portpropulsionexterior"; @@ -32170,17 +33416,11 @@ /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/substation/engineering/lower) "xvk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/shuttle_part/scc/research{ + icon_state = "4,8" }, -/obj/machinery/door/airlock/external{ - frequency = 1385; - icon_state = "door_locked"; - id_tag = "intrepid_shuttle_cargo_out" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/shuttle/intrepid/cargo_bay) +/area/shuttle/intrepid/quarters) "xvG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -32311,6 +33551,15 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/mining_main/eva) +"xAU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/spot/weak{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hangar/intrepid) "xBf" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -32459,6 +33708,14 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/engineering) +"xHn" = ( +/obj/machinery/door/airlock{ + id_tag = "intrepid_washroom"; + name = "Washroom Compartment" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/intrepid/crew_compartment) "xHs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32686,12 +33943,14 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm/east, /obj/effect/floor_decal/corner/green{ dir = 6 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/hangar/intrepid) "xOb" = ( @@ -32710,14 +33969,20 @@ /turf/simulated/floor/tiled, /area/hangar/intrepid) "xOs" = ( -/obj/effect/floor_decal/corner/blue{ +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engine_compartment) +/area/hangar/intrepid) "xOV" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -32753,19 +34018,11 @@ /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) "xPX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/shuttle_part/scc/research{ + icon_state = "2,12" }, -/obj/machinery/door/airlock/glass_command{ - id_tag = "intrepid_cockpit"; - name = "Intrepid Cockpit"; - req_access = list(73) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/crew_compartment) +/turf/simulated/floor/plating, +/area/shuttle/intrepid/quarters) "xQU" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -32786,6 +34043,34 @@ "xRv" = ( /turf/simulated/floor/tiled/ramp, /area/hangar/auxiliary) +"xRF" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "intrepid_washroom"; + name = "Door Bolt Control"; + pixel_x = 40; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/curtain/open/shower, +/obj/structure/closet/walllocker{ + pixel_x = -27 + }, +/obj/random/soap, +/obj/random/soap, +/obj/item/towel, +/obj/item/towel, +/obj/item/towel, +/obj/item/storage/box/toothpaste, +/obj/item/storage/box/toothpaste, +/obj/item/reagent_containers/toothbrush, +/obj/item/reagent_containers/toothbrush, +/obj/item/reagent_containers/toothbrush/green, +/obj/item/reagent_containers/toothbrush/red, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/intrepid/crew_compartment) "xRN" = ( /obj/machinery/door/blast/regular{ id = "iso_b_purge"; @@ -32903,17 +34188,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/canary) -"xVM" = ( -/obj/machinery/atmospherics/unary/engine{ - icon = 'icons/turf/shuttles_unique/scc/scc_shuttle_pieces.dmi'; - icon_state = "me4"; - item_state = null - }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, port engines" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engine_compartment) "xVU" = ( /obj/structure/railing/mapped{ dir = 4 @@ -32921,6 +34195,9 @@ /obj/effect/floor_decal/corner/black{ dir = 6 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/hangar/intrepid) "xWe" = ( @@ -32951,6 +34228,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering/lower) +"xWD" = ( +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,7" + }, +/area/shuttle/intrepid/cockpit) "xWJ" = ( /obj/machinery/computer/drone_control{ dir = 4 @@ -33071,6 +34353,8 @@ /obj/effect/floor_decal/corner/green{ dir = 9 }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hangar/intrepid) "ydm" = ( @@ -33170,16 +34454,6 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"yfK" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/structure/bed/stool/chair/office/bridge, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/cockpit) "ygx" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -33206,10 +34480,31 @@ /turf/simulated/floor/tiled/dark, /area/operations/loading) "yib" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 6 +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1385; + id_tag = "intrepid_shuttle_cargo"; + layer = 3.3; + master_tag = "intrepid_shuttle"; + pixel_x = 24; + tag_airpump = "intrepid_shuttle_cargo_pump"; + tag_chamber_sensor = "intrepid_shuttle_cargo_sensor"; + tag_exterior_door = "intrepid_shuttle_cargo_out"; + tag_exterior_sensor = "intrepid_shuttle_cargo_exterior_sensor"; + tag_interior_door = "intrepid_shuttle_cargo_in"; + dir = 8; + cycle_to_external_air = 1; + tag_interior_sensor = "intrepid_shuttle_cargo_interior_sensor" }, +/obj/machinery/light/small/red{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1385; + id_tag = "intrepid_shuttle_cargo_pump_out_internal"; + layer = 2.8 + }, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/shuttle/intrepid/cargo_bay) "yiT" = ( @@ -33219,23 +34514,22 @@ }, /turf/simulated/wall, /area/outpost/mining_main/refinery) +"ykn" = ( +/obj/structure/shuttle_part/scc/research{ + icon_state = "7,4"; + outside_part = 0 + }, +/obj/structure/window/shuttle/unique/scc/research/over{ + icon_state = "0,2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/intrepid/cockpit) "ykR" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) -"ylr" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/atmos_compartment) (1,1,1) = {" eSV @@ -51615,7 +52909,7 @@ thd oPL mey mKo -tYB +iZk her xVU xVU @@ -51640,16 +52934,16 @@ xVU xVU eIC ioq +mZD bli -cGa +bli +bli +bli +bli +bli +bli +gwA nDI -liP -eSV -eSV -eSV -eSV -eSV -eSV eSV eSV eSV @@ -51819,40 +53113,40 @@ oPL usP lCX wuD -ifJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -gYd -kzH -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -kEJ -cLV -bSM -cLV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +pvn +iRC +iRC +iRC +iRC +iRC +iRC +svJ +iLX +gmo +gJM +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +nDI +aRG +nDI eSV eSV eSV @@ -52022,23 +53316,30 @@ oPL eEm ifD wuD -aUk +pvn iRC iRC iRC iRC iRC iRC -iRC -iRC -iRC -aqO -aEw -aEw -aEw +nOb +bKA +ipK +rCK +bEN +pru +ncq ifw ewy nyz +xPX +tmH +wZl +rtF +iRC +iRC +iRC iRC iRC iRC @@ -52108,13 +53409,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (94,1,1) = {" eSV @@ -52225,24 +53519,31 @@ oPL gpw fUS aHY -aUk +pvn iRC iRC -xjL -xjL -xjL -aEw -aEw -aEw -aEw -dwt -aEw -teq -aEw +eHK +ksN +wCW +nME +bVo +fIy +jAw +moH +aiN +qWK +ppS eyW xlX jUm bhi +eVn +lyH +koV +iRC +iRC +iRC +iRC iRC iRC iRC @@ -52311,13 +53612,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (95,1,1) = {" eSV @@ -52428,24 +53722,31 @@ oPL mey mKo aHY -aUk +pvn iRC iRC -bJr -eYN -rsY -aEw -pZv -joi -aEw -lRu -rKh -nZx -aEw -hfm +pIR +rfT +luZ +ilY +lWy +hxL +tKf +thu +cEf +vgi +vab +fye jyn aLc mSf +dSD +kSs +wIU +xvk +dLs +iRC +iRC iRC iRC iRC @@ -52514,13 +53815,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (96,1,1) = {" eSV @@ -52631,28 +53925,35 @@ oPL mey mKo aHY -aUk +pvn iRC iRC -xjL -gGb -wZl -aEw -dZT -iau -aEw -cAU -nGN -lFU -aEw -cpn +iSn +jbR +sDd +gmT +gar +kOR +uLN +kcW +pLV +wQn +uJi +pdv cpn aEw aIP ock -ock -con +wjU +evr con +uab +iRC +jew +jpl +vyI +iRC +iRC iRC iRC cLV @@ -52717,13 +54018,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (97,1,1) = {" eSV @@ -52835,27 +54129,34 @@ mey mKo aHY dJm -jgf -dFQ -jEt -ylr -pXu -fAh -qxk -pAv -hQr -riI -ovh -kDY -edO -tdy +iRC +iRC +iMt +jkq +bWz +uRe +lyN +xhT +tVf +coc +tDa +vWs +uUx +jcd umg lkH tfR qtp ncP dKn -con +cJx +fjA +oeq +rrS +pbX +cmX +iRC +iRC iRC iRC cLV @@ -52920,13 +54221,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (98,1,1) = {" eSV @@ -53038,19 +54332,19 @@ nAn uzZ wuD wuD -aUk -uKX -vIF -xjL -xjL -xjL -dSD -dSD -dSD -dSD -dSD -ccr -xrp +uRt +uRt +iAP +vvK +wzA +cZe +sib +wDu +mvO +lqO +oMU +kVX +nJB uSd oxX aEw @@ -53058,7 +54352,14 @@ eWJ cIp cND uVF -con +hZs +epb +kHF +fgJ +ykn +uSU +hqo +iRC iRC iRC cLV @@ -53123,13 +54424,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (99,1,1) = {" eSV @@ -53241,28 +54535,35 @@ mey pjy hUk hId -oFN -aRG -xjL +pvn +pvn +fZQ jXW kki xjL mwR -dVS -elI -psd -dQP -wjU -xrp -hhv +cqU +eqw +eSa +mbZ +fGD +dlv +udv hBV aEw vrz qmi duz -ock -con -con +jEW +lRu +bPT +flh +ois +dJY +phg +oKJ +ebk +lbc iRC cLV bSM @@ -53326,13 +54627,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (100,1,1) = {" eSV @@ -53444,15 +54738,15 @@ mey hYy apf uOO -dhi pvn -xvk +pvn +nvn gDj dir pTp wnV nQH -nQH +aKh brI hqg rRE @@ -53462,10 +54756,17 @@ dnR nyl liI kqZ -kqZ -qTC -laL -obJ +jBq +vrO +fbB +mFo +ocp +cVZ +hcq +pTd +kyK +oSi +kaM iRC cLV bSM @@ -53529,13 +54830,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (101,1,1) = {" eSV @@ -53645,30 +54939,37 @@ cSQ xOV kEt hYy -apf -iZk -dhi -ayq -xvk -gDj +hhv +uOO +pvn +pvn +kxk +rKh yib xqo nxj -kWb -kWb -njr -rsz -exg -unD -rHi +dJe +onT +jIj +nGF +twR +neC +wYT blW -vYi +hkM kDt -myR -eLa -qAI -fEM -con +tVv +dVb +epr +bIt +tfA +wnQ +vBb +gSU +xnF +iQL +tsR +bFM iRC cLV bSM @@ -53732,13 +55033,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (102,1,1) = {" eSV @@ -53848,30 +55142,37 @@ jcZ bzv txa qFy -bfL -hId -ifJ -clM -clM -hdY -gpR -clM -gTl -csz -qjt -tNo -ohO -tBX -xrp -mJn +wuD +wuD +kEJ +kEJ +xqv +inM +iaD +nBh +hdl +iDh +piD +gdy +tbm +eWB +pcQ +hzv vMd -aEw +uli kEg -cjK -ula -ock -con -con +wBD +ouI +brR +rUH +xWD +vKl +fry +wFb +rLd +owM +iRC +iRC iRC cLV bSM @@ -53935,13 +55236,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (103,1,1) = {" eSV @@ -54051,29 +55345,36 @@ iJM hdi crb qkk -hdi -wuD +rPN +adv aUk -gpy -mBJ -clM -clM -clM -dSD -dSD -dSD -dSD -dSD -xpT -sex -ksy +iRC +fNt +tvK +inf +dyG +otE +tEV +jHp +uWc +gBq +pMz +lgN +cfJ mlL -xPX +kVM aFx -uSZ -uSZ -gwA -con +cPw +xHn +xRF +ihP +kTh +poM +iKx +nQT +oXW +iRC +iRC iRC iRC cLV @@ -54138,13 +55439,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (104,1,1) = {" eSV @@ -54255,28 +55549,35 @@ aEl jgk qPF rPN -aEn -blb -xVM -tiJ -wvY -xOs -hZr -gAi -nUc -gfb -qeY -qWV -jwo +pvn +iRC +iRC +hAl +jbR +fYr +drK +gZL +nar +jcD +eNa +kES +nmW +kCU +idU nwF -uSd -nwF -aEw +qAj dnX -cfY -yfK -oYc -con +cPw +kVM +qFc +fIw +oea +iRC +sWq +uKn +eZW +iRC +iRC iRC iRC cLV @@ -54341,13 +55642,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (105,1,1) = {" eSV @@ -54458,29 +55752,36 @@ wSd kLb qeD rPN -aUk +pvn iRC iRC -clM -pmR -ghP -fTb -tWc -lXC -clM -pCD -jQQ -iwX -kxl -wGn +xtM +hqn +rqa +gMb +mCJ +euz +rvR +ppH +qIS +gkN +rTW +wOT lvI -aEw +maM jWI wjM -uUr -tZF -kAX -iLE +keA +pfa +rkl +mIX +iRC +iRC +iRC +iRC +iRC +iRC +iRC iRC cLV bSM @@ -54544,13 +55845,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (106,1,1) = {" eSV @@ -54661,29 +55955,36 @@ aEl kLb qeD rPN -aUk +pvn iRC iRC -kMG -ggY -eVn -dzg -fQU +dhJ +pGP +gBD +qwt +aHB vfk -clM -eeD -hXw -aMg -eJu +aCM +mLu +aWz +jtK +brR eaS tZm -aEw -ock -ock -ock -ock -con -wGa +tLo +euL +qmJ +dLe +rnM +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC +iRC iRC cLV bSM @@ -54747,13 +56048,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (107,1,1) = {" eSV @@ -54864,26 +56158,33 @@ aEl mMQ gTx rPN -aUk +pvn iRC iRC -clM -clM -clM -clM -clM -pkw -clM -aEw -aEw -fAj -vqV -eaS +iRC +iRC +iRC +iRC +pBV +lWV +tuA +ker +wOI +qnb +imc +lIM sRX -aEw -adv -mZD -mXg +hhb +knw +bjm +pCx +jpo +iRC +iRC +iRC +iRC +iRC +iRC iRC iRC iRC @@ -54950,13 +56251,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (108,1,1) = {" eSV @@ -55067,24 +56361,31 @@ hdi aKo wif hdi -oFN -uRt -uRt -uRt -uRt -uRt -uRt -jgf +pvn +iRC +iRC +iRC +iRC +iRC +iRC +dRx +kmo +nrz +qui +iRC +iRC +iRC +iRC eKr iRC iRC -aEw -rmT -aEw -aEw -aEw -aEw -ukE +iRC +iRC +iRC +cbu +uRt +uRt +jgf iRC iRC iRC @@ -55153,13 +56454,6 @@ eSV eSV eSV eSV -eSV -eSV -eSV -eSV -eSV -eSV -eSV "} (109,1,1) = {" eSV @@ -55272,38 +56566,38 @@ rbx wuD wuD ctI -ctI -ctI -ctI -ctI -wuD +kga +edO +dFQ +gTl +gTl oFN cnb +cnb +cnb +cnb +cnb +ujK +ohm +xOs +dhi +dhi +dhi +dhi +dhi +nVZ +hQr +syk +wvY uRt uRt uRt +xAU uRt uRt -uRt -uRt -uRt -uRt -uRt -uRt -uRt -uRt -uRt -uRt -cLV -bSM -cLV -eSV -eSV -eSV -eSV -eSV -eSV -eSV +nDI +eVk +nDI eSV eSV eSV @@ -55474,39 +56768,39 @@ mXD lWu kSq gOa -jqE +ueH jqE kru -awo -cLv -wnQ -ihC -nUQ -esD -esD -esD -esD +hYy +hYy +hYy +hYy +hYy +hYy +hYy +hYy +hYy wPD -aIC -esD -esD -esD -esD -esD -esD -esD +jqE +hYy +hYy +hYy +hYy +hYy +hYy +hYy tTg iYT bli -cGa +bli +bli +bli +bli +bli +bli +bli +kMG nDI -xGF -eSV -eSV -eSV -eSV -eSV -eSV eSV eSV eSV @@ -55683,7 +56977,7 @@ lQQ qCA fQJ lKY -whQ +kEW kEW kEW xOb