diff --git a/code/game/mecha/combat/fighter.dm b/code/game/mecha/combat/fighter.dm
index 9d0fd7cfbf..bf176f6a69 100644
--- a/code/game/mecha/combat/fighter.dm
+++ b/code/game/mecha/combat/fighter.dm
@@ -13,6 +13,8 @@
icon_state = ""
initial_icon = ""
+ dir_in = null //Don't reset direction when empty
+
step_in = 2 //Fast
health = 400
diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm
index 295aa9239c..b8597d6d29 100644
--- a/code/game/objects/structures/lattice.dm
+++ b/code/game/objects/structures/lattice.dm
@@ -11,12 +11,12 @@
/obj/structure/lattice/Initialize()
. = ..()
- if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/open) || istype(src.loc, /turf/simulated/mineral)))
+ if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/open) || istype(src.loc, /turf/simulated/mineral) || istype(src.loc, /turf/simulated/shuttle/plating/airless/carry)))
return INITIALIZE_HINT_QDEL
for(var/obj/structure/lattice/LAT in src.loc)
if(LAT != src)
- crash_with("Found multiple lattices at '[log_info_line(loc)]'")
+ log_debug("Found multiple lattices at '[log_info_line(loc)]'") //VOREStation Edit, why was this a runtime, it's harmless
return INITIALIZE_HINT_QDEL
icon = 'icons/obj/smoothlattice.dmi'
icon_state = "latticeblank"
diff --git a/code/game/turfs/simulated/floor_types_vr.dm b/code/game/turfs/simulated/floor_types_vr.dm
index c4315b29b2..6af8ce80ec 100644
--- a/code/game/turfs/simulated/floor_types_vr.dm
+++ b/code/game/turfs/simulated/floor_types_vr.dm
@@ -41,4 +41,33 @@
set_light(3,3,"#26c5a9")
spawn(5 SECONDS)
icon_state = "floor"
- set_light(0,0,"#ffffff")
\ No newline at end of file
+ set_light(0,0,"#ffffff")
+
+/turf/simulated/shuttle/plating/airless/carry/attackby(obj/item/C, mob/user) //this is gross
+ if (istype(C, /obj/item/stack/rods))
+ var/obj/structure/lattice/L = locate(/obj/structure/lattice, src)
+ if(L)
+ return
+ var/obj/item/stack/rods/R = C
+ if (R.use(1))
+ to_chat(user, "Constructing support lattice ...")
+ playsound(src, 'sound/weapons/Genhit.ogg', 50, 1)
+ new/obj/structure/lattice(src)
+ return
+
+ if (istype(C, /obj/item/stack/tile/floor))
+ var/obj/structure/lattice/L = locate(/obj/structure/lattice, src)
+ if(L)
+ var/obj/item/stack/tile/floor/S = C
+ if (S.get_amount() < 1)
+ return
+ qdel(L)
+ playsound(src, 'sound/weapons/Genhit.ogg', 50, 1)
+ S.use(1)
+ ChangeTurf(/turf/simulated/floor/airless)
+ return
+ else
+ to_chat(user, "The plating is going to need some support.")
+
+/turf/simulated/shuttle/plating/airless/carry/is_solid_structure()
+ return locate(/obj/structure/lattice, src)
\ No newline at end of file
diff --git a/icons/mecha/fighters64x64.dmi b/icons/mecha/fighters64x64.dmi
index 7240417552..6025a94c86 100644
Binary files a/icons/mecha/fighters64x64.dmi and b/icons/mecha/fighters64x64.dmi differ
diff --git a/maps/expedition_vr/space/_debrisfield.dm b/maps/expedition_vr/space/_debrisfield.dm
index 3205f1700e..e8ffd87a0b 100644
--- a/maps/expedition_vr/space/_debrisfield.dm
+++ b/maps/expedition_vr/space/_debrisfield.dm
@@ -108,6 +108,105 @@
/area/submap/debrisfield/mining_outpost
name = "POI - Destroyed Mining Outpost"
+/area/submap/debrisfield/tinyshuttle
+ secret_name = 0
+
+/area/submap/debrisfield/tinyshuttle/crew
+ name = "Crew Bay"
+
+/area/submap/debrisfield/tinyshuttle/bridge
+ name = "Bridge"
+
+/area/submap/debrisfield/tinyshuttle/hangar
+ name = "Hangar"
+ has_gravity = 0
+
+/area/submap/debrisfield/tinyshuttle/engine
+ name = "Systems Bay"
+
+/datum/shuttle/autodock/overmap/tinycarrier
+ name = "Debris Carrier"
+ warmup_time = 0
+ current_location = "debris_field_carrier_start"
+ docking_controller_tag = "debris_carrier_docker"
+ shuttle_area = list(/area/submap/debrisfield/tinyshuttle/crew, /area/submap/debrisfield/tinyshuttle/bridge, /area/submap/debrisfield/tinyshuttle/hangar, /area/submap/debrisfield/tinyshuttle/engine)
+ fuel_consumption = 3
+ defer_initialisation = TRUE
+ move_direction = WEST
+
+/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier
+ name = "Debris Field"
+ base_area = /area/space
+ base_turf = /turf/space
+ landmark_tag = "debris_field_carrier_start"
+ shuttle_type = /datum/shuttle/autodock/overmap/tinycarrier
+
+/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier/Initialize()
+ var/obj/effect/overmap/visitable/O = get_overmap_sector(get_z(src)) //make this into general system some other time
+ LAZYINITLIST(O.initial_restricted_waypoints)
+ O.initial_restricted_waypoints["Debris Carrier"] = list(landmark_tag)
+ . = ..()
+
+/obj/effect/overmap/visitable/ship/landable/tinycarrier
+ scanner_name = "TBD"
+ scanner_desc = "TBD"
+ vessel_mass = 12000
+ vessel_size = SHIP_SIZE_SMALL
+ shuttle = "Debris Carrier"
+
+/obj/effect/overmap/visitable/ship/landable/tinycarrier/Initialize()
+ . = ..()
+ var/datum/lore/organization/O = loremaster.organizations[/datum/lore/organization/other/sysdef]
+ var/newname = "SDV [pick(O.ship_names)]"
+ scanner_name = newname
+ scanner_desc = {"\[i\]Registration\[/i\]: [newname]
+\[i\]Class\[/i\]: Light Escort Carrier
+\[i\]Transponder\[/i\]: Transmitting (MIL), Weak Signal
+\[b\]Notice\[/b\]: Registration Expired"}
+ rename_areas(newname)
+
+/obj/effect/overmap/visitable/ship/landable/tinycarrier/proc/rename_areas(newname)
+ if(!SSshuttles.subsystem_initialized)
+ spawn(300)
+ rename_areas(newname)
+ return
+ var/datum/shuttle/S = SSshuttles.shuttles[shuttle]
+ for(var/area/A in S.shuttle_area)
+ A.name = "[newname] [initial(A.name)]"
+ if(A.apc)
+ A.apc.name = "[A.name] APC"
+ A.air_vent_names = list()
+ A.air_scrub_names = list()
+ A.air_vent_info = list()
+ A.air_scrub_info = list()
+ for(var/obj/machinery/alarm/AA in A)
+ AA.name = "[A.name] Air Alarm"
+
+/obj/machinery/computer/shuttle_control/explore/tinycarrier
+ shuttle_tag = "Debris Carrier"
+ req_one_access = list()
+
+/obj/mecha/combat/fighter/baron/loaded/busted
+ starting_components = list(/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/component/actuator/hispeed,/obj/item/mecha_parts/component/armor,/obj/item/mecha_parts/component/gas,/obj/item/mecha_parts/component/electrical/high_current)
+
+/obj/mecha/combat/fighter/baron/loaded/busted/Initialize()
+ . = ..()
+ health = round(rand(50,120))
+ cell?.charge = 0
+ for(var/slot in internal_components)
+ var/obj/item/mecha_parts/component/comp = internal_components[slot]
+ if(!istype(comp))
+ continue
+ comp.adjust_integrity(-(round(rand(comp.max_integrity - 10, 0))))
+
+ setInternalDamage(MECHA_INT_SHORT_CIRCUIT)
+
+/obj/structure/fuel_port/empty_tank/Initialize()
+ . = ..()
+ var/obj/item/weapon/tank/phoron/T = locate() in src
+ if(T)
+ T.air_contents.remove(T.air_contents.total_moles)
+
/area/submap/debrisfield/misc_debris //for random bits of debris that should use dynamic lights
requires_power = 1
always_unpowered = 1
diff --git a/maps/submaps/pois_vr/debris_field/_templates.dm b/maps/submaps/pois_vr/debris_field/_templates.dm
index 9d6da85e08..b101cdd072 100644
--- a/maps/submaps/pois_vr/debris_field/_templates.dm
+++ b/maps/submaps/pois_vr/debris_field/_templates.dm
@@ -218,6 +218,12 @@
cost = 30
allow_duplicates = FALSE
+/datum/map_template/debrisfield/tinycarrier
+ name = "Disabled Tiny Carrier"
+ mappath = 'tinycarrier.dmm'
+ cost = 30
+ allow_duplicates = FALSE
+
/datum/map_template/debrisfield/alien_massive_derelict
name = "Alien Derelict"
mappath = 'derelict.dmm'
diff --git a/maps/submaps/pois_vr/debris_field/debris14.dmm b/maps/submaps/pois_vr/debris_field/debris14.dmm
index 9de214c239..91a5ef114a 100644
--- a/maps/submaps/pois_vr/debris_field/debris14.dmm
+++ b/maps/submaps/pois_vr/debris_field/debris14.dmm
@@ -1,14 +1,22 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"b" = (
-/turf/simulated/wall,
-/area/space)
-"c" = (
+"a" = (
/obj/item/weapon/material/shard/shrapnel,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -24
+ },
/turf/simulated/floor/airless,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
+"b" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/tether_away/debrisfield/shuttle_buffer)
+"c" = (
+/turf/template_noop,
+/area/tether_away/debrisfield/shuttle_buffer)
"d" = (
/turf/simulated/floor/airless,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
"e" = (
/obj/structure/lattice,
/turf/space,
@@ -16,57 +24,56 @@
"f" = (
/obj/item/stack/rods,
/turf/simulated/floor/airless,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
"g" = (
/obj/structure/lattice,
/obj/item/stack/rods,
/turf/space,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
"h" = (
/obj/structure/lattice,
/obj/structure/lattice,
/turf/space,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
"i" = (
-/obj/structure/girder,
-/turf/simulated/floor/airless,
-/area/space)
-"j" = (
/obj/item/weapon/material/shard/shrapnel,
-/obj/machinery/firealarm/alarms_hidden{
- dir = 4;
- pixel_x = -24
- },
/turf/simulated/floor/airless,
-/area/space)
+/area/tether_away/debrisfield/shuttle_buffer)
+"j" = (
+/obj/structure/lattice,
+/turf/space,
+/area/tether_away/debrisfield/shuttle_buffer)
"k" = (
/turf/template_noop,
/area/space)
+"l" = (
+/turf/simulated/wall,
+/area/tether_away/debrisfield/shuttle_buffer)
(1,1,1) = {"
-i
b
-e
-e
+l
+j
+j
e
"}
(2,1,1) = {"
-k
-j
+c
+a
f
-e
+j
k
"}
(3,1,1) = {"
-c
+i
d
d
-e
+j
k
"}
(4,1,1) = {"
k
-e
+j
g
h
k
diff --git a/maps/submaps/pois_vr/debris_field/tinycarrier.dmm b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm
new file mode 100644
index 0000000000..e59de77bb7
--- /dev/null
+++ b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm
@@ -0,0 +1,1510 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/obj/machinery/porta_turret/industrial/military{
+ auto_repair = 0;
+ dir = 8;
+ icon_state = "destroyed_target_prism_industrial";
+ stat = 1
+ },
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ac" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ad" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ae" = (
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "tinycarrier_bridge"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/crew)
+"af" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/monofloor,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ag" = (
+/obj/structure/lattice,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ah" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 8
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/engine)
+"ai" = (
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ dir = 9;
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aj" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ak" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"al" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external/public,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/monofloor{
+ dir = 4
+ },
+/area/submap/debrisfield/tinyshuttle/crew)
+"am" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ id_tag = "temp"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "debris_carrier_docker";
+ pixel_x = 24;
+ pixel_y = -6
+ },
+/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier,
+/obj/machinery/airlock_sensor{
+ pixel_x = 26;
+ pixel_y = 6
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/overmap/visitable/ship/landable/tinycarrier,
+/turf/simulated/floor/tiled/monotile,
+/area/submap/debrisfield/tinyshuttle/crew)
+"an" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ao" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ap" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "tinycarrier_bridge"
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aq" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ar" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/door/window{
+ dir = 2;
+ name = "Airlock Canister Access"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"as" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"at" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"au" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ id = "tinycarrier_bridge"
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"av" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aw" = (
+/obj/machinery/computer/ship/engines,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ax" = (
+/obj/machinery/computer/shuttle_control/explore/tinycarrier,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless{
+ broken = 1
+ },
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ay" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 24;
+ req_one_access = list()
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/airless{
+ broken = 2
+ },
+/area/submap/debrisfield/tinyshuttle/bridge)
+"az" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aA" = (
+/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aB" = (
+/obj/item/clothing/head/service,
+/obj/item/clothing/head/service,
+/obj/item/clothing/under/solgov/utility/fleet/combat,
+/obj/item/clothing/under/solgov/utility/fleet/combat,
+/obj/item/clothing/suit/storage/solgov/service/fleet,
+/obj/item/clothing/suit/storage/solgov/service/fleet,
+/obj/structure/closet/wardrobe/black{
+ starts_with = list()
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/obj/item/clothing/shoes/boots/duty,
+/obj/item/clothing/shoes/boots/duty,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aC" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aF" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aG" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aH" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/machinery/computer/ship/helm{
+ dir = 4;
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aI" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aJ" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aK" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aL" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aM" = (
+/obj/item/trash/coffee,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aN" = (
+/obj/structure/prop{
+ desc = "A man-sized pod for entering suspended animation. This one is room temperature.";
+ dir = 8;
+ icon = 'icons/obj/Cryogenic2_vr.dmi';
+ icon_state = "cryopod_0";
+ name = "cryogenic freezer"
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aO" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aP" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ icon_state = "intact"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aQ" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aR" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aT" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"aU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6;
+ icon_state = "intact-fuel"
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"aV" = (
+/obj/machinery/porta_turret/industrial/military{
+ auto_repair = 0;
+ dir = 10;
+ icon_state = "destroyed_target_prism_industrial";
+ stat = 1
+ },
+/obj/structure/lattice,
+/obj/structure/cable/green,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aW" = (
+/obj/machinery/computer/ship/sensors{
+ icon_state = "computer";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/effect/floor_decal/corner/blue/full,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aX" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "tinycarrier_bridge";
+ name = "Bridge Blast Doors";
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "tinycarrier_hangar";
+ name = "Hangar Blast Doors";
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "tinycarrier_sensors";
+ name = "Sensor Shroud";
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aY" = (
+/obj/machinery/turretid/lethal{
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access = list()
+ },
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/corner/blue{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"aZ" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 22;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4;
+ icon_state = "corner_white_full"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"ba" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bc" = (
+/obj/machinery/sleeper{
+ controls_inside = 1;
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/structure/closet/secure_closet/guncabinet/sidearm{
+ anchored = 1;
+ starts_with = list()
+ },
+/obj/item/weapon/gun/projectile/p92x/large,
+/obj/item/weapon/gun/projectile/p92x/large,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/effect/floor_decal/corner/brown/full,
+/obj/item/ammo_magazine/m9mm/large,
+/obj/item/ammo_magazine/m9mm/large,
+/obj/item/ammo_magazine/m9mm/large,
+/obj/item/ammo_magazine/m9mm/large,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"be" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bf" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bg" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 8;
+ icon_state = "map-fuel"
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bi" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bk" = (
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bl" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4;
+ icon_state = "map"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"bn" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/shipsensors{
+ dir = 8;
+ use_power = 0
+ },
+/turf/simulated/floor/greengrid/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"bo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/airless,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "tinycarrier_sensors"
+ },
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"bq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"br" = (
+/obj/machinery/mecha_part_fabricator{
+ req_access = list()
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bs" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 4
+ },
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/screwdriver{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bt" = (
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bu" = (
+/obj/machinery/power/smes/buildable/outpost_substation{
+ charge = 3e+006;
+ input_attempt = 1;
+ input_level = 200000
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bw" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4;
+ icon_state = "map"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bx" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ id = "tinycarrier_bridge"
+ },
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"by" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bz" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bA" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/techmaint/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bB" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/toolbox/mechanical{
+ starts_with = list(/obj/item/weapon/tool/screwdriver,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/item/device/analyzer,/obj/item/weapon/tool/wirecutters)
+ },
+/obj/item/device/t_scanner,
+/obj/effect/floor_decal/corner/orange{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bC" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bD" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "tinycarrier_bridge"
+ },
+/turf/simulated/floor/plating,
+/area/submap/debrisfield/tinyshuttle/bridge)
+"bG" = (
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bH" = (
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bI" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bJ" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bK" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ icon_state = "map_connector-fuel";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bM" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10;
+ icon_state = "intact-fuel"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/obj/item/device/multitool,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bO" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 24;
+ req_one_access = list()
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bP" = (
+/obj/structure/fans/hardlight,
+/obj/machinery/door/blast/regular{
+ id = "tinycarrier_hangar"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bQ" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bR" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ icon_state = "map_connector-fuel";
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/empty/phoron{
+ destroyed = 1;
+ health = 0;
+ icon_state = "orangeps-1"
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/obj/effect/floor_decal/corner/orange/full,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/decal/cleanable/liquid_fuel,
+/obj/effect/floor_decal/corner/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bT" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bU" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/vent{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bV" = (
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bW" = (
+/obj/mecha/combat/fighter/baron/loaded/busted{
+ dir = 8;
+ dir_in = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bX" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"bY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5;
+ icon_state = "intact-fuel"
+ },
+/turf/simulated/wall/thull,
+/area/submap/debrisfield/tinyshuttle/engine)
+"bZ" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/light,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"ca" = (
+/obj/effect/decal/cleanable/blood/gibs/robot,
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cb" = (
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cc" = (
+/obj/structure/lattice,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cd" = (
+/obj/structure/loot_pile/surface/drone{
+ density = 1;
+ dir = 8;
+ icon = 'icons/mob/animal_vr64x64.dmi';
+ icon_state = "drone";
+ pixel_x = -16;
+ pixel_y = -16
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"ce" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8;
+ icon_state = "intact-fuel"
+ },
+/obj/machinery/meter,
+/obj/machinery/light_switch{
+ dir = 1;
+ on = 0;
+ pixel_x = -10;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 4
+ },
+/obj/structure/fuel_port/empty_tank{
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"cf" = (
+/obj/item/weapon/material/shard/titaniumglass,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cg" = (
+/obj/structure/girder,
+/turf/simulated/floor/airless,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"ch" = (
+/obj/machinery/atmospherics/binary/pump/fuel{
+ icon_state = "map_off-fuel";
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/weapon/weldingtool/electric,
+/obj/effect/floor_decal/corner/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/submap/debrisfield/tinyshuttle/engine)
+"ci" = (
+/obj/structure/lattice,
+/mob/living/simple_mob/mechanical/combat_drone/lesser,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cj" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"ck" = (
+/obj/structure/prop{
+ desc = "A man-sized pod for entering suspended animation. This one is room temperature.";
+ dir = 8;
+ icon = 'icons/obj/Cryogenic2_vr.dmi';
+ icon_state = "cryopod_0";
+ name = "cryogenic freezer"
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/submap/debrisfield/tinyshuttle/crew)
+"cl" = (
+/obj/effect/decal/mecha_wreckage/baron,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+"cm" = (
+/obj/structure/lattice,
+/obj/item/weapon/material/shard/titaniumglass,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/submap/debrisfield/tinyshuttle/hangar)
+
+(1,1,1) = {"
+aa
+aa
+ao
+bx
+au
+au
+ao
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+ab
+ac
+ap
+av
+aH
+aW
+bF
+ac
+aV
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+ao
+aw
+aI
+aX
+ao
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aq
+ax
+aJ
+aY
+ao
+bp
+ao
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+ag
+aq
+ay
+aK
+aZ
+ao
+bn
+ao
+bi
+bP
+bP
+bi
+bi
+aa
+"}
+(6,1,1) = {"
+ad
+ad
+ad
+ad
+aO
+ad
+bi
+bi
+bi
+bG
+bH
+bH
+bH
+bi
+bi
+"}
+(7,1,1) = {"
+ad
+aj
+as
+aC
+aP
+bd
+bi
+br
+bA
+bW
+bH
+bX
+bH
+bZ
+bi
+"}
+(8,1,1) = {"
+ae
+ak
+at
+aD
+aQ
+be
+bi
+bs
+by
+bH
+bH
+bH
+bH
+ca
+cm
+"}
+(9,1,1) = {"
+ad
+al
+ad
+aE
+aR
+bf
+bj
+bq
+bz
+bI
+bO
+bV
+bH
+cc
+cl
+"}
+(10,1,1) = {"
+af
+am
+az
+aF
+aS
+bg
+bk
+bk
+bk
+bk
+bk
+bk
+cc
+cb
+cb
+"}
+(11,1,1) = {"
+ai
+an
+ad
+aG
+aT
+bl
+bk
+bt
+bB
+bK
+bR
+bk
+cc
+cf
+cb
+"}
+(12,1,1) = {"
+ad
+ar
+aA
+aL
+ba
+bm
+bo
+bw
+bD
+bN
+bS
+bk
+cc
+ci
+cf
+"}
+(13,1,1) = {"
+ad
+ad
+aB
+aM
+bb
+cj
+bk
+bC
+bJ
+bL
+ch
+bk
+bH
+cc
+cb
+"}
+(14,1,1) = {"
+aa
+ad
+ad
+aN
+bc
+ck
+bk
+bu
+bM
+bQ
+ce
+bi
+cd
+bH
+cc
+"}
+(15,1,1) = {"
+aa
+aa
+ad
+ad
+aU
+bh
+bh
+bv
+bE
+bv
+bT
+bh
+bY
+bi
+cg
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+ad
+ah
+ah
+ah
+bk
+bU
+bk
+ah
+ah
+ah
+bi
+aa
+"}
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index b8010aa199..08feddc168 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -244,7 +244,7 @@
/datum/map_template/tether_lateload/away_debrisfield/on_map_loaded(z)
. = ..()
//Commented out until we actually get POIs
- seed_submaps(list(Z_LEVEL_DEBRISFIELD), 300, /area/space, /datum/map_template/debrisfield)
+ seed_submaps(list(Z_LEVEL_DEBRISFIELD), 400, /area/space, /datum/map_template/debrisfield)
/datum/map_z_level/tether_lateload/away_debrisfield
name = "Away Mission - Debris Field"