diff --git a/code/game/objects/random/mapping_vr.dm b/code/game/objects/random/mapping_vr.dm new file mode 100644 index 0000000000..43431a8b16 --- /dev/null +++ b/code/game/objects/random/mapping_vr.dm @@ -0,0 +1,10 @@ +/obj/random/empty_or_lootable_crate + name = "random crate" + desc = "Spawns a random crate which may or may not have contents. Sometimes spawns nothing." + icon = 'icons/obj/storage.dmi' + icon_state = "moneybag" + spawn_nothing_percentage = 20 + +/obj/random/empty_or_lootable_crate/item_to_spawn() + return pick(/obj/random/crate, + /obj/random/multiple/corp_crate) \ No newline at end of file diff --git a/code/modules/awaymissions/loot_vr.dm b/code/modules/awaymissions/loot_vr.dm index d48c65bd61..2fecbbded8 100644 --- a/code/modules/awaymissions/loot_vr.dm +++ b/code/modules/awaymissions/loot_vr.dm @@ -391,4 +391,9 @@ /obj/structure/symbol/sa desc = "It looks like a right triangle with a dot to the side. It reminds you of a wooden strut between a wall and ceiling." - icon_state = "sa" \ No newline at end of file + icon_state = "sa" + +/obj/structure/symbol/maint + name = "maintenance panel" + desc = "This sign suggests that the wall it's attached to can be opened somehow." + icon_state = "maintenance_panel" \ No newline at end of file diff --git a/icons/obj/decals_vr.dmi b/icons/obj/decals_vr.dmi index 391d37b918..41586b5f88 100644 Binary files a/icons/obj/decals_vr.dmi and b/icons/obj/decals_vr.dmi differ diff --git a/maps/offmap_vr/om_ships/bearcat.dm b/maps/offmap_vr/om_ships/bearcat.dm new file mode 100644 index 0000000000..003e938803 --- /dev/null +++ b/maps/offmap_vr/om_ships/bearcat.dm @@ -0,0 +1,204 @@ +// Compile in the map for CI testing if we're testing compileability of all the maps +#if MAP_TEST +#include "bearcat.dmm" +#endif + +// -- Datums -- // +/datum/map_template/om_ships/bearcat + name = "OM Ship - Bearcat (New Z)" + desc = "An old salvage ship, abandoned but seemingly intact." + mappath = 'bearcat.dmm' + +// The 'shuttle' +/datum/shuttle/autodock/overmap/bearcat + name = "Bearcat" + current_location = "omship_spawn_bearcat" + docking_controller_tag = "bearcat_docking" + shuttle_area = list( /area/ship/scrap, + /area/shuttle/bearcat/cargo, + /area/shuttle/bearcat/command, + /area/shuttle/bearcat/command_captain, + /area/shuttle/bearcat/comms, + /area/shuttle/bearcat/crew, + /area/shuttle/bearcat/crew_corridors, + /area/shuttle/bearcat/crew_dorms, + /area/shuttle/bearcat/crew_kitchen, + /area/shuttle/bearcat/crew_medbay, + /area/shuttle/bearcat/crew_saloon, + /area/shuttle/bearcat/crew_toilets, + /area/shuttle/bearcat/crew_wash, + /area/shuttle/bearcat/dock_central, + /area/shuttle/bearcat/dock_port, + /area/shuttle/bearcat/dock_starboard, + /area/shuttle/bearcat/maintenance, + /area/shuttle/bearcat/maintenance_atmos, + /area/shuttle/bearcat/maintenance_engine, + /area/shuttle/bearcat/maintenance_engine_pod_port, + /area/shuttle/bearcat/maintenance_engine_pod_starboard, + /area/shuttle/bearcat/maintenance_enginecontrol, + /area/shuttle/bearcat/maintenance_power, + /area/shuttle/bearcat/maintenance_storage, + /area/shuttle/bearcat/unused1, + /area/shuttle/bearcat/unused2 + ) //it's a miracle this thing works + defer_initialisation = TRUE //We're not loaded until an admin does it + fuel_consumption = 4 //chonker uses more fuel + move_direction = NORTH + ceiling_type = /turf/simulated/floor/reinforced/airless + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/bearcat + name = "IRV Bearcat" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_bearcat" + shuttle_type = /datum/shuttle/autodock/overmap/bearcat + +/obj/effect/overmap/visitable/ship/landable/bearcat + scanner_name = "Binturong-class Salvage Vessel" + scanner_desc = @{"[i]Registration[/i]: IRV Bearcat +[i]Class:[/i] Corvette +[i]Transponder[/i]: Transmitting \'Keep-Away\' Signal +[b]Notice[/b]: Abandoned under unclear circumstances."} + known = FALSE + color = "#ee3333" //Reddish, so it looks kinda rusty and beat up +// initial_generic_waypoints = list("bearcat_dock_w", "bearcat_dock_e") + vessel_mass = 3500 + vessel_size = SHIP_SIZE_LARGE + shuttle = "Bearcat" + +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/bearcat + name = "short jump console" + shuttle_tag = "Bearcat" + req_one_access = list() + +// -- Objs -- // +/obj/effect/shuttle_landmark/premade/bearcat/dock_w + name = "IRV Bearcat - Port Docking Ring" + landmark_tag = "bearcat_dock_w" + +/obj/effect/shuttle_landmark/premade/bearcat/dock_e + name = "IRV Bearcat - Starboard Docking Ring" + landmark_tag = "bearcat_dock_e" + +/area/ship/scrap + name = "\improper Bearcat" + has_gravity = 0 //predates artificial gravity - won't matter much due to all the walls to push off of! + +/area/shuttle/bearcat/crew + name = "\improper Bearcat Crew Compartments" + icon_state = "hallC" + +/area/shuttle/bearcat/crew_corridors + name = "\improper Bearcat Corridors" + icon_state = "hallC1" + +/area/shuttle/bearcat/crew_kitchen + name = "\improper Bearcat Galley" + icon_state = "kitchen" + +/area/shuttle/bearcat/crew_dorms + name = "\improper Bearcat Dorms" + icon_state = "crew_quarters" + +/area/shuttle/bearcat/crew_saloon + name = "\improper Bearcat Saloon" + icon_state = "conference" + +/area/shuttle/bearcat/crew_toilets + name = "\improper Bearcat Bathrooms" + icon_state = "toilet" + +/area/shuttle/bearcat/crew_wash + name = "\improper Bearcat Washroom" + icon_state = "locker" + +/area/shuttle/bearcat/crew_medbay + name = "\improper Bearcat Medical Bay" + icon_state = "medbay" + +/area/shuttle/bearcat/cargo + name = "\improper Bearcat Cargo Hold" + icon_state = "quartstorage" + +/area/shuttle/bearcat/dock + name = "\improper Bearcat Docking Bay" + icon_state = "start" + +/area/shuttle/bearcat/dock_central + name = "\improper Bearcat Passenger Bay" + icon_state = "start" + +/area/shuttle/bearcat/dock_port + name = "\improper Bearcat Docking Bay Port" + icon_state = "west" + +/area/shuttle/bearcat/dock_starboard + name = "\improper Bearcat Docking Bay Starboard" + icon_state = "east" + +/area/shuttle/bearcat/unused1 + name = "\improper Bearcat Unused Compartment #1" + icon_state = "green" + +/area/shuttle/bearcat/unused2 + name = "\improper Bearcat Unused Compartment #2" + icon_state = "yellow" + +/area/shuttle/bearcat/unused3 + name = "\improper Bearcat Unused Compartment #3" + icon_state = "blueold" + +/area/shuttle/bearcat/maintenance + name = "\improper Bearcat Maintenance Compartments" + icon_state = "storage" + +/area/shuttle/bearcat/maintenance_storage + name = "\improper Bearcat Tools Storage" + icon_state = "eva" + +/area/shuttle/bearcat/maintenance_atmos + name = "\improper Bearcat Atmospherics Compartment" + icon_state = "atmos" + music = list('sound/ambience/ambiatm1.ogg') + +/area/shuttle/bearcat/maintenance_power + name = "\improper Bearcat Power Compartment" + icon_state = "engine_smes" + music = list('sound/ambience/ambisin1.ogg','sound/ambience/ambisin2.ogg','sound/ambience/ambisin3.ogg') + +/area/shuttle/bearcat/maintenance_engine + name = "\improper Bearcat Main Engine Compartment" + icon_state = "engine" + music = list('sound/ambience/ambisin1.ogg','sound/ambience/ambisin2.ogg','sound/ambience/ambisin3.ogg') + +/area/shuttle/bearcat/maintenance_engine_pod_port + name = "\improper Bearcat Port Engine Pod" + icon_state = "west" + music = list('sound/ambience/ambisin1.ogg','sound/ambience/ambisin2.ogg','sound/ambience/ambisin3.ogg') + +/area/shuttle/bearcat/maintenance_engine_pod_starboard + name = "\improper Bearcat Starboard Engine Pod" + icon_state = "east" + music = list('sound/ambience/ambisin1.ogg','sound/ambience/ambisin2.ogg','sound/ambience/ambisin3.ogg') + +/area/shuttle/bearcat/maintenance_enginecontrol + name = "\improper Bearcat Engine Control Room" + icon_state = "engine_monitoring" + music = list('sound/ambience/ambisin1.ogg','sound/ambience/ambisin2.ogg','sound/ambience/ambisin3.ogg') + +/area/shuttle/bearcat/command + name = "\improper Bearcat Command Deck" + icon_state = "centcom" + music = list('sound/ambience/signal.ogg') + +/area/shuttle/bearcat/command_captain + name = "\improper Bearcat Captain's Quarters" + icon_state = "captain" + music = list('sound/ambience/signal.ogg') + +/area/shuttle/bearcat/comms + name = "\improper Bearcat Communications Relay" + icon_state = "tcomsatcham" + music = list('sound/ambience/signal.ogg') \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/bearcat.dmm b/maps/offmap_vr/om_ships/bearcat.dmm new file mode 100644 index 0000000000..744da6a92b --- /dev/null +++ b/maps/offmap_vr/om_ships/bearcat.dmm @@ -0,0 +1,5339 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"ac" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command) +"ad" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command) +"ae" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"af" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"ah" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/chair/bay/comfy/captain{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command) +"ai" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command) +"aj" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"ak" = ( +/obj/machinery/light, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command) +"am" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"an" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/comms) +"ao" = ( +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"ap" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command) +"aq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/comms) +"ar" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/command_captain) +"as" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/comms) +"at" = ( +/turf/simulated/floor/bluegrid, +/area/shuttle/bearcat/comms) +"au" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + icon_state = "apc0" + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command) +"av" = ( +/obj/machinery/door/window/westleft, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/comms) +"aw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/comms) +"ax" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command) +"ay" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/space/void/refurb/officer, +/obj/item/clothing/head/helmet/space/void/refurb/officer, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"az" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command_captain) +"aA" = ( +/obj/machinery/telecomms/allinone, +/turf/simulated/floor/bluegrid, +/area/shuttle/bearcat/comms) +"aB" = ( +/obj/item/weapon/bedsheet/captain, +/obj/structure/bed/pod, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aC" = ( +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/table/woodentable, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command_captain) +"aE" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/comms) +"aF" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command) +"aG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/command) +"aH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aJ" = ( +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_central) +"aL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"aM" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/structure/table/woodentable, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + desc = "When words don't strike hard enough."; + name = "Solid Argument" + }, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aO" = ( +/obj/structure/table/woodentable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + icon_state = "apc0" + }, +/turf/simulated/floor/wood, +/area/shuttle/bearcat/command_captain) +"aP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/comms) +"aQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_central) +"aR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command_captain) +"aS" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/dock_central) +"aT" = ( +/obj/structure/closet/crate, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"aU" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/dock_port) +"aW" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"aX" = ( +/obj/machinery/suit_cycler/vintage/omni, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"aY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/dock_port) +"aZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"ba" = ( +/obj/machinery/light, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"bb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_central) +"bc" = ( +/obj/machinery/light, +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westleft, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"bd" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/dock_starboard) +"be" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/dock_starboard) +"bf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_central) +"bg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_central) +"bh" = ( +/obj/structure/sign/department/telecoms, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/comms) +"bi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bk" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/dock_port) +"bl" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/unused2) +"bo" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -6; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"bp" = ( +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"bq" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/dock_starboard) +"br" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + icon_state = "map_vent" + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor/airlock_interior{ + pixel_x = -8; + pixel_y = 26 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "bearcat_docking_port"; + name = "Port Airlock Control"; + pixel_x = 8; + pixel_y = 22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"bs" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"bt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"bu" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + icon_state = "apc0" + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"bx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"by" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_central) +"bz" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"bA" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 8; + icon_state = "apc0" + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bC" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bD" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_external" + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor/airlock_interior{ + pixel_x = 8; + pixel_y = 26 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "bearcat_docking_star"; + name = "Starboard Airlock Control"; + pixel_x = -8; + pixel_y = 22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bF" = ( +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/shuttle_landmark/shuttle_initializer/bearcat, +/obj/effect/overmap/visitable/ship/landable/bearcat, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"bH" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor{ + pixel_x = -26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"bJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/dock_port) +"bK" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"bL" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/dock_starboard) +"bM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"bN" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"bO" = ( +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastleft, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"bR" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_toilets) +"bS" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_saloon) +"bT" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_dorms) +"bU" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"bV" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"bW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"bX" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"bY" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"bZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/crew_toilets) +"ca" = ( +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"cb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/crew_dorms) +"cc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_port) +"ce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_starboard) +"cf" = ( +/obj/structure/sign/department/commander, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/command_captain) +"cg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_saloon) +"ch" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/dock_central) +"ci" = ( +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_y = -9 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/comms) +"cj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_saloon) +"ck" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"cl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/machinery/shower{ + dir = 4; + icon_state = "shower" + }, +/obj/item/weapon/soap, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"cm" = ( +/obj/structure/toilet, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"cn" = ( +/obj/structure/mirror{ + pixel_y = 29 + }, +/obj/structure/sink{ + pixel_y = 18 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"co" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"cp" = ( +/obj/machinery/vending/snack, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"cq" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"cr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_saloon) +"cs" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"ct" = ( +/obj/machinery/vending/coffee, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"cu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"cv" = ( +/obj/item/weapon/bedsheet/blue, +/obj/structure/bed, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"cw" = ( +/obj/structure/closet, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"cx" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_kitchen) +"cy" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Reception Window"; + opacity = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"cz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"cA" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4; + icon_state = "intact"; + level = 2 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_toilets) +"cB" = ( +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"cC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_saloon) +"cD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_saloon) +"cE" = ( +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"cF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_saloon) +"cG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"cH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_dorms) +"cI" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/cargo) +"cJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"cK" = ( +/obj/item/weapon/bedsheet/brown, +/obj/structure/bed, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"cL" = ( +/obj/structure/closet, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"cM" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower" + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"cN" = ( +/obj/structure/toilet{ + dir = 1; + icon_state = "toilet00" + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"cO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + icon_state = "apc0" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_toilets) +"cQ" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_medbay) +"cR" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_engine) +"cS" = ( +/obj/structure/closet/crate, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"cT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"cU" = ( +/obj/structure/sign/redcross, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_medbay) +"cV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"cW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_saloon) +"cX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"cY" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"cZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_saloon) +"da" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "conpipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"db" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"dc" = ( +/obj/item/weapon/bedsheet/orange, +/obj/structure/bed, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"dd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"de" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"df" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/walllocker/emerglocker/east, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"dg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/power/apc/alarms_hidden, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"dh" = ( +/obj/structure/closet/walllocker/emerglocker/south, +/obj/item/weapon/bedsheet/green, +/obj/structure/bed, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"di" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_dorms) +"dj" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dl" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"dm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"dn" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"do" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_storage) +"dp" = ( +/obj/machinery/processor, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dr" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"ds" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"dt" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"du" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"dx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + icon_state = "apc0" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"dy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"dz" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dA" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dB" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + icon_state = "apc0" + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"dD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"dE" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"dF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"dH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"dI" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"dJ" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"dK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"dL" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "conpipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"dO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_kitchen) +"dP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"dQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dS" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"dT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_medbay) +"dV" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1; + icon_state = "pipe-t" + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/maintenance_engine) +"dW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/cargo) +"dZ" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"ea" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"eb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"ec" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/pill_bottle/kelotane, +/obj/item/weapon/storage/box/syringes, +/obj/structure/cable, +/obj/item/weapon/storage/firstaid, +/obj/machinery/power/apc/alarms_hidden{ + dir = 8; + icon_state = "apc0" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"ed" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"ee" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"ef" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1; + icon_state = "pipe-t" + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"eg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"eh" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/unused1) +"ei" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5; + icon_state = "intact" + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/power/apc/alarms_hidden, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"ej" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"ek" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4; + icon_state = "map" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"el" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"em" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_wash) +"en" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/unused2) +"eo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/crew_wash) +"ep" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_atmos) +"eq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"es" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"et" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"eu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + icon_state = "apc0" + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"ev" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"ex" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/pill_bottle/kelotane, +/obj/item/weapon/storage/pill_bottle/antitox, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"ey" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"ez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"eB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"eC" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_power) +"eD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"eE" = ( +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/cargo) +"eF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"eG" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"eH" = ( +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"eI" = ( +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westleft, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"eJ" = ( +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_central) +"eK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"eL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"eM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_medbay) +"eN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"eO" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"eP" = ( +/obj/structure/table/standard, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"eQ" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"eR" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused1) +"eS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused1) +"eT" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused1) +"eU" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"eV" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/device/t_scanner, +/obj/item/weapon/cell/high, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"eW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/vending/tool, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"eX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"eY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rglass, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"eZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fa" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fb" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"fc" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/void/refurb/medical, +/obj/item/clothing/head/helmet/space/void/refurb/medical/alt, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fd" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fe" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused1) +"ff" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused1) +"fg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fh" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/item/device/analyzer, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fi" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"fk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"fl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fm" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 26 + }, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fp" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 2; + icon_state = "intact"; + level = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"fs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"ft" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"fu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4; + icon_state = "map" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"fv" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"fw" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fx" = ( +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fy" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/washing_machine, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8; + icon_state = "map" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fA" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/storage/box/lights/bulbs, +/obj/item/weapon/storage/box/lights/mixed, +/obj/structure/cable, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/obj/machinery/power/apc/alarms_hidden, +/obj/item/clothing/head/welding, +/obj/item/device/radio, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/suit_cycler/vintage/omni, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/dispenser/oxygen, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fD" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_storage) +"fE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5; + icon_state = "intact" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "conpipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fG" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fH" = ( +/obj/structure/closet/crate/veymed, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fI" = ( +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_wash) +"fM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/unused2) +"fP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fR" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/spacecash/c1000, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"fS" = ( +/obj/structure/cable, +/obj/machinery/power/apc/alarms_hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fT" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_wash) +"fU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"fW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/handrail, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"fY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/department/atmos, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_atmos) +"fZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"ga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9; + icon_state = "intact" + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"gb" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gc" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"ge" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gf" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"gg" = ( +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"gh" = ( +/obj/structure/closet/crate/heph, +/obj/item/clothing/suit/space/void/refurb/marine, +/obj/item/clothing/head/helmet/space/void/refurb/marine, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused2) +"gi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_atmos) +"gl" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gm" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"go" = ( +/obj/machinery/pipedispenser, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gq" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gt" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gw" = ( +/obj/machinery/power/port_gen/pacman/super{ + anchored = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/sign/signnew/radiation{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gx" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/item/weapon/tool/wrench, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gy" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gz" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 5; + icon_state = "intact"; + level = 2 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/valve/open{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gI" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/radiation, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "conpipe-c" + }, +/obj/structure/cable, +/obj/machinery/power/apc/alarms_hidden, +/obj/structure/handrail{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_atmos) +"gP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"gQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"gR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/closet/crate{ + dir = 8 + }, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/computer/ship/engines{ + dir = 1; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/fuel_port, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "conpipe-c" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/maintenance_enginecontrol) +"gW" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 8; + icon_state = "apc0" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -26 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gX" = ( +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/dock_port) +"gY" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"gZ" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"ha" = ( +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hb" = ( +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hc" = ( +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/dock_starboard) +"hd" = ( +/obj/structure/table/standard, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8; + icon_state = "map" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_saloon) +"he" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hf" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hg" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hh" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8; + start_pressure = 1215.9 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hi" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/bearcat/maintenance_engine) +"hj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_power) +"hk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hn" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"ho" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hp" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8; + start_pressure = 1215.9 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hr" = ( +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = -29 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"ht" = ( +/obj/machinery/atmospherics/valve/open{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/sign/signnew/flammables{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine) +"hv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_engine) +"hw" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_engine) +"hx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_engine) +"hy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_engine) +"hA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command) +"hB" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + icon_state = "air_map" + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/dock_port) +"hF" = ( +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"in" = ( +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"jm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"jN" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"kD" = ( +/obj/machinery/computer/shuttle_control/explore/bearcat, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"kF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command) +"lw" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "bearcat_docking_port;bearcat_docking_star"; + dir = 1; + id_tag = "bearcat_docking"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"lF" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/maintenance_storage) +"mr" = ( +/obj/machinery/pointdefense_control{ + id_tag = "bearcat_pd" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"mQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/sign/signnew/flammables{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"mR" = ( +/obj/structure/window/reinforced, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"nx" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"qH" = ( +/obj/structure/sign/directions/cargo{ + pixel_y = -9 + }, +/obj/structure/sign/directions/engineering, +/obj/structure/sign/directions/medical{ + pixel_y = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_saloon) +"rN" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"sg" = ( +/obj/machinery/power/pointdefense{ + id_tag = "bearcat_pd" + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/dock_starboard) +"sn" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/command) +"sP" = ( +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"uX" = ( +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"vZ" = ( +/obj/machinery/suit_cycler/vintage/omni, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"wJ" = ( +/obj/structure/sign/directions/engineering, +/obj/structure/sign/directions/cargo{ + pixel_y = -9 + }, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/crew_saloon) +"xa" = ( +/obj/structure/window/reinforced, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"Aa" = ( +/obj/machinery/suit_cycler/vintage/omni, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"Bo" = ( +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"BC" = ( +/turf/simulated/floor/airless, +/area/shuttle/bearcat/maintenance_engine) +"BK" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"Di" = ( +/obj/machinery/power/pointdefense{ + id_tag = "bearcat_pd" + }, +/turf/simulated/floor/airless, +/area/shuttle/bearcat/dock_port) +"Ea" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -26 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"Ef" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"Fe" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + icon_state = "apc0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"FG" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"Gw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"GS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hatch" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"Hu" = ( +/obj/machinery/atmospherics/valve/open, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/obj/structure/sign/signnew/flammables{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"Ik" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -26 + }, +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/unused1) +"Jt" = ( +/obj/machinery/door/window/southright{ + name = "Shipbreaking Supplies" + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_starboard) +"JS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_kitchen) +"KF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hatch" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"Mz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"ME" = ( +/obj/structure/sign/department/cargo, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/cargo) +"MK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/command) +"MV" = ( +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"SJ" = ( +/obj/structure/sign/department/eng, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/maintenance_enginecontrol) +"Td" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hatch" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/crew_medbay) +"Tl" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"Tt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hatch" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"UZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"Vh" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/command) +"Vu" = ( +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/bearcat/maintenance_engine_pod_starboard) +"VA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/bearcat/maintenance_engine_pod_port) +"Xp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/wall/rshull, +/area/shuttle/bearcat/unused1) +"XH" = ( +/obj/machinery/door/window/southleft{ + name = "Shipbreaking Supplies" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/bearcat/dock_port) +"YH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) +"Zb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/bearcat/crew_corridors) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dZ +dZ +dZ +dZ +dZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dZ +dZ +dn +Hu +dm +dS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dZ +dZ +Fe +Mz +dm +MV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dZ +dZ +Tt +dZ +dZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aU +bo +aU +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dZ +VA +dZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aY +bp +bJ +aa +aa +bR +bR +bZ +bR +cx +cx +cx +cx +cx +GS +eh +eh +eh +em +em +eo +em +em +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Di +aU +br +bk +gX +aU +bR +cl +cy +cM +cx +dj +dz +dL +ed +JS +eh +eR +Ik +em +fw +fI +cY +ep +ep +fk +ep +ep +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aU +aU +bs +aU +aU +aU +bR +cm +cy +cN +cx +dp +dA +dM +ee +Ea +eh +eS +fe +em +fx +fJ +fS +ep +gl +gz +gN +ep +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aY +ck +bt +bI +bx +hB +bR +cn +cz +cO +cx +dq +dB +dN +ef +sP +eh +eT +ff +em +fy +fK +fT +ep +gm +gA +gN +gj +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +sn +an +an +aP +an +an +aU +aU +cB +aW +bK +bK +in +bR +bR +cA +bR +cx +cx +cx +dO +cx +cx +eh +Xp +eh +em +em +fL +em +ep +go +gB +gO +gk +dV +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +ac +kF +an +at +aA +at +an +aT +XH +aW +aW +bM +cc +cc +co +UZ +cG +da +df +dx +dH +ek +eq +ev +eD +eK +fa +fn +fp +fq +fE +ep +ep +gC +fY +cR +cR +cR +cR +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +ac +hA +am +aq +at +at +at +an +aT +mR +aZ +bu +bN +bK +vZ +wJ +bS +cC +cg +cI +cI +ME +dQ +cI +cI +do +do +do +fr +do +do +fF +gb +ge +gu +gI +gP +gQ +ei +cR +cR +cR +aa +"} +(14,1,1) = {" +aa +ac +hA +uX +Tl +an +as +av +aE +an +aS +aS +bb +aS +aS +aS +aS +bS +cp +cD +cT +cI +ds +dD +dR +el +eE +do +eV +fh +fs +fA +do +fM +gc +gi +gv +gM +eg +ha +hk +hr +hv +hi +aa +"} +(15,1,1) = {" +aa +ad +ab +aj +ak +an +an +aw +bh +ci +aX +aL +bf +bO +eH +bO +ba +bS +cq +cD +cV +cI +dt +dE +dT +es +eB +do +eW +fi +ft +fB +do +fN +SJ +gp +gD +gR +eg +hb +hb +hb +hw +hi +aa +"} +(16,1,1) = {" +aa +ad +ae +ah +al +ap +au +ax +aF +aG +aK +aQ +bg +by +ch +ch +ch +cj +cr +hd +cW +de +du +dF +dW +du +du +eL +eX +fj +fu +eX +eL +fU +gd +gq +gE +gS +eg +he +hm +hs +hx +hi +aa +"} +(17,1,1) = {" +aa +ad +kD +aj +ao +ar +ar +aD +cf +ar +bY +bU +bf +bz +eI +eJ +bc +bS +cs +cF +cX +cI +dv +dE +dX +dE +eB +do +eY +fl +lF +fC +do +fW +gc +gr +gF +gT +eg +hf +hn +ht +hw +hi +aa +"} +(18,1,1) = {" +aa +ai +hA +mr +lw +ar +ay +aH +aM +ar +aS +aS +bb +aS +aS +aS +aS +bS +ct +cD +cZ +cI +dw +dG +dY +eu +eE +do +eZ +fm +lF +fD +do +fX +gc +gs +gF +gU +eg +hg +ho +hu +hy +hi +aa +"} +(19,1,1) = {" +aa +aa +ai +hA +Vh +az +aB +aI +aN +ar +cS +xa +bi +bA +bV +bX +Aa +qH +bS +cC +bS +cI +cI +cI +dQ +ME +cI +do +do +do +fv +do +do +fZ +gc +gt +gH +gV +cR +hh +hp +cR +cR +cR +aa +"} +(20,1,1) = {" +aa +aa +aa +ai +MK +ar +aC +aJ +aO +ar +cS +Jt +bj +bl +bW +ce +ce +co +Zb +YH +dd +dr +dC +dP +YH +Ef +ez +eF +eU +fg +Ef +co +fz +ga +eC +eC +gJ +eC +cR +cR +cR +cR +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +ar +ar +aR +ar +ar +bd +bd +cE +bl +bX +bX +Bo +bT +bT +cH +bT +bT +cQ +cU +dU +cQ +cQ +eM +cU +cQ +en +en +fO +en +eC +gw +gK +gW +eC +BC +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +eG +bB +ca +bG +hB +bT +cu +cJ +db +dg +cQ +dl +ea +ec +ex +eN +eP +cQ +fc +et +fP +gf +eC +gx +gL +gY +gn +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bd +bC +bd +bd +aU +bT +cv +cK +dc +dh +cQ +dI +jm +ej +Gw +eb +eQ +cQ +fG +fo +fQ +gg +eC +gy +hj +gZ +eC +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +sg +bd +bD +bq +hc +aU +bT +cw +cL +cL +di +cQ +dJ +eO +dK +ey +fb +nx +cQ +fH +fd +fR +gh +eC +eC +fV +eC +eC +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +be +bF +bL +aa +aa +bT +bT +cb +cb +bT +cQ +cQ +cQ +cQ +Td +cQ +cQ +cQ +en +bn +bn +en +en +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bH +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hF +af +hF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hF +hF +KF +hF +hF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hF +hF +FG +rN +dy +BK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hF +hF +jN +mQ +dy +Vu +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hF +hF +hF +hF +hF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/offmap_vr/om_ships/gecko_cr.dmm b/maps/offmap_vr/om_ships/gecko_cr.dmm new file mode 100644 index 0000000000..5d2dab7401 --- /dev/null +++ b/maps/offmap_vr/om_ships/gecko_cr.dmm @@ -0,0 +1,4110 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"aF" = ( +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "gecko_cr_blast"; + name = "Blast Shields Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"aK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"aL" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"bA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"bJ" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"bL" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"bN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/marine, +/obj/item/clothing/head/helmet/space/void/refurb/marine, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"cg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"cX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"dh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + id_tag = "gecko_cargo_vent" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"dC" = ( +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"dE" = ( +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"dO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"dS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"ea" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/hatch, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"eD" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"eJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"eP" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_cr_cockpit) +"fe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"fB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"fP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"fR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"fX" = ( +/obj/structure/sign/warning/airlock, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"gh" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"gm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"gA" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"gC" = ( +/obj/machinery/atmospherics/unary/engine/biggest{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"gD" = ( +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"gY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"hC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"hH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"hJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + id_tag = "gecko_cargo_vent" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"ic" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "gecko_cr_blast"; + name = "Blast Shields Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"if" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"im" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"iL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"je" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"jo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"jq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"ju" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 14 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"jT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"kd" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"kn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"kp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"kx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"kI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"kJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -14 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"kU" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"lg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"lh" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"ll" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/gecko_cr, +/obj/effect/overmap/visitable/ship/landable/gecko_cr, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"lr" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"lt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"lw" = ( +/obj/machinery/suit_cycler/vintage/rugged, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"lB" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"lF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"lV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"lY" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "gecko_cargo_star_fore"; + name = "Starboard Fore Cargo Hatch Control"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"mS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"mY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"nl" = ( +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"nm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"nq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"oe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"oi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"om" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"ov" = ( +/obj/structure/handrail, +/obj/machinery/button/remote/blast_door{ + id = "gecko_cr_blast"; + name = "Blast Shields Control"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"oI" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"oL" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"pf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"pr" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"ps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"pv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"pG" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"pH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"qe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"qh" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr) +"qx" = ( +/obj/machinery/computer/shuttle_control/explore/gecko_cr, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"qL" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"qO" = ( +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"rg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 21 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"rj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"rr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"ru" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"rv" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"rA" = ( +/obj/structure/railing/grey, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"rL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"rQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"rR" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"sv" = ( +/obj/structure/railing/grey, +/obj/structure/catwalk, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"sL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"sV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/meter, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"te" = ( +/obj/machinery/light/small, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"tD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"tI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"tP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"tV" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"ue" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"um" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"uv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"uw" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"vu" = ( +/obj/structure/sign/warning/nosmoking_1, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"vE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/marine, +/obj/item/clothing/head/helmet/space/void/refurb/marine, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_y = 42 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"vI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"vP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/sign/warning/nosmoking_1, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"vX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"wF" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"wG" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"wH" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/sign/directions/engineering{ + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"wU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"wV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"xd" = ( +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"xf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"xT" = ( +/obj/item/weapon/tank/phoron/pressurized, +/obj/item/weapon/tank/phoron/pressurized, +/obj/item/weapon/tank/phoron/pressurized, +/obj/structure/fuel_port/heavy{ + pixel_y = 28 + }, +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"xU" = ( +/obj/machinery/door/blast/regular{ + id = "gecko_cargo_star_aft"; + name = "Starboard Aft Cargo Hatch" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"ye" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"yE" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"yP" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"yR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"yX" = ( +/obj/machinery/atmospherics/binary/pump/fuel, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"yY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"zs" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"zx" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"zE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"zF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"zJ" = ( +/obj/machinery/door/blast/regular{ + id = "gecko_cargo_star_fore"; + name = "Starboard Fore Cargo Hatch" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"zM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"zO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Aq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"AE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"AK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Bd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"Bf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Bp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"Br" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"BH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"BN" = ( +/obj/machinery/light/small, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"BP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"BW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Ca" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Ct" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"CW" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_engineering) +"CZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"Da" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"Dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Df" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Di" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Dl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"Do" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"Dw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"DM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"DR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Ed" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"Ey" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"Ez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"ER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Fe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Ff" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Fx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"FA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"FE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"FL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"FN" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"FS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"FX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Gm" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit) +"Gq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Gs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"Gx" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"Gz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"GF" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"GT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Hi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Ho" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Hp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "geck_sh_docking_port;geck_sh_docking_star"; + id_tag = "geck_sh_docking"; + pixel_y = 22 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"HI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"HJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"Id" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/suit_cycler/vintage/pilot, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Ie" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Ih" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Im" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Iz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"II" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"IL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"IM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"Jc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"Jn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"JE" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"JL" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"JV" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Kn" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Kw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Kz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"KA" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"KS" = ( +/obj/machinery/door/blast/regular{ + id = "gecko_cargo_port_fore"; + name = "Port Fore Cargo Hatch" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"KX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"KZ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Ld" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"Ln" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit) +"Lp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Lu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"LU" = ( +/obj/structure/bed/chair/bay/comfy, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"LW" = ( +/obj/structure/handrail, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"Mf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/handrail, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"MA" = ( +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering) +"Nh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr) +"Np" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Nr" = ( +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"Nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"NE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"NI" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"NM" = ( +/obj/structure/handrail, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"NN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"NR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"NZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Ol" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"Or" = ( +/obj/machinery/door/blast/regular{ + id = "gecko_cargo_port_aft"; + name = "Port Aft Cargo Hatch" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Ow" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering) +"Ox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"OH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"OJ" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"ON" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/catwalk, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"OP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"OZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "geck_sh_docking_port"; + name = "Port AIrlock Control"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Pc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"Pl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Pn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Px" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering) +"Pz" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"PD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"PI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"PJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"PR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"PW" = ( +/obj/structure/handrail, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Ql" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Qu" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"QC" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "gecko_cargo_port_aft"; + name = "Port Aft Cargo Hatch Control"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"QO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Rd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Rg" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Rh" = ( +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/pilot, +/obj/item/clothing/head/helmet/space/void/refurb/pilot, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/pilot, +/obj/item/clothing/head/helmet/space/void/refurb/pilot, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Ri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Rp" = ( +/obj/structure/railing/grey, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"RB" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr) +"RG" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"RT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"RV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Sa" = ( +/obj/machinery/suit_cycler/vintage, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/handrail, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"Td" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Ti" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"Tl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Tv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Tw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 27 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Tx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/airlock_sensor{ + pixel_y = 21 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"TE" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"TM" = ( +/obj/structure/railing/grey, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"UF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"UK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"UY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering) +"Va" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Ve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr) +"Vh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Vi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Vl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"Vs" = ( +/obj/structure/cable, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/power/port_gen/pacman/mrs{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"VJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"VW" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"Wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Wo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"Wr" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr) +"Wv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Wz" = ( +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"WB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering) +"WE" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_cr_engineering) +"WN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_engineering) +"WZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Xc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Xr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/stack/material/tritium{ + amount = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"Xs" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"XJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"XU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit) +"XX" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"Yd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_engineering) +"Yj" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "geck_sh_docking_star"; + name = "Starboard Airlock Control"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Yx" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"YG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit) +"Zb" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"Zg" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "gecko_cargo_port_fore"; + name = "Port Fore Cargo Hatch Control"; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Zn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Zo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit) +"Zp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) +"Zs" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/sign/warning/engineering_access{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr) +"ZJ" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_cr) +"ZK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering) +"ZL" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "gecko_cargo_star_aft"; + name = "Starboard Aft Cargo Hatch Control"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WE +WE +WE +WE +WE +WE +WE +WP +"} +(3,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WE +NM +Zb +bI +RV +UY +Ow +WP +"} +(4,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WE +IL +ER +rQ +Kw +WB +MA +WP +"} +(5,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ZJ +ZJ +KS +KS +KS +ZJ +Or +Or +Or +ZJ +ZJ +WP +WP +WP +WP +WP +WP +WP +WE +WE +kU +WE +WE +WE +WE +WP +"} +(6,1,1) = {" +WP +WP +WP +WP +WP +WP +eP +eP +eP +eP +eP +eP +eP +yE +lr +ZJ +Zg +dh +dh +dh +Ie +dh +dh +dh +QC +ZJ +WE +WE +WE +WE +WE +WE +WP +WP +WE +UF +WE +Px +WP +WP +WP +"} +(7,1,1) = {" +WP +WP +WP +eP +eP +eP +eP +Nr +GF +Nr +te +eP +OZ +rj +BH +ZJ +zF +AK +jo +wU +Wz +pv +jo +OP +vX +OJ +zs +rR +zs +ea +Dw +WE +WE +WE +WE +kU +WE +WE +WE +WP +WP +"} +(8,1,1) = {" +WP +eP +eP +eP +Nr +GF +RT +lg +CZ +Ol +Ol +qL +Tx +kn +Yx +Ve +sV +WZ +jo +nq +VJ +nq +Pn +Ez +Va +Wr +CW +CW +CW +CW +sv +Wv +Wv +gh +NI +aL +WE +WE +WE +WP +WP +"} +(9,1,1) = {" +WP +Gm +eP +fB +ju +lB +qL +Br +qL +cq +Bd +kx +kx +PD +fX +Nh +pf +Vl +Vi +Np +Wz +QO +Vi +vI +Tl +Wr +Qu +wF +NN +CW +Td +ZK +zO +Ck +ut +fR +RV +um +ue +WP +WP +"} +(10,1,1) = {" +WP +eP +qL +qL +qL +qL +qL +Mf +zE +Gs +fe +bJ +dS +jT +kI +qh +Rp +PJ +nm +oe +Gx +Zp +nm +Hi +TE +Wr +Gz +Dl +WW +Xs +om +Vh +bY +nl +Wj +cg +Kw +FS +nl +WP +WP +"} +(11,1,1) = {" +WP +WP +qL +wG +aF +Rh +qL +uv +Tw +bL +cX +qL +Hp +tP +FX +Ti +rA +Aq +nm +dE +gA +dE +nm +NZ +ON +Wr +ov +Pc +Wo +CW +sL +xd +xd +nl +rr +BN +WE +WE +WE +WE +WP +"} +(12,1,1) = {" +WP +WP +BP +JE +IM +oL +qL +qL +qL +qL +qL +qL +vE +fP +YG +Ti +aK +tI +nm +Gq +Gx +II +nm +Ox +Zs +Wr +FA +Pc +PI +je +Ho +gY +XJ +WN +Im +bI +RV +um +nl +gC +WP +"} +(13,1,1) = {" +WP +WP +BP +qx +JL +AE +bJ +eJ +Vr +OH +FN +KA +qe +if +Ri +pH +SV +Pz +xf +im +Bp +hC +xf +Da +iL +RB +Ld +LU +UK +Xn +Nz +Vs +BW +yX +KZ +rQ +Kw +rL +nl +nl +WP +"} +(14,1,1) = {" +WP +WP +BP +eD +ru +bA +qL +qL +qL +qL +qL +qL +bN +lt +Ql +Ti +XX +Pl +nm +oe +Gx +Zp +nm +Fe +wH +Wr +ai +Do +dO +vu +KX +DR +FL +hH +Im +Dc +vP +FS +nl +nl +WP +"} +(15,1,1) = {" +WP +WP +qL +wG +ic +Id +qL +Sa +lV +wV +Fx +qL +FE +tP +Di +Ti +TM +Aq +nm +dE +gA +dE +nm +NZ +ON +Wr +LW +Do +oI +CW +Bf +qO +qO +nl +ps +lh +WE +WE +WE +WE +WP +"} +(16,1,1) = {" +WP +eP +qL +qL +qL +qL +qL +HJ +Iz +XU +mY +bJ +Ct +NE +Jn +qh +gD +Ca +nm +Gq +Gx +II +nm +mS +TE +Wr +Yd +DM +VW +Xs +Rd +Vh +GT +nl +Wj +jq +RV +um +ue +WP +WP +"} +(17,1,1) = {" +WP +Gm +eP +fB +kJ +tV +qL +Br +qL +Jc +Ln +kx +kx +zx +Ey +Wr +yR +Zn +Vi +Tv +Wz +Lu +Vi +kp +Tl +Wr +xT +lw +Xr +CW +rv +NR +zO +zM +Lp +Dc +Kw +FS +nl +WP +WP +"} +(18,1,1) = {" +WP +eP +eP +eP +Nr +uw +Zo +PR +HI +tD +tD +qL +rg +Ed +Kz +Wr +Wz +yY +Vi +dC +Wz +dC +Vi +Ez +JV +Wr +CW +CW +CW +CW +sv +Kn +Kn +Rg +ye +pG +WE +WE +WE +WP +WP +"} +(19,1,1) = {" +WP +WP +WP +eP +eP +eP +eP +Nr +uw +Nr +te +eP +Yj +ll +oi +ZJ +zF +Df +jo +Ih +Wz +Xc +jo +lF +vX +OJ +zs +pr +zs +ea +gm +WE +WE +WE +WE +kU +WE +WE +WE +WP +WP +"} +(20,1,1) = {" +WP +WP +WP +WP +WP +WP +eP +eP +eP +eP +eP +eP +eP +kd +lr +ZJ +lY +hJ +hJ +hJ +yP +hJ +hJ +hJ +ZL +ZJ +WE +WE +WE +WE +WE +WE +WP +WP +WE +UF +WE +Px +WP +WP +WP +"} +(21,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ZJ +ZJ +zJ +zJ +zJ +ZJ +xU +xU +xU +ZJ +ZJ +WP +WP +WP +WP +WP +WP +WP +WE +WE +kU +WE +WE +WE +WE +WP +"} +(22,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WE +IL +Ff +bI +RV +UY +Ow +WP +"} +(23,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WE +PW +RG +rQ +Kw +WB +MA +WP +"} +(24,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WE +WE +WE +WE +WE +WE +WE +WP +"} +(25,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/gecko_cr_wreck.dmm b/maps/offmap_vr/om_ships/gecko_cr_wreck.dmm new file mode 100644 index 0000000000..1e1616251f --- /dev/null +++ b/maps/offmap_vr/om_ships/gecko_cr_wreck.dmm @@ -0,0 +1,4070 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"aF" = ( +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "gecko_cr_blast"; + name = "Blast Shields Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"aK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"aL" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"bA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"bJ" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"bL" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"bN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/marine, +/obj/item/clothing/head/helmet/space/void/refurb/marine, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"cX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"dh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + id_tag = "gecko_cargo_vent" + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"dC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"dE" = ( +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"dO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/weapon/tank/oxygen/yellow, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"dS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"es" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"eA" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"eD" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"eJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24; + start_charge = 0 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"eP" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_cr_cockpit_wreck) +"fe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"fv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"fB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"fL" = ( +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"fP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/remains/human, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/marine, +/obj/item/clothing/head/helmet/space/void/refurb/marine, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"fR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"fX" = ( +/obj/structure/sign/warning/airlock, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"gh" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"gm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"gy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"gA" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"gC" = ( +/obj/machinery/atmospherics/unary/engine/biggest{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"gD" = ( +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"gY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"hC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"hH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"ic" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "gecko_cr_blast"; + name = "Blast Shields Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"if" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"im" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"iJ" = ( +/obj/machinery/light/small, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"iL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"je" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"jg" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/shuttle/gecko_cr_cockpit_wreck) +"jo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"jq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"ju" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 14 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"jT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"kc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/item/weapon/material/shard/shrapnel, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"kd" = ( +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/airlock/hatch{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"kn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"kp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"kx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"kF" = ( +/obj/structure/catwalk, +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"kI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/flicker{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"kJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -14 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"kU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"kX" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"lg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"lh" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"ll" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/gecko_cr_wreck, +/obj/effect/overmap/visitable/ship/landable/gecko_cr_wreck, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"lr" = ( +/obj/machinery/door/blast/regular{ + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"lt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"lw" = ( +/obj/machinery/suit_cycler/vintage/rugged, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"lB" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"lS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"lV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"lY" = ( +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"mS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"mY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"nd" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/shuttle/gecko_cr_engineering_wreck) +"nj" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"nm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"nq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"od" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"oe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"oi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_cockpit_wreck) +"om" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"ov" = ( +/obj/structure/handrail, +/obj/machinery/button/remote/blast_door{ + id = "gecko_cr_blast"; + name = "Blast Shields Control"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"oI" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"oL" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light/flicker, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"pf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"pr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"ps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"pv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"pG" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"pH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_wreck) +"qe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"qh" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_wreck) +"qx" = ( +/obj/machinery/computer/shuttle_control/explore/gecko_cr_wreck, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"qL" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"qO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"rg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 21 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_cockpit_wreck) +"rj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"rr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"ru" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"rv" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"rA" = ( +/obj/structure/railing/grey, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"rL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"rQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"rR" = ( +/obj/structure/catwalk, +/obj/machinery/light/small/flicker{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"sv" = ( +/obj/structure/railing/grey, +/obj/structure/catwalk, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"sL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/structure/railing/grey, +/obj/machinery/light/flicker{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"sV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24; + start_charge = 0 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/meter, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"te" = ( +/obj/machinery/light/small, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"th" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"tD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"tI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"tP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"tV" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/remains/human, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"ue" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"um" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"uv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"uw" = ( +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"vu" = ( +/obj/structure/sign/warning/nosmoking_1, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"vE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_y = 42 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"vI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"vP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/structure/sign/warning/nosmoking_1, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"vX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"wF" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"wG" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"wU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"wV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"xd" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"xf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"xT" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/fuel_port/empty{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"xU" = ( +/turf/template_noop, +/area/shuttle/gecko_cr_wreck) +"ye" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"yE" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/obj/machinery/door/blast/regular{ + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"yR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"yX" = ( +/obj/machinery/atmospherics/binary/pump/fuel, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"zx" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"zE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"zF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"zJ" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/shuttle/gecko_cr_wreck) +"zM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"zO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Aq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"AE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"AK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Bd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"Bf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Bp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Br" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"BC" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/shuttle/gecko_cr_wreck) +"BH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"BN" = ( +/obj/machinery/light/small, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"BP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"BW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Ca" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Ct" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"CW" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_engineering_wreck) +"CZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"Da" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Df" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Di" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Dl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Do" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"DK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"DM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"DR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Ed" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"Ey" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"EK" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/closet/walllocker/emerglocker/south, +/obj/machinery/light/flicker, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"ER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Fe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Ff" = ( +/obj/structure/lattice, +/obj/item/weapon/material/shard, +/turf/template_noop, +/area/shuttle/gecko_cr_engineering_wreck) +"Fx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light/flicker, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"FA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"FE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"FI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"FL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"FN" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"FS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"FV" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/template_noop) +"FX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Gm" = ( +/obj/machinery/shipsensors/weak{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"Gs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"Gx" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"GF" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"GT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Hi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Ho" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Hp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "geck_sh_docking_port;geck_sh_docking_star"; + id_tag = "geck_sh_docking"; + pixel_y = 22 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"HI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"HJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"HK" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Id" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/suit_cycler/vintage/pilot, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Ie" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Ih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Im" = ( +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Iz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"II" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"IM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"Jc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"Jn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"JE" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"JL" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"JV" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Kn" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Kw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"Kz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/light/flicker{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_cockpit_wreck) +"KA" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"KS" = ( +/obj/machinery/door/blast/regular{ + id = "gecko_wreck_cargo_port_fore"; + name = "Port Fore Cargo Hatch" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr_wreck) +"KZ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Ld" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Ln" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_cockpit_wreck) +"Lp" = ( +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Lu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"LU" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/remains, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"LW" = ( +/obj/structure/handrail, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/frame/apc, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"Mf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/handrail, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"MA" = ( +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"MN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Nh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_wreck) +"Nj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Np" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Nr" = ( +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"Nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"NE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"NG" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"NI" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"NK" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/shuttle/gecko_cr_cockpit_wreck) +"NN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"NR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"NZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Ol" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"Or" = ( +/obj/machinery/door/blast/regular{ + id = "gecko_wreck_cargo_port_aft"; + name = "Port Aft Cargo Hatch" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/gecko_cr_wreck) +"Ow" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/shuttle/gecko_cr_engineering_wreck) +"Ox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Oz" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/shuttle/gecko_cr_wreck) +"OA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"OH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"ON" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/catwalk, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"OP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"OU" = ( +/obj/item/weapon/material/shard, +/turf/template_noop, +/area/template_noop) +"OX" = ( +/obj/structure/girder, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"OZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "geck_sh_docking_port"; + name = "Port AIrlock Control"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Pc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Pf" = ( +/obj/structure/girder, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Pl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Pn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Pv" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_wreck) +"Px" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Pz" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"PA" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"PD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"PI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"PJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"PR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"PW" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/shuttle/gecko_cr_engineering_wreck) +"Ql" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Qu" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"QC" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "gecko_wreck_cargo_port_aft"; + name = "Port Aft Cargo Hatch Control"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"QO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"QX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Rd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Rg" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/light/small/flicker{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Rh" = ( +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Ri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Rp" = ( +/obj/structure/railing/grey, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"RB" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_wreck) +"RG" = ( +/turf/template_noop, +/area/shuttle/gecko_cr_engineering_wreck) +"RT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"RV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"Sa" = ( +/obj/machinery/suit_cycler/vintage, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Su" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_cr_engineering_wreck) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/handrail, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Td" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Ti" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_wreck) +"Tl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Tv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Tw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 27 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"Tx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/airlock_sensor{ + pixel_y = 21 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"TE" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"TM" = ( +/obj/structure/railing/grey, +/obj/structure/catwalk, +/obj/machinery/light/flicker{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"UF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"UK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"UY" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Va" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Ve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_wreck) +"Vh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Vi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Vl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"Vs" = ( +/obj/structure/cable, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/power/port_gen/pacman/mrs{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"VJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"VW" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"VX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Wo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"Wr" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_cr_wreck) +"Wv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Wz" = ( +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"WB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"WE" = ( +/obj/structure/girder, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"WN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"WZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_engineering_wreck) +"Xr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"Xs" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"XJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"XU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_cr_cockpit_wreck) +"XX" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"Yd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light/flicker{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_engineering_wreck) +"Yj" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "geck_sh_docking_star"; + name = "Starboard Airlock Control"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor{ + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/gecko_cr_cockpit_wreck) +"Yx" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"YG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_cr_cockpit_wreck) +"YV" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"Zb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Zg" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "gecko_wreck_cargo_port_fore"; + name = "Port Fore Cargo Hatch Control"; + pixel_x = -24 + }, +/obj/machinery/light/flicker{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Zn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Zo" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light/small/flicker{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_cockpit_wreck) +"Zp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/gecko_cr_wreck) +"Zq" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/hatch, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"Zs" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/sign/warning/engineering_access{ + pixel_y = -32 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) +"ZA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gecko_wreck_cr_blast"; + name = "Blast Shields" + }, +/obj/structure/window/reinforced, +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/shuttle/gecko_cr_cockpit_wreck) +"ZJ" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_cr_wreck) +"ZK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_engineering_wreck) +"ZL" = ( +/turf/simulated/floor/airless, +/area/shuttle/gecko_cr_wreck) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +FV +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +FV +WP +WP +WP +WP +RG +RG +Ff +Ow +Ff +Ow +RG +FV +"} +(3,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +FV +WP +WP +FV +WP +WP +FV +RG +Ow +Zb +rQ +PA +UY +Ow +WP +"} +(4,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +FV +WP +WP +FV +WP +WP +Ow +UY +ER +rQ +VX +WB +MA +WP +"} +(5,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ZJ +ZJ +KS +KS +KS +ZJ +Or +Or +Or +ZJ +ZJ +WP +WP +FV +WP +WP +WP +WP +WE +Su +kU +Su +Su +Su +Su +WP +"} +(6,1,1) = {" +WP +WP +WP +WP +WP +WP +eP +eP +eP +eP +eP +eP +eP +yE +lr +ZJ +Zg +dh +dh +dh +Ie +dh +dh +dh +QC +ZJ +WE +Ow +Ow +nd +WE +Su +WP +WP +Su +UF +Su +Px +WP +WP +WP +"} +(7,1,1) = {" +WP +WP +WP +eP +eP +eP +eP +Nr +GF +Nr +te +eP +OZ +rj +BH +ZJ +zF +AK +jo +wU +Wz +pv +jo +OP +vX +Pv +Lp +rR +kF +Lp +Lp +Su +WE +WE +Su +NG +Su +Su +Ow +WP +WP +"} +(8,1,1) = {" +WP +eP +eP +eP +Nr +GF +RT +lg +CZ +Ol +Ol +qL +Tx +kn +Yx +Ve +sV +WZ +OA +nq +VJ +nq +Pn +NZ +Va +Wr +CW +CW +WE +CW +sv +Wv +QX +gh +NI +aL +Su +Su +Su +WP +WP +"} +(9,1,1) = {" +WP +Gm +eP +fB +ju +lB +qL +Br +qL +cq +Bd +kx +kx +PD +fX +Nh +pf +Vl +Vi +Np +Wz +QO +Vi +vI +Tl +Wr +Qu +wF +NN +CW +Td +ZK +zO +Ck +Lp +fR +RV +um +ue +WP +WP +"} +(10,1,1) = {" +WP +eP +qL +qL +qL +qL +qL +Mf +zE +Gs +fe +bJ +dS +jT +kI +qh +Rp +PJ +Vi +Tv +Gx +Zp +Vi +Hi +TE +Wr +Yd +Dl +WW +Xs +om +Vh +bY +MA +Wj +rQ +Kw +FS +fL +WP +WP +"} +(11,1,1) = {" +WP +WP +qL +wG +aF +Rh +qL +uv +Tw +bL +cX +qL +Hp +tP +FX +Ti +rA +gy +Vi +dE +gA +Wz +lS +DK +EK +Wr +ov +Pc +Wo +CW +sL +xd +xd +MA +rr +BN +Su +Su +Su +Su +WP +"} +(12,1,1) = {" +WP +WP +BP +JE +IM +oL +qL +qL +qL +qL +qL +qL +vE +fP +YG +Ti +aK +tI +lS +dC +Gx +II +nm +Ox +Zs +Wr +FA +Pc +PI +je +Ho +gY +XJ +WN +Im +bI +RV +um +fL +gC +WP +"} +(13,1,1) = {" +WP +WP +ZA +qx +JL +AE +bJ +eJ +Vr +OH +FN +KA +qe +if +Ri +pH +SV +Pz +xf +im +Bp +hC +xf +Da +iL +RB +Ld +LU +UK +Xn +Nz +Vs +BW +yX +KZ +rQ +Kw +rL +fL +fL +WP +"} +(14,1,1) = {" +WP +WP +BP +eD +ru +bA +qL +qL +qL +qL +qL +qL +bN +lt +Ql +Ti +XX +Pl +lS +oe +Gx +Lu +Vi +Fe +TE +Pf +ai +Do +dO +vu +Lp +DR +FL +hH +od +Dc +vP +FS +fL +fL +WP +"} +(15,1,1) = {" +WP +WP +qL +wG +ic +Id +qL +Sa +lV +wV +Fx +qL +FE +tP +Di +Ti +TM +gy +Vi +dE +th +nj +Vi +DK +ON +Wr +LW +Do +oI +CW +Bf +qO +qO +MA +ps +lh +Su +Su +Su +Su +WP +"} +(16,1,1) = {" +WP +eP +qL +qL +qL +qL +qL +HJ +Iz +XU +mY +bJ +Ct +NE +Jn +qh +gD +Ca +kc +Np +Gx +QO +kc +mS +TE +Wr +Yd +DM +VW +Xs +Rd +Vh +GT +MA +Wj +jq +RV +um +ue +WP +WP +"} +(17,1,1) = {" +WP +uw +eP +kX +kJ +tV +qL +Br +qL +Jc +Ln +kx +kx +zx +Ey +Wr +yR +Zn +nm +Tv +Wz +Nj +nm +kp +Tl +Wr +xT +lw +Xr +CW +rv +NR +Lp +zM +Lp +Dc +Kw +FS +fL +WP +WP +"} +(18,1,1) = {" +WP +NK +eP +eP +uw +uw +Zo +PR +HI +tD +tD +qL +rg +Ed +Kz +Wr +Wz +Aq +es +Wz +ZL +Wz +nm +fv +JV +Wr +CW +CW +CW +CW +sv +Kn +Kn +Rg +ye +pG +Su +Su +Su +WP +WP +"} +(19,1,1) = {" +WP +WP +WP +OX +NK +jg +eP +uw +NK +uw +iJ +eP +Yj +ll +oi +ZJ +HK +Df +ZL +Ih +ZL +ZL +FI +Ih +eA +Pv +Lp +pr +kF +Zq +gm +Su +Su +Su +Su +NG +Su +Ow +Ow +WP +WP +"} +(20,1,1) = {" +WP +WP +FV +WP +FV +WP +OX +NK +NK +jg +OX +eP +eP +kd +YV +ZJ +lY +ZL +zJ +ZL +ZL +zJ +zJ +zJ +ZL +ZJ +Su +WE +nd +Su +Su +Su +WP +WP +Ow +MN +MA +Ff +WP +WP +FV +"} +(21,1,1) = {" +WP +WP +WP +FV +WP +FV +WP +WP +FV +WP +FV +WP +WP +WP +WP +Pf +zJ +zJ +xU +zJ +Oz +xU +xU +Oz +BC +Pf +WP +WP +WP +WP +WP +WP +WP +Ff +Ow +MA +Ow +Ow +RG +RG +WP +"} +(22,1,1) = {" +WP +WP +WP +WP +FV +WP +WP +FV +FV +WP +WP +FV +WP +OU +FV +WP +FV +WP +WP +WP +WP +WP +FV +WP +WP +WP +WP +WP +FV +WP +FV +WP +WP +Ow +RG +Ff +RG +Ow +Ff +RG +WP +"} +(23,1,1) = {" +WP +WP +FV +WP +WP +WP +FV +WP +WP +WP +WP +WP +FV +WP +OU +WP +WP +WP +WP +FV +WP +WP +WP +WP +WP +WP +FV +WP +WP +FV +WP +WP +WP +RG +PW +RG +RG +RG +RG +RG +WP +"} +(24,1,1) = {" +WP +WP +WP +WP +FV +WP +WP +FV +WP +FV +WP +FV +WP +WP +WP +WP +FV +FV +WP +WP +WP +FV +WP +WP +WP +WP +WP +WP +FV +WP +WP +WP +FV +RG +RG +RG +PW +RG +RG +PW +WP +"} +(25,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +FV +WP +WP +WP +WP +WP +WP +FV +WP +WP +WP +FV +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/gecko_sh.dmm b/maps/offmap_vr/om_ships/gecko_sh.dmm new file mode 100644 index 0000000000..c50673fe9a --- /dev/null +++ b/maps/offmap_vr/om_ships/gecko_sh.dmm @@ -0,0 +1,3794 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"aF" = ( +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "gecko_sh_blast"; + name = "Blast Shields Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"aK" = ( +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"aL" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"aY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"bw" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"bA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"bL" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"bN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"bP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"cg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ci" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"cR" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"cX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"cY" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"dm" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"dO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/suit/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/item/clothing/head/helmet/space/void/refurb/engineering, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/einstein, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"dS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"dY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"ea" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/hatch, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ec" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"ey" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/sign/warning/nosmoking_1, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"eD" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"eJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"eP" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"fe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"fB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"fD" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"fP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"fR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"fX" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"gh" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"gC" = ( +/obj/machinery/atmospherics/unary/engine/biggest{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"gT" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"hC" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"hH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ic" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "gecko_sh_blast"; + name = "Blast Shields Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"if" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"je" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"jo" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh_engineering) +"jp" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"jq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"jT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"kd" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"kn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"kx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"kI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"kJ" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"kU" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"lh" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ll" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/gecko_sh, +/obj/effect/overmap/visitable/ship/landable/gecko_sh, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"lr" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"lt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"lw" = ( +/obj/machinery/suit_cycler/vintage/rugged, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"lB" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 14 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"lC" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"lV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"me" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"mf" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"mA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"mY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"nE" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"oe" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"oi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"om" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"oL" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"pf" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"po" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"ps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"pG" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"pH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"qh" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"qx" = ( +/obj/machinery/computer/shuttle_control/explore/gecko_sh, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"qO" = ( +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"rg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 21 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"rj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"rr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ru" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"rv" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"rA" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"rE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/sign/warning/nosmoking_1, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"rL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"rQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"rU" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"rY" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"sB" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"sL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"sS" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"te" = ( +/obj/machinery/light/small, +/obj/structure/closet/crate{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"tD" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"tM" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"tP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"tV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -14 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"ue" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ug" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"um" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"uv" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"uw" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"ux" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"uR" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"vE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_y = 42 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"wF" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"wG" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"wH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"wQ" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"wV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"xc" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"xd" = ( +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"xB" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"xO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"xT" = ( +/obj/item/weapon/tank/phoron/pressurized, +/obj/item/weapon/tank/phoron/pressurized, +/obj/item/weapon/tank/phoron/pressurized, +/obj/structure/fuel_port/heavy{ + pixel_y = 28 + }, +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"xU" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"ye" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"yy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"yE" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"yR" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"yT" = ( +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"yX" = ( +/obj/machinery/atmospherics/binary/pump/fuel, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"zx" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"zE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"zF" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"zM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"zO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"zT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"AE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"Bd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"Bf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Bp" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Br" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"Bz" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"BD" = ( +/obj/structure/handrail, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"BH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"BL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"BN" = ( +/obj/machinery/light/small, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"BP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_cockpit) +"BW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Ca" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Ct" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"Cx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"CZ" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Da" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"Dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Df" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"Di" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Dl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"Do" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"Dy" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"DM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"Ed" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"En" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Ez" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"ER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"ES" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"Ff" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Fp" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Fx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb, +/obj/item/clothing/head/helmet/space/void/refurb, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"FA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "gecko_sh_blast"; + name = "Blast Shields Control"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"FE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"FL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"FN" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"FS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"FX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Gm" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_sh) +"Gs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"GF" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"GT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Ho" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Hp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"HJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"Id" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/suit_cycler/vintage/pilot, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"Im" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Iz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"IL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"IM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"IQ" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_sh_engineering) +"Jc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"Jn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"JE" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"Kn" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Kz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"KX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"KZ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Lc" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"Lf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Ln" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"Lp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"LR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"LU" = ( +/obj/structure/bed/chair/bay/comfy, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"Mf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/handrail, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"MA" = ( +/turf/simulated/floor/airless, +/area/shuttle/gecko_sh_engineering) +"MO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"MR" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Nr" = ( +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"Nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"NE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"NI" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"NM" = ( +/obj/structure/handrail, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"NN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"NR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Ol" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"Or" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"Ow" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_sh_engineering) +"OH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"ON" = ( +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"OZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "geck_sh_docking_port"; + name = "Port AIrlock Control"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Pc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"Px" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/gecko_sh_engineering) +"Pz" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"PD" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"PI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"PJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"PW" = ( +/obj/structure/handrail, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Ql" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Qn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Qu" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"Qx" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"QO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Rd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Rg" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Rh" = ( +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/pilot, +/obj/item/clothing/head/helmet/space/void/refurb/pilot, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/void/refurb/pilot, +/obj/item/clothing/head/helmet/space/void/refurb/pilot, +/obj/structure/closet/crate/aether{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_cockpit) +"Ri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "geck_sh_docking_port;geck_sh_docking_star"; + dir = 1; + id_tag = "geck_sh_docking"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Rp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"RB" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"RG" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"RT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"RV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Sa" = ( +/obj/machinery/suit_cycler/vintage, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/modular_computer/telescreen/preset{ + pixel_y = 23 + }, +/obj/structure/handrail, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"SZ" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Td" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Tj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Tw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 27 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Tx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/airlock_sensor{ + pixel_y = 21 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"TE" = ( +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"TM" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"UF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"UK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"UY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_sh_engineering) +"Vh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_cockpit) +"Vs" = ( +/obj/structure/cable, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/power/port_gen/pacman/mrs{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"VT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"VW" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"Wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Wr" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh) +"Wv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Wz" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"WB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/shuttle/gecko_sh_engineering) +"WN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh_engineering) +"Xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Xr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/stack/material/tritium{ + amount = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"Xs" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gecko_sh_blast"; + name = "Blast Shields"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"XJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"XU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/gecko_sh) +"XX" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Yd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh_engineering) +"Yj" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump, +/obj/structure/handrail, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "geck_sh_docking_star"; + name = "Starboard Airlock Control"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Yq" = ( +/turf/simulated/wall/rshull, +/area/shuttle/gecko_sh_cockpit) +"Yx" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"YG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/tank/air, +/obj/item/weapon/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/crate/aether{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"YK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"YO" = ( +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Zb" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) +"Zo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh) +"Zp" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"Zs" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/sign/warning/engineering_access{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/gecko_sh) +"ZJ" = ( +/turf/simulated/wall/shull, +/area/shuttle/gecko_sh) +"ZK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/gecko_sh_engineering) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +IQ +IQ +IQ +IQ +IQ +IQ +IQ +WP +"} +(3,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +IQ +NM +Zb +bI +RV +UY +Ow +WP +"} +(4,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +IQ +IL +ER +rQ +aY +WB +MA +WP +"} +(5,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ZJ +ZJ +ZJ +Df +Df +ZJ +Df +Df +IQ +IQ +IQ +IQ +IQ +WP +WP +WP +WP +WP +IQ +IQ +kU +IQ +IQ +IQ +IQ +WP +"} +(6,1,1) = {" +WP +WP +WP +WP +WP +WP +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +yE +lr +ZJ +bw +sS +Wz +Wz +En +Wz +Wz +tM +Dy +mA +Dy +IQ +IQ +IQ +IQ +IQ +WP +WP +IQ +UF +IQ +Px +WP +WP +WP +"} +(7,1,1) = {" +WP +WP +WP +ZJ +ZJ +ZJ +ZJ +Nr +GF +Nr +te +ZJ +OZ +rj +BH +ZJ +rY +Wr +Df +Df +Wr +Df +Df +jo +jo +jo +Dy +nE +Dy +ea +Qn +IQ +IQ +IQ +IQ +kJ +IQ +IQ +IQ +WP +WP +"} +(8,1,1) = {" +WP +ZJ +ZJ +ZJ +Nr +GF +RT +LR +Nr +Ol +Ol +Wr +Tx +kn +Yx +Wr +ci +wQ +gT +gT +MR +gT +lC +Tj +SZ +jo +jo +jo +jo +jo +yT +Wv +Wv +gh +NI +aL +IQ +IQ +IQ +WP +WP +"} +(9,1,1) = {" +WP +Gm +ZJ +fB +lB +uR +Wr +Br +Wr +cq +Bd +kx +kx +PD +fX +Wr +pf +cR +gT +uv +gT +Fp +lC +Wz +TE +jo +Qu +wF +NN +jo +Td +ZK +zO +Ck +ut +fR +RV +um +ue +WP +WP +"} +(10,1,1) = {" +WP +ZJ +Wr +Wr +Wr +Wr +Wr +Mf +zE +Gs +fe +eP +dS +jT +kI +qh +Rp +PJ +gT +jp +gT +dm +lC +ug +TE +jo +Yd +Dl +WW +Xs +om +Vh +bY +YO +Wj +cg +aY +FS +YO +WP +WP +"} +(11,1,1) = {" +WP +WP +Yq +wG +aF +Rh +Wr +cY +Tw +bL +cX +Wr +Hp +tP +FX +Wr +rA +me +mf +me +mf +po +mf +po +ON +jo +xO +Pc +Ez +jo +sL +xd +xd +YO +rr +BN +IQ +IQ +IQ +IQ +WP +"} +(12,1,1) = {" +WP +WP +BP +JE +IM +oL +Wr +Wr +Wr +Wr +Wr +Wr +vE +fP +YG +Wr +aK +zT +gT +jp +gT +dm +lC +po +Zs +jo +FA +Pc +PI +je +Ho +BL +XJ +WN +Im +bI +RV +um +YO +gC +WP +"} +(13,1,1) = {" +WP +WP +BP +qx +Qx +AE +Lc +eJ +Vr +OH +FN +xc +bP +if +Ri +pH +SV +Pz +Bp +xU +Bp +hC +oe +Da +VT +RB +MO +LU +UK +Xn +Nz +Vs +BW +yX +KZ +rQ +aY +rL +YO +YO +WP +"} +(14,1,1) = {" +WP +WP +BP +eD +ru +bA +Wr +Wr +Wr +Wr +Wr +Wr +bN +lt +Ql +Wr +XX +yy +gT +jp +gT +dm +lC +po +wH +jo +ai +Do +dO +ey +KX +Lf +FL +hH +Im +Dc +rE +FS +YO +YO +WP +"} +(15,1,1) = {" +WP +WP +Yq +wG +ic +Id +Wr +Sa +lV +wV +Fx +Wr +FE +tP +Di +Wr +TM +Cx +mf +me +mf +po +mf +po +ON +jo +BD +Do +ES +jo +Bf +qO +qO +YO +ps +lh +IQ +IQ +IQ +IQ +WP +"} +(16,1,1) = {" +WP +ZJ +Wr +Wr +Wr +Wr +Wr +HJ +Iz +XU +mY +eP +Ct +NE +Jn +qh +Rp +Ca +gT +jp +gT +dm +lC +QO +TE +jo +Yd +DM +VW +Xs +Rd +Vh +GT +YO +Wj +jq +RV +um +ue +WP +WP +"} +(17,1,1) = {" +WP +Gm +ZJ +fB +tV +xB +Wr +Br +Wr +Jc +Ln +kx +kx +zx +fX +Wr +yR +dY +gT +CZ +gT +rU +lC +Wz +TE +jo +xT +lw +Xr +jo +rv +NR +zO +zM +Lp +Dc +aY +FS +YO +WP +WP +"} +(18,1,1) = {" +WP +ZJ +ZJ +ZJ +Nr +uw +Zo +Or +Nr +tD +tD +Wr +rg +Ed +Kz +Wr +fD +zF +gT +gT +YK +gT +lC +ec +Bz +jo +jo +jo +jo +jo +yT +Kn +Kn +Rg +ye +pG +IQ +IQ +IQ +WP +WP +"} +(19,1,1) = {" +WP +WP +WP +ZJ +ZJ +ZJ +ZJ +Nr +uw +Nr +te +ZJ +Yj +ll +oi +ZJ +rY +Wr +Df +Df +Wr +Df +Df +jo +jo +jo +Dy +ux +Dy +ea +mA +IQ +IQ +IQ +IQ +kJ +IQ +IQ +IQ +WP +WP +"} +(20,1,1) = {" +WP +WP +WP +WP +WP +WP +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +kd +lr +ZJ +sB +sS +Wz +Wz +Zp +Wz +Wz +tM +Dy +Qn +Dy +IQ +IQ +IQ +IQ +IQ +WP +WP +IQ +UF +IQ +Px +WP +WP +WP +"} +(21,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ZJ +ZJ +ZJ +Df +Df +ZJ +Df +Df +IQ +IQ +IQ +IQ +IQ +WP +WP +WP +WP +WP +IQ +IQ +kU +IQ +IQ +IQ +IQ +WP +"} +(22,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +IQ +IL +Ff +bI +RV +UY +Ow +WP +"} +(23,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +IQ +PW +RG +rQ +aY +WB +MA +WP +"} +(24,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +IQ +IQ +IQ +IQ +IQ +IQ +IQ +WP +"} +(25,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/geckos.dm b/maps/offmap_vr/om_ships/geckos.dm new file mode 100644 index 0000000000..adc7545e8d --- /dev/null +++ b/maps/offmap_vr/om_ships/geckos.dm @@ -0,0 +1,179 @@ +// Compile in the map for CI testing if we're testing compileability of all the maps +#if MAP_TEST +#include "gecko_sh.dmm" +#include "gecko_cr.dmm" +#endif + +// Map template for spawning the shuttle +/datum/map_template/om_ships/gecko_stationhopper + name = "OM Ship - Gecko Stationhopper (new Z)" + desc = "A medium personnel transport shuttle." + mappath = 'gecko_sh.dmm' + annihilate = TRUE + +/datum/map_template/om_ships/gecko_cargohauler + name = "OM Ship - Gecko Cargo Hauler (new Z)" + desc = "A medium supply transport shuttle." + mappath = 'gecko_cr.dmm' + annihilate = TRUE + +/datum/map_template/om_ships/gecko_cargohauler_wreck + name = "OM Ship - Wrecked Gecko Cargo Hauler (new Z)" + desc = "A wrecked medium supply transport shuttle." + mappath = 'gecko_cr_wreck.dmm' + annihilate = TRUE + +// The shuttle's area(s) +/area/shuttle/gecko_sh + name = "\improper Gecko Stationhopper" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_sh_engineering + name = "\improper Gecko Stationhopper Engineering" + icon_state = "yellow" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_sh_cockpit + name = "\improper Gecko Stationhopper Cockpit" + icon_state = "purple" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_cr + name = "\improper Gecko Cargo Hauler Bay" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_cr_engineering + name = "\improper Gecko Cargo Hauler Aft" + icon_state = "yellow" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_cr_cockpit + name = "\improper Gecko Cargo Hauler Fore" + icon_state = "purple" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_cr_wreck + name = "\improper Wrecked Gecko Cargo Hauler Bay" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_cr_engineering_wreck + name = "\improper Wrecked Gecko Cargo Hauler Aft" + icon_state = "yellow" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/gecko_cr_cockpit_wreck + name = "\improper Wrecked Gecko Cargo Hauler Fore" + icon_state = "purple" + requires_power = 1 + has_gravity = 0 + +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/gecko_sh + name = "short jump console" + shuttle_tag = "Gecko Stationhopper" + req_one_access = list() + +/obj/machinery/computer/shuttle_control/explore/gecko_cr + name = "short jump console" + shuttle_tag = "Gecko Cargo Hauler" + req_one_access = list() + +/obj/machinery/computer/shuttle_control/explore/gecko_cr_wreck + name = "short jump console" + shuttle_tag = "Wrecked Gecko Cargo Hauler" + req_one_access = list() + +// The 'shuttle' +/datum/shuttle/autodock/overmap/gecko_sh + name = "Gecko Stationhopper" + current_location = "omship_spawn_gecko_sh" + docking_controller_tag = "geck_sh_docking" + shuttle_area = list(/area/shuttle/gecko_sh,/area/shuttle/gecko_sh_cockpit,/area/shuttle/gecko_sh_engineering) + defer_initialisation = TRUE //We're not loaded until an admin does it + fuel_consumption = 7.5 + ceiling_type = /turf/simulated/floor/reinforced/airless + +/datum/shuttle/autodock/overmap/gecko_cr + name = "Gecko Cargo Hauler" + current_location = "omship_spawn_gecko_cr" + docking_controller_tag = "geck_cr_docking" + shuttle_area = list(/area/shuttle/gecko_cr,/area/shuttle/gecko_cr_cockpit,/area/shuttle/gecko_cr_engineering) + defer_initialisation = TRUE //We're not loaded until an admin does it + fuel_consumption = 7.5 + ceiling_type = /turf/simulated/floor/reinforced/airless + +/datum/shuttle/autodock/overmap/gecko_cr_wreck + name = "Wrecked Gecko Cargo Hauler" + current_location = "omship_spawn_gecko_cr_wreck" + docking_controller_tag = "geck_cr_wreck_docking" + shuttle_area = list(/area/shuttle/gecko_cr_wreck,/area/shuttle/gecko_cr_cockpit_wreck,/area/shuttle/gecko_cr_engineering_wreck) + defer_initialisation = TRUE //We're not loaded until an admin does it + fuel_consumption = 7.5 + ceiling_type = /turf/simulated/floor/reinforced/airless + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/gecko_sh + name = "ITV Gecko I" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_gecko_sh" + shuttle_type = /datum/shuttle/autodock/overmap/gecko_sh + +/obj/effect/shuttle_landmark/shuttle_initializer/gecko_cr + name = "ITV Gecko II" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_gecko_cr" + shuttle_type = /datum/shuttle/autodock/overmap/gecko_cr + +/obj/effect/shuttle_landmark/shuttle_initializer/gecko_cr_wreck + name = "ITV Gecko III" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_gecko_cr_wreck" + shuttle_type = /datum/shuttle/autodock/overmap/gecko_cr_wreck + +// The 'ship' +/obj/effect/overmap/visitable/ship/landable/gecko_sh + scanner_name = "Gecko-class Transport" + scanner_desc = @{"[i]Registration[/i]: ITV Sticky Fingers +[i]Class[/i]: Medium Shuttle +[i]Transponder[/i]: Transmitting (CIV), non-hostile +[b]Notice[/b]: Medium personnel transport vessel"} + color = "#3366FF" + vessel_mass = 6500 + vessel_size = SHIP_SIZE_LARGE + shuttle = "Gecko Stationhopper" + +/obj/effect/overmap/visitable/ship/landable/gecko_cr + scanner_name = "Gecko-class Transport" + scanner_desc = @{"[i]Registration[/i]: ITV Sticky Business +[i]Class[/i]: Medium Shuttle +[i]Transponder[/i]: Transmitting (CIV), non-hostile +[b]Notice[/b]: Medium cargo transport vessel"} + color = "#3366FF" + vessel_mass = 6500 + vessel_size = SHIP_SIZE_LARGE + shuttle = "Gecko Cargo Hauler" + +/obj/effect/overmap/visitable/ship/landable/gecko_cr_wreck + scanner_name = "Wrecked Gecko-class Transport" + scanner_desc = @{"[i]Registration[/i]: ITV Sticky Situation +[i]Class[/i]: Medium Shuttle +[i]Transponder[/i]: Weakly transmitting (CIV), non-hostile +[b]Notice[/b]: Medium cargo transport vessel, significant damage inflicted"} + color = "#3366FF" + vessel_mass = 6500 + vessel_size = SHIP_SIZE_LARGE + shuttle = "Wrecked Gecko Cargo Hauler" \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/mackerel_hc.dmm b/maps/offmap_vr/om_ships/mackerel_hc.dmm new file mode 100644 index 0000000000..63ff651cda --- /dev/null +++ b/maps/offmap_vr/om_ships/mackerel_hc.dmm @@ -0,0 +1,1454 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"az" = ( +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"aF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"bh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "mackerel_hc_docking_port;mackerel_hc_docking_star"; + dir = 1; + id_tag = "mackerel_hc_docking"; + pixel_y = -22 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"bw" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"cv" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"cD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"dG" = ( +/obj/structure/grille, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"dJ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"fD" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"gv" = ( +/obj/machinery/computer/shuttle_control/explore/mackerel_hc, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"gU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"hu" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"jp" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"ju" = ( +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"jx" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"ka" = ( +/turf/simulated/wall/shull, +/area/shuttle/mackerel_hc) +"kU" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"lT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"mf" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"mi" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"mw" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"nD" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"oq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"pZ" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"rc" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"rm" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"rr" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"sg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"sl" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"tk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"tL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"tV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_hc) +"ue" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"ug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"um" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"uR" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"we" = ( +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"wv" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"wF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"xd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"xB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"yH" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"zq" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"zY" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"AA" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"BN" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"BP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/fuel_port{ + pixel_y = 26 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"Da" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"Dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"Dh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"EK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"EL" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"FL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_hc, +/obj/effect/overmap/visitable/ship/landable/mackerel_hc, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_hc_docking_star"; + name = "Starboard Airlock Control"; + pixel_x = -8; + pixel_y = 22 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 7; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"FS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"Gm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westright, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"GF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"GK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"Jq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"JG" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"JP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"JQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"Kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"Ko" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"LU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"Mv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"Nr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_hc) +"NN" = ( +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_hc) +"OR" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"Pc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"PL" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_hc_docking_port"; + name = "Port Airlock Control"; + pixel_x = 8; + pixel_y = 22 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -8; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"PY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"Qz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"Rv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"RT" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"RV" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc) +"So" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"Sp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westright, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"SU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"TG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"UY" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"Wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/handrail, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"Wv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westright, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"WI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_hc) +"WW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"Xn" = ( +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc) +"Xs" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"YD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"Zb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc) +"Zp" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"ZJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) +"ZK" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc) +"ZZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(3,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Zb +bI +mi +UY +WP +WP +"} +(4,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +jx +dJ +mi +UY +WP +WP +"} +(5,1,1) = {" +WP +WP +WP +WP +WP +ka +dG +dG +ka +WP +ka +dG +dG +ka +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(6,1,1) = {" +WP +WP +WP +WP +WP +az +WP +WP +az +WP +az +WP +WP +az +WP +WP +WP +WP +WP +ka +tV +jx +WP +WP +WP +"} +(7,1,1) = {" +WP +ka +az +az +az +ka +ka +ka +ka +ka +ka +ka +ka +ka +ka +mw +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(8,1,1) = {" +WP +az +WP +aq +ka +ka +fD +ju +EL +ue +EL +zq +JG +RT +WS +PL +ka +rm +AA +tk +JQ +ka +WP +WP +WP +"} +(9,1,1) = {" +WP +ka +az +ka +ka +Xn +Xn +Xn +NN +Xn +Xn +wF +NN +Xn +Xn +ZK +rc +Xn +NN +Xn +tV +ka +ka +ka +WP +"} +(10,1,1) = {" +WP +WP +WP +aF +cv +Zp +cD +ug +JP +um +Dc +Dl +WW +Xs +OR +Dh +bY +Kb +Wj +ug +BP +FS +we +ka +WP +"} +(11,1,1) = {" +WP +WP +WP +aF +gv +So +mf +uR +EK +So +So +GK +Pc +xd +xd +xd +YD +lT +rr +BN +sg +ZJ +nD +sl +WP +"} +(12,1,1) = {" +WP +WP +WP +aF +bw +Ko +gU +xB +oq +Sp +Gm +Jq +PI +Wv +TG +Mv +Sp +tL +bh +PY +SU +ZZ +wv +ka +WP +"} +(13,1,1) = {" +WP +ka +az +ka +ka +Xn +Xn +Da +NN +Xn +Xn +LU +Nr +Xn +Xn +ZK +rc +Xn +NN +Xn +tV +ka +ka +ka +WP +"} +(14,1,1) = {" +WP +az +WP +WP +ka +ka +jp +kU +pZ +yH +pZ +GF +yH +RV +WS +FL +ka +rm +hu +Rv +JQ +ka +WP +WP +WP +"} +(15,1,1) = {" +WP +ka +az +az +az +ka +ka +ka +ka +ka +ka +ka +ka +ka +ka +zY +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(16,1,1) = {" +WP +WP +WP +WP +WP +az +WP +WP +az +WP +az +WP +WP +az +WP +WP +WP +WP +WP +ka +tV +jx +WP +WP +WP +"} +(17,1,1) = {" +WP +WP +WP +WP +WP +ka +dG +dG +ka +WP +ka +dG +dG +ka +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(18,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +jx +dJ +mi +UY +WP +WP +"} +(19,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +WI +Qz +mi +UY +WP +WP +"} +(20,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(21,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/mackerel_hc_skel.dmm b/maps/offmap_vr/om_ships/mackerel_hc_skel.dmm new file mode 100644 index 0000000000..83a9170b7a --- /dev/null +++ b/maps/offmap_vr/om_ships/mackerel_hc_skel.dmm @@ -0,0 +1,1652 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/machinery/door/blast/regular{ + id = "cargo_hatch_port"; + name = "Port Cargo Hatch" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"az" = ( +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"aF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel_cockpit) +"bw" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"bC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"cg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel_eng) +"cv" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"cD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"cQ" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"dG" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"eh" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"fD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"fG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"fI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"fL" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"gv" = ( +/obj/machinery/computer/shuttle_control/explore/mackerel_hc_skel, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"gU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"iP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"jp" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"ju" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"ka" = ( +/turf/simulated/wall/shull, +/area/shuttle/mackerel_hc_skel) +"kU" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"lu" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"lT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"mf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"mi" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"ms" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc_skel) +"mw" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"mO" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + id_tag = "spartan_regulator" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"nD" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"nP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"nZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"oq" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "cargo_hatch_star"; + name = "Starboard Cargo Hatch"; + pixel_x = 24; + pixel_y = -9 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"pZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"rf" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"rr" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"rE" = ( +/obj/machinery/door/blast/regular{ + id = "cargo_hatch_star"; + name = "Starboard Cargo Hatch" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"sg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"sA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/shuttle/engine/heater, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"sZ" = ( +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc_skel) +"tT" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"tV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_hc_skel) +"ue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"ug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel_cockpit) +"ul" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"um" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"ut" = ( +/obj/machinery/firealarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"uR" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"we" = ( +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"wF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"wH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"xd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"xB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel_cockpit) +"xG" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel_eng) +"yH" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"zq" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"zt" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"BN" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_eng) +"BP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"Da" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc_skel) +"Dc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Ds" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"DN" = ( +/obj/structure/fuel_port{ + pixel_y = -26 + }, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/obj/structure/closet/crate/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"DO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"ED" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"EK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"EL" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "cargo_hatch_port"; + name = "Port Cargo Hatch"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"EW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"FH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"FL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_hc_skel, +/obj/effect/overmap/visitable/ship/landable/mackerel_hc_skel, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_hc_skel_docking_star"; + name = "Starboard Airlock Control"; + pixel_x = -8; + pixel_y = 22 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 7; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"FS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"FY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"Gm" = ( +/turf/simulated/wall/shull, +/area/shuttle/mackerel_hc_skel_eng) +"Gn" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"GF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"GI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel_eng) +"GK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"Jq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"JG" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"JP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/firealarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"JW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"KZ" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "mackerel_hc_skel_docking_port;mackerel_hc_skel_docking_star"; + dir = 1; + id_tag = "mackerel_hc_skel_docking"; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_hc_skel) +"LU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Nr" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"NN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"NY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_hc_skel) +"Pc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"Pu" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + id_tag = "spartan_regulator" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"PL" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_hc_skel_docking_port"; + name = "Port Airlock Control"; + pixel_x = 8; + pixel_y = 22 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -8; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"Qu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Rn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"RB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"RT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"RV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"So" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) +"Td" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_hc_skel) +"TB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"UY" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"Wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"Wr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Wv" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel) +"WW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Xn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Xs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"XF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/mackerel_hc_skel) +"Zb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_hc_skel) +"Zp" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel_cockpit) +"ZJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_hc_skel_eng) +"ZK" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_hc_skel) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(3,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Zb +bI +mi +UY +WP +WP +"} +(4,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Gn +nZ +mi +UY +WP +WP +"} +(5,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(6,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +tV +Gn +WP +WP +WP +"} +(7,1,1) = {" +WP +ka +az +az +az +ka +ka +ka +ka +aq +aq +ka +ka +ka +ka +mw +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(8,1,1) = {" +WP +az +WP +bw +ka +ka +fD +ju +EL +mO +mO +zq +Ds +cQ +NY +PL +ka +rf +zt +DO +nP +ka +WP +WP +WP +"} +(9,1,1) = {" +WP +ka +az +ka +ka +sZ +sZ +ms +sZ +FH +Qu +wF +NN +Wr +Td +ZK +Td +fL +ut +sZ +tV +ka +ka +ka +WP +"} +(10,1,1) = {" +WP +WP +WP +aF +cv +Zp +cD +ug +JP +pZ +ue +Dl +WW +Xs +Nr +RV +bY +Kb +Wj +cg +BP +FS +we +Gm +WP +"} +(11,1,1) = {" +WP +WP +WP +aF +gv +iP +mf +uR +EK +So +So +GK +Pc +GF +xd +xd +ul +lT +rr +BN +sg +ZJ +nD +xG +WP +"} +(12,1,1) = {" +WP +WP +WP +aF +dG +Wv +gU +xB +WS +JW +wH +Jq +PI +XF +RT +Rn +fI +lo +FY +GI +fG +TB +DN +Gm +WP +"} +(13,1,1) = {" +WP +ka +az +ka +ka +sZ +sZ +Da +sZ +ED +um +LU +RB +Xn +Td +ZK +Td +fL +KZ +sZ +tV +ka +ka +ka +WP +"} +(14,1,1) = {" +WP +az +WP +WP +ka +ka +jp +kU +oq +Pu +Pu +yH +Dc +JG +NY +FL +ka +rf +tT +EW +nP +ka +WP +WP +WP +"} +(15,1,1) = {" +WP +ka +az +az +az +ka +ka +ka +ka +rE +rE +ka +ka +ka +ka +eh +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(16,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +tV +Gn +WP +WP +WP +"} +(17,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(18,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Gn +nZ +mi +UY +WP +WP +"} +(19,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +lu +bC +sA +UY +WP +WP +"} +(20,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(21,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/mackerel_lc.dmm b/maps/offmap_vr/om_ships/mackerel_lc.dmm new file mode 100644 index 0000000000..b1d65389bb --- /dev/null +++ b/maps/offmap_vr/om_ships/mackerel_lc.dmm @@ -0,0 +1,1299 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"az" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"aF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"bw" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"bY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"cg" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"cv" = ( +/obj/machinery/computer/shuttle_control/explore/mackerel_lc, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"cD" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"dG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"fD" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"fL" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"gv" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"gT" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"gU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"iP" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"ju" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"ka" = ( +/turf/simulated/wall/shull, +/area/shuttle/mackerel_lc) +"kU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"lC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"lT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"mi" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"mw" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_lc_docking_port"; + name = "Port Airlock Control"; + pixel_x = 8; + pixel_y = 22 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -8; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"nD" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"oe" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"oq" = ( +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"pZ" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"rc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"rr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/south, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "mackerel_lc_docking_port;mackerel_lc_docking_star"; + dir = 1; + id_tag = "mackerel_lc_docking"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"rQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"sg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"sL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"sZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"tV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_lc) +"ue" = ( +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"ug" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"um" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"uR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"we" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"wF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"wN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_lc) +"xd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"xB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"yH" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"zq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"BN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"BP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Da" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"Dc" = ( +/obj/structure/handrail, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"Dl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"EC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"EK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"EL" = ( +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_lc) +"FH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"FL" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"FN" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"FS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Gm" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"GF" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"GK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Jq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"JG" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"JP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"Kb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"Ko" = ( +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"KZ" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"LU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"LW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Nr" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"NN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Pc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_lc) +"PL" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"Qu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"RB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"RT" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"RV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/fuel_port{ + pixel_y = 26 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"So" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Td" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"UY" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"Vs" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_lc, +/obj/effect/overmap/visitable/ship/landable/mackerel_lc, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_lc_docking_star"; + name = "Starboard Airlock Control"; + pixel_x = -8; + pixel_y = 22 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 7; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"Wj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"Wr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"Wv" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"Xn" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_lc) +"Xs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"Zb" = ( +/obj/structure/handrail, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc) +"Zp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) +"ZJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc) +"ZK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(3,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Zb +bI +mi +UY +WP +WP +"} +(4,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(5,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +tV +yH +WP +WP +WP +"} +(6,1,1) = {" +WP +WP +WP +ka +ka +ka +ka +ka +ka +ka +ka +ka +ka +pZ +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(7,1,1) = {" +WP +az +ka +ka +ju +oq +fD +aq +fD +GF +Nr +RT +wN +mw +ka +fL +JG +kU +dG +ka +WP +WP +WP +"} +(8,1,1) = {" +WP +ka +ka +Ko +Ko +Ko +EL +Ko +Ko +zq +EL +Ko +Ko +PL +Wv +Ko +EL +Ko +tV +ka +ka +ka +WP +"} +(9,1,1) = {" +WP +aF +bw +gT +lC +sZ +EC +FH +Qu +wF +NN +Wr +Td +ZK +rc +Ck +ut +sZ +RV +um +ue +ka +WP +"} +(10,1,1) = {" +WP +aF +cv +Zp +cD +ug +JP +Zp +Zp +Dl +WW +Xs +Xs +Xs +bY +Kb +Wj +cg +BP +FS +we +Gm +WP +"} +(11,1,1) = {" +WP +aF +gv +iP +mf +uR +EK +So +LW +GK +Pc +So +sL +xd +lo +lT +rr +BN +sg +ZJ +nD +ka +WP +"} +(12,1,1) = {" +WP +ka +ka +Ko +Ko +xB +EL +Ko +Ko +Jq +PI +Ko +Ko +PL +Wv +Ko +EL +Ko +tV +ka +ka +ka +WP +"} +(13,1,1) = {" +WP +WP +ka +ka +oe +Da +FN +RB +FN +LU +RB +Xn +wN +Vs +ka +fL +KZ +rQ +dG +ka +WP +WP +WP +"} +(14,1,1) = {" +WP +WP +WP +ka +ka +ka +ka +ka +ka +ka +ka +ka +ka +FL +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(15,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +tV +yH +WP +WP +WP +"} +(16,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(17,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Dc +gU +mi +UY +WP +WP +"} +(18,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(19,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm b/maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm new file mode 100644 index 0000000000..fa1ccb1128 --- /dev/null +++ b/maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm @@ -0,0 +1,1386 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"az" = ( +/obj/machinery/shipsensors/weak{ + desc = "Miniaturized gravity scanner with various other sensors, used to detect irregularities in surrounding space. Can only run in vacuum to protect delicate quantum bluespace elements. Appears to be slightly damaged, but it should still work."; + dir = 1; + name = "damaged sensors suite" + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"aF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/material/shard, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"bw" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"bY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"ca" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/girder, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"cg" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"cv" = ( +/obj/machinery/computer/shuttle_control/explore/mackerel_lc_wreck, +/obj/item/weapon/material/shard, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"cD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/weapon/bone/skull, +/obj/item/clothing/head/helmet/space/void/refurb/pilot, +/obj/item/weapon/material/shard/shrapnel, +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"dG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"fL" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"gT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"ju" = ( +/obj/machinery/light/small/flicker{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"ka" = ( +/turf/simulated/wall/shull, +/area/shuttle/mackerel_lc_wreck) +"kU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"lC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/item/weapon/material/shard, +/obj/machinery/light/flicker, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"lT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/railing/grey, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/material/shard, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"mi" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"mw" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -8; + pixel_y = 21 + }, +/obj/machinery/light, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_lc_wreck_docking_port"; + name = "Port Airlock Control"; + pixel_x = 8; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"nu" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"nD" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"oe" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/shuttle/mackerel_lc_wreck) +"oq" = ( +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"oG" = ( +/turf/template_noop, +/area/shuttle/mackerel_lc_wreck) +"pi" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"pT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille/broken, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"pZ" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"rc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"rr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "mackerel_lc_wreck_docking_port;mackerel_lc_wreck_docking_star"; + dir = 1; + id_tag = "mackerel_lc_wreck_docking"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"rQ" = ( +/obj/machinery/light/small/flicker{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"rX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"sg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/frame/apc, +/obj/item/trash/material/circuit, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"sL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/airlock_sensor{ + pixel_x = 24 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"sX" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"sZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"tV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_lc_wreck) +"ue" = ( +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"ug" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"um" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/flicker{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"uR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"we" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"wF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"wN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_lc_wreck) +"wQ" = ( +/obj/structure/grille, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"xd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"xB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"yH" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"zo" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"zq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"zr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"BB" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/template_noop) +"BN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"BP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Cf" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/railing/grey, +/obj/machinery/light/flicker{ + dir = 8 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Da" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"Dl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"Do" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"EC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"EK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"EL" = ( +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_lc_wreck) +"FH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"FL" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/hatch{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"FS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Gm" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"GF" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"GK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"He" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"HI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Ib" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"Jq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"JG" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"JP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"Kb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"Ko" = ( +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"KZ" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"Ly" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"LU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"LW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Mk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"Nr" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"NI" = ( +/obj/structure/girder, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"NN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Pc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_lc_wreck) +"PL" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/hatch{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"Qu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"RB" = ( +/obj/machinery/light/small/flicker{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"RT" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"RV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/fuel_port/empty{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"So" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/light/flicker{ + dir = 4 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Td" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"TC" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/shuttle/mackerel_lc_wreck) +"UY" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"Vs" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_lc_wreck, +/obj/effect/overmap/visitable/ship/landable/mackerel_lc_wreck, +/obj/machinery/airlock_sensor{ + pixel_x = 7; + pixel_y = 21 + }, +/obj/machinery/light/flicker, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_lc_wreck_docking_star"; + name = "Starboard Airlock Control"; + pixel_x = -8; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"Wj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"Wr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"Wv" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_lc_wreck) +"WN" = ( +/obj/structure/grille/broken, +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/shuttle/mackerel_lc_wreck) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) +"Xn" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"Zb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_lc_wreck) +"Zp" = ( +/obj/item/weapon/bone/ribs, +/obj/item/clothing/suit/space/void/refurb/pilot, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/techmaint/airless, +/area/shuttle/mackerel_lc_wreck) +"ZJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_lc_wreck) +"ZK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_lc_wreck) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +BB +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +BB +WP +WP +WP +WP +WP +WP +WP +WP +WP +BB +oG +oe +ka +ka +ka +WP +WP +"} +(3,1,1) = {" +WP +WP +BB +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +BB +WP +WP +oe +Zb +bI +mi +UY +WP +WP +"} +(4,1,1) = {" +WP +WP +WP +oe +nu +wQ +NI +WP +ka +wQ +wQ +ka +WP +WP +BB +WP +NI +oq +tV +ka +ka +WP +WP +"} +(5,1,1) = {" +WP +BB +WP +oe +BB +WP +oq +WP +oq +WP +WP +oq +WP +WP +WP +WP +WP +NI +tV +yH +WP +WP +WP +"} +(6,1,1) = {" +WP +WP +BB +oe +oe +Zb +NI +ka +ka +ka +ka +ka +ka +pZ +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(7,1,1) = {" +WP +az +NI +ka +ju +oq +oq +aq +pi +GF +Nr +RT +wN +mw +ka +fL +JG +kU +dG +ka +WP +WP +WP +"} +(8,1,1) = {" +WP +ka +ka +Ko +Ko +Ko +EL +Ko +Ko +zq +EL +Ko +Ko +PL +Wv +Ko +EL +Ko +tV +ka +ka +ka +WP +"} +(9,1,1) = {" +WP +aF +bw +gT +lC +sZ +EC +FH +Qu +wF +NN +Wr +Td +ZK +rc +Ck +ut +sZ +RV +um +ue +ka +WP +"} +(10,1,1) = {" +WP +pT +cv +Zp +cD +ug +JP +sX +sX +Dl +WW +zr +zr +zr +bY +Kb +Wj +cg +BP +FS +we +Gm +WP +"} +(11,1,1) = {" +WP +rX +He +Ly +mf +uR +EK +HI +LW +GK +Pc +So +sL +xd +lo +lT +rr +BN +sg +ZJ +nD +ka +WP +"} +(12,1,1) = {" +WP +ka +oq +NI +Ko +xB +EL +Ko +Ko +Jq +PI +Ko +Ko +Ib +Wv +Ko +EL +Ko +tV +ka +ka +ka +WP +"} +(13,1,1) = {" +WP +WP +oe +oe +oe +Da +Zb +RB +Cf +LU +Do +Xn +wN +Vs +ka +zo +KZ +rQ +dG +ka +WP +WP +WP +"} +(14,1,1) = {" +WP +BB +WP +oe +oG +oe +NI +ka +ka +ka +ka +ka +ka +FL +ka +ka +ka +ka +tV +ka +WP +BB +WP +"} +(15,1,1) = {" +WP +WP +WP +TC +WP +WP +oq +WP +oq +WP +WP +oq +WP +WP +WP +WP +WP +NI +Mk +oq +WP +WP +WP +"} +(16,1,1) = {" +WP +WP +WP +oG +TC +WN +ka +WP +ka +wQ +wQ +ka +WP +BB +WP +WP +NI +Zb +ca +NI +oq +WP +BB +"} +(17,1,1) = {" +WP +BB +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +BB +oe +oq +oq +oq +oe +WP +WP +"} +(18,1,1) = {" +WP +WP +WP +WP +BB +WP +WP +BB +WP +WP +WP +WP +WP +WP +WP +WP +oG +oe +oe +oe +oe +BB +WP +"} +(19,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +BB +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/mackerel_sh.dmm b/maps/offmap_vr/om_ships/mackerel_sh.dmm new file mode 100644 index 0000000000..de0c58a95c --- /dev/null +++ b/maps/offmap_vr/om_ships/mackerel_sh.dmm @@ -0,0 +1,1359 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"az" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"aF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"bw" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"bY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"cg" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"cv" = ( +/obj/machinery/computer/shuttle_control/explore/mackerel_sh, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"cD" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"dG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"fD" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"fL" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 8000.25 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"gv" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"gT" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"gU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"iP" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"ju" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"ka" = ( +/turf/simulated/wall/shull, +/area/shuttle/mackerel_sh) +"kU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"lo" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"lC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"lT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light, +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"mi" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"mw" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + pixel_x = -8; + pixel_y = 21 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_sh_docking_port"; + name = "Port Airlock Control"; + pixel_x = 8; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"nD" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"oe" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"oq" = ( +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"pZ" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + pixel_x = -8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"rc" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"rr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/south, +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "mackerel_sh_docking_port;mackerel_sh_docking_star"; + dir = 1; + id_tag = "mackerel_sh_docking"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"rQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"sg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"sL" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/airlock_sensor{ + pixel_x = 26 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"sZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"tV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_sh) +"ue" = ( +/obj/structure/closet/crate/engineering, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"ug" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"um" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"uR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"we" = ( +/obj/structure/shuttle/engine/heater, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"wF" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"wN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shull, +/area/shuttle/mackerel_sh) +"xd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"xB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"yH" = ( +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"zq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"BN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"BP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Da" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"Dc" = ( +/obj/structure/handrail, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"Dl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"EC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"EK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"EL" = ( +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_sh) +"FH" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"FL" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"FN" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"FS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Gm" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"GF" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"GK" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"HL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Jq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"JG" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"JP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"Kb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"Ko" = ( +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"KZ" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"LU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"LW" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Nr" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"NN" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Pc" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/symbol/maint, +/turf/simulated/wall/rshull{ + can_open = 1 + }, +/area/shuttle/mackerel_sh) +"PL" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/glass, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"Qu" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"RB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"RT" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"RV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/fuel_port{ + pixel_y = 26 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"So" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Td" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"UY" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"Vs" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/overmap/visitable/ship/landable/mackerel_sh, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 7; + pixel_y = 21 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_sh, +/obj/effect/overmap/visitable/ship/landable/mackerel_sh, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "mackerel_sh_docking_star"; + name = "Starboard Airlock Control"; + pixel_x = -8; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"Wj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"Wr" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"Wv" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/rshull, +/area/shuttle/mackerel_sh) +"WP" = ( +/turf/template_noop, +/area/template_noop) +"WW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"Xn" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/mackerel_sh) +"Xs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"Zb" = ( +/obj/structure/handrail, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/mackerel_sh) +"Zp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) +"ZJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/mackerel_sh) +"ZK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/mackerel_sh) + +(1,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} +(2,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(3,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Zb +bI +mi +UY +WP +WP +"} +(4,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(5,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +tV +yH +WP +WP +WP +"} +(6,1,1) = {" +WP +WP +WP +ka +ka +ka +ka +ka +ka +ka +ka +ka +ka +pZ +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(7,1,1) = {" +WP +az +ka +ka +ju +oq +fD +aq +fD +GF +Nr +RT +wN +mw +ka +fL +JG +kU +dG +ka +WP +WP +WP +"} +(8,1,1) = {" +WP +ka +ka +Ko +Ko +Ko +EL +Ko +Ko +zq +EL +Ko +Ko +PL +Wv +Ko +EL +Ko +tV +ka +ka +ka +WP +"} +(9,1,1) = {" +WP +aF +bw +gT +lC +sZ +EC +FH +Qu +wF +NN +Wr +Td +ZK +rc +Ck +ut +sZ +RV +um +ue +ka +WP +"} +(10,1,1) = {" +WP +aF +cv +Zp +cD +ug +JP +Zp +Zp +Dl +WW +Xs +Xs +Xs +bY +Kb +Wj +cg +BP +FS +we +Gm +WP +"} +(11,1,1) = {" +WP +aF +gv +iP +mf +uR +EK +HL +LW +GK +Pc +So +sL +xd +lo +lT +rr +BN +sg +ZJ +nD +ka +WP +"} +(12,1,1) = {" +WP +ka +ka +Ko +Ko +xB +EL +Ko +Ko +Jq +PI +Ko +Ko +PL +Wv +Ko +EL +Ko +tV +ka +ka +ka +WP +"} +(13,1,1) = {" +WP +WP +ka +ka +oe +Da +FN +RB +FN +LU +RB +Xn +wN +Vs +ka +fL +KZ +rQ +dG +ka +WP +WP +WP +"} +(14,1,1) = {" +WP +WP +WP +ka +ka +ka +ka +ka +ka +ka +ka +ka +ka +FL +ka +ka +ka +ka +tV +ka +WP +WP +WP +"} +(15,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +tV +yH +WP +WP +WP +"} +(16,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +tV +ka +ka +WP +WP +"} +(17,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +Dc +gU +mi +UY +WP +WP +"} +(18,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +ka +ka +ka +ka +ka +WP +WP +"} +(19,1,1) = {" +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +"} diff --git a/maps/offmap_vr/om_ships/mackerels.dm b/maps/offmap_vr/om_ships/mackerels.dm new file mode 100644 index 0000000000..7a1aeb8a83 --- /dev/null +++ b/maps/offmap_vr/om_ships/mackerels.dm @@ -0,0 +1,246 @@ +// Compile in the map for CI testing if we're testing compileability of all the maps +#if MAP_TEST +#include "mackerel_sh.dmm" +#include "mackerel_lc.dmm" +#include "mackerel_lc_wreck.dmm" +#include "mackerel_hc.dmm" +#include "mackerel_hc_skel.dmm" +#endif + +// Map template for spawning the shuttle +/datum/map_template/om_ships/mackerel_stationhopper + name = "OM Ship - Mackerel Stationhopper (new Z)" + desc = "A small personnel transport shuttle." + mappath = 'mackerel_sh.dmm' + annihilate = TRUE + +/datum/map_template/om_ships/mackerel_lightcargo + name = "OM Ship - Mackerel Light Cargo (new Z)" + desc = "A small light cargo transport shuttle." + mappath = 'mackerel_lc.dmm' + annihilate = TRUE + +/datum/map_template/om_ships/mackerel_heavycargo + name = "OM Ship - Mackerel Heavy Cargo (new Z)" + desc = "A small secure cargo transport shuttle." + mappath = 'mackerel_hc.dmm' + annihilate = TRUE + +/datum/map_template/om_ships/mackerel_heavycargo_skel + name = "OM Ship - Mackerel Heavy Cargo Spartanized (new Z)" + desc = "A small heavy cargo transport shuttle." + mappath = 'mackerel_hc_skel.dmm' + annihilate = TRUE + +/datum/map_template/om_ships/mackerel_lightcargo_wreck + name = "OM Ship - Mackerel Light Cargo Wreck (new Z)" + desc = "A small light cargo transport shuttle, struck by... something. Ouch." + mappath = 'mackerel_lc_wreck.dmm' + annihilate = TRUE + +// The shuttle's area(s) +/area/shuttle/mackerel_sh + name = "\improper Mackerel Stationhopper" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/mackerel_lc + name = "\improper Mackerel Light Cargo" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/mackerel_hc + name = "\improper Mackerel Heavy Cargo" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/mackerel_hc_skel + name = "\improper Mackerel Heavy Cargo Spartan" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/mackerel_hc_skel_cockpit + name = "\improper Mackerel Heavy Cargo Cockpit" + icon_state = "purple" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/mackerel_hc_skel_eng + name = "\improper Mackerel Heavy Cargo Engineering" + icon_state = "yellow" + requires_power = 1 + has_gravity = 0 + +/area/shuttle/mackerel_lc_wreck + name = "\improper Wrecked Mackerel Light Cargo" + icon_state = "green" + requires_power = 1 + has_gravity = 0 + +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/mackerel_sh + name = "short jump console" + shuttle_tag = "Mackerel Stationhopper" + req_one_access = list() + +/obj/machinery/computer/shuttle_control/explore/mackerel_lc + name = "short jump console" + shuttle_tag = "Mackerel Light Cargo" + req_one_access = list() + +/obj/machinery/computer/shuttle_control/explore/mackerel_lc_wreck + name = "short jump console" + shuttle_tag = "Mackerel Light Cargo II" + req_one_access = list() + +/obj/machinery/computer/shuttle_control/explore/mackerel_hc + name = "short jump console" + shuttle_tag = "Mackerel Heavy Cargo" + req_one_access = list() + +/obj/machinery/computer/shuttle_control/explore/mackerel_hc_skel + name = "short jump console" + shuttle_tag = "Mackerel Heavy Cargo Spartan" + req_one_access = list() + +// The 'shuttle' +/datum/shuttle/autodock/overmap/mackerel_sh + name = "Mackerel Stationhopper" + current_location = "omship_spawn_mackerel_sh" + docking_controller_tag = "mackerel_sh_docking" + shuttle_area = list(/area/shuttle/mackerel_sh) + defer_initialisation = TRUE + fuel_consumption = 1 + ceiling_type = /turf/simulated/floor/reinforced/airless + +/datum/shuttle/autodock/overmap/mackerel_lc + name = "Mackerel Light Cargo" + current_location = "omship_spawn_mackerel_lc" + docking_controller_tag = "mackerel_lc_docking" + shuttle_area = list(/area/shuttle/mackerel_lc) + defer_initialisation = TRUE + fuel_consumption = 1 + ceiling_type = /turf/simulated/floor/reinforced/airless + +/datum/shuttle/autodock/overmap/mackerel_hc + name = "Mackerel Heavy Cargo" + current_location = "omship_spawn_mackerel_hc" + docking_controller_tag = "mackerel_hc_docking" + shuttle_area = list(/area/shuttle/mackerel_hc) + defer_initialisation = TRUE + fuel_consumption = 1.25 //slightly higher due to the added framework/plating + ceiling_type = /turf/simulated/floor/reinforced/airless + +/datum/shuttle/autodock/overmap/mackerel_hc_skel + name = "Mackerel Heavy Cargo Spartan" + current_location = "omship_spawn_mackerel_hc_skel" + docking_controller_tag = "mackerel_hc_skel_docking" + shuttle_area = list(/area/shuttle/mackerel_hc_skel,/area/shuttle/mackerel_hc_skel_cockpit,/area/shuttle/mackerel_hc_skel_eng) + defer_initialisation = TRUE + fuel_consumption = 1.20 //slightly lower due to the stripped-down internals + ceiling_type = /turf/simulated/floor/reinforced/airless + +/datum/shuttle/autodock/overmap/mackerel_lc_wreck + name = "Mackerel Light Cargo II" + current_location = "omship_spawn_mackerel_lc_wreck" + docking_controller_tag = "mackerel_lc_wreck_docking" + shuttle_area = list(/area/shuttle/mackerel_lc_wreck) + defer_initialisation = TRUE + fuel_consumption = 1 + ceiling_type = /turf/simulated/floor/reinforced/airless + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_sh + name = "ITV Mackerel I" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_mackerel_sh" + shuttle_type = /datum/shuttle/autodock/overmap/mackerel_sh + +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_lc + name = "ITV Mackerel II" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_mackerel_lc" + shuttle_type = /datum/shuttle/autodock/overmap/mackerel_lc + +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_hc + name = "ITV Mackerel III" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_mackerel_hc" + shuttle_type = /datum/shuttle/autodock/overmap/mackerel_hc + +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_hc_skel + name = "ITV Mackerel IV" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_mackerel_hc_skel" + shuttle_type = /datum/shuttle/autodock/overmap/mackerel_hc_skel + +/obj/effect/shuttle_landmark/shuttle_initializer/mackerel_lc_wreck + name = "ITV Mackerel II KIA" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_mackerel_lc_wreck" + shuttle_type = /datum/shuttle/autodock/overmap/mackerel_lc_wreck + +// The 'ship' +/obj/effect/overmap/visitable/ship/landable/mackerel_sh + scanner_name = "Mackerel-class Transport" + scanner_desc = @{"[i]Registration[/i]: ITV Phish Phlake +[i]Class[/i]: Small Shuttle +[i]Transponder[/i]: Transmitting (CIV), non-hostile +[b]Notice[/b]: Small private vessel"} + color = "#3366FF" + vessel_mass = 1000 + vessel_size = SHIP_SIZE_TINY + shuttle = "Mackerel Stationhopper" + +/obj/effect/overmap/visitable/ship/landable/mackerel_lc + scanner_name = "Mackerel-class Transport" + scanner_desc = @{"[i]Registration[/i]: ITV Phishy Business +[i]Class[/i]: Small Shuttle +[i]Transponder[/i]: Transmitting (CIV), non-hostile +[b]Notice[/b]: Small private vessel"} + color = "#0099FF" + vessel_mass = 1000 + vessel_size = SHIP_SIZE_TINY + shuttle = "Mackerel Light Cargo" + +/obj/effect/overmap/visitable/ship/landable/mackerel_hc + scanner_name = "Mackerel-class Transport" + scanner_desc = @{"[i]Registration[/i]: ITV Phish Pharma +[i]Class[/i]: Small Shuttle +[i]Transponder[/i]: Transmitting (CIV), non-hostile +[b]Notice[/b]: Small private vessel"} + color = "#33CCCC" + vessel_mass = 1500 + vessel_size = SHIP_SIZE_TINY + shuttle = "Mackerel Heavy Cargo" + +/obj/effect/overmap/visitable/ship/landable/mackerel_hc_skel + scanner_name = "Mackerel-class Transport (Spartanized)" + scanner_desc = @{"[i]Registration[/i]: ITV Phish Pond +[i]Class[/i]: Small Shuttle +[i]Transponder[/i]: Transmitting (CIV), non-hostile +[b]Notice[/b]: Small private vessel"} + color = "#33CCCC" + vessel_mass = 1500 + vessel_size = SHIP_SIZE_TINY + shuttle = "Mackerel Heavy Cargo Spartan" + +/obj/effect/overmap/visitable/ship/landable/mackerel_lc_wreck + scanner_name = "Wrecked Mackerel-class Transport" + scanner_desc = @{"[i]Registration[/i]: ITV Phish Phood +[i]Class[/i]: Small Shuttle Wreck +[i]Transponder[/i]: Not Transmitting +[b]Notice[/b]: Critical Damage Sustained"} + color = "#0099FF" + vessel_mass = 1000 + vessel_size = SHIP_SIZE_TINY + shuttle = "Mackerel Light Cargo II" diff --git a/maps/submaps/pois_vr/debris_field/_templates.dm b/maps/submaps/pois_vr/debris_field/_templates.dm index 33fcab8398..df7319d02b 100644 --- a/maps/submaps/pois_vr/debris_field/_templates.dm +++ b/maps/submaps/pois_vr/debris_field/_templates.dm @@ -104,3 +104,17 @@ cost = 35 allow_duplicates = FALSE discard_prob = 50 + +/datum/map_template/debrisfield/gutted_mackerel + name = "Gutted Mackerel LC" + mappath = 'maps/offmap_vr/om_ships/mackerel_lc_wreck.dmm' + cost = 35 + allow_duplicates = FALSE + discard_prob = 25 + +/datum/map_template/debrisfield/ruined_gecko + name = "Ruined Gecko CR" + mappath = 'maps/offmap_vr/om_ships/gecko_cr_wreck.dmm' + cost = 45 + allow_duplicates = FALSE + discard_prob = 50 \ No newline at end of file diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm index 8eeadd4bc2..19b6fca39c 100644 --- a/maps/tether/submaps/_tether_submaps.dm +++ b/maps/tether/submaps/_tether_submaps.dm @@ -514,9 +514,12 @@ #include "../../offmap_vr/om_ships/screebarge.dm" #include "../../offmap_vr/om_ships/aro.dm" #include "../../offmap_vr/om_ships/aro2.dm" +#include "../../offmap_vr/om_ships/bearcat.dm" #include "../../offmap_vr/om_ships/cruiser.dm" #include "../../offmap_vr/om_ships/vespa.dm" #include "../../offmap_vr/om_ships/generic_shuttle.dm" +#include "../../offmap_vr/om_ships/geckos.dm" +#include "../../offmap_vr/om_ships/mackerels.dm" #include "../../offmap_vr/om_ships/mercenarybase.dm" #include "../../offmap_vr/om_ships/mercship.dm" #include "../../offmap_vr/om_ships/curashuttle.dm" diff --git a/vorestation.dme b/vorestation.dme index b9510f69ea..b8ccce2da7 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1363,6 +1363,7 @@ #include "code\game\objects\random\guns_and_ammo.dm" #include "code\game\objects\random\maintenance.dm" #include "code\game\objects\random\mapping.dm" +#include "code\game\objects\random\mapping_vr.dm" #include "code\game\objects\random\mechs.dm" #include "code\game\objects\random\misc.dm" #include "code\game\objects\random\misc_vr.dm"